KFormDesigner::WidgetInfo Class Reference
#include <widgetfactory.h>
Inheritance diagram for KFormDesigner::WidgetInfo:

Detailed Description
This class holds properties of widget classes provided by a factory.
Definition at line 65 of file widgetfactory.h.
Public Types | |
| typedef QPtrList< WidgetInfo > | List |
| typedef QAsciiDict< WidgetInfo > | Dict |
Public Member Functions | |
| WidgetInfo (WidgetFactory *f) | |
| WidgetInfo (WidgetFactory *f, const char *parentFactoryName, const char *inheritedClassName=0) | |
| virtual | ~WidgetInfo () |
| QString | pixmap () const |
| QCString | className () const |
| QString | namePrefix () const |
| QString | name () const |
| QString | description () const |
| QString | includeFileName () const |
| QValueList< QCString > | alternateClassNames () const |
| QString | savingName () const |
| WidgetFactory * | factory () const |
| void | setPixmap (const QString &p) |
| void | setClassName (const QCString &s) |
| void | setName (const QString &n) |
| void | setNamePrefix (const QString &n) |
| void | setDescription (const QString &desc) |
| void | setIncludeFileName (const QString &name) |
| void | addAlternateClassName (const QCString &alternateName, bool override=false) |
| bool | isOverriddenClassName (const QCString &alternateName) const |
| void | setSavingName (const QString &saveName) |
| void | setAutoSyncForProperty (const char *propertyName, tristate flag) |
| tristate | autoSyncForProperty (const char *propertyName) const |
| QCString | parentFactoryName () const |
| WidgetInfo * | inheritedClass () const |
| void | setCustomTypeForProperty (const char *propertyName, int type) |
| int | customTypeForProperty (const char *propertyName) const |
Protected Attributes | |
| QCString | m_parentFactoryName |
| QCString | m_inheritedClassName |
| Used for inheriting widgets between factories. | |
| WidgetInfo * | m_inheritedClass |
Friends | |
| class | WidgetLibrary |
Member Typedef Documentation
|
|
Definition at line 69 of file widgetfactory.h. |
|
|
Definition at line 68 of file widgetfactory.h. |
Constructor & Destructor Documentation
|
|
Definition at line 58 of file widgetfactory.cpp. |
|
||||||||||||||||
|
Definition at line 67 of file widgetfactory.cpp. |
|
|
Definition at line 80 of file widgetfactory.cpp. |
Member Function Documentation
|
||||||||||||
|
Sets alternate names for this class. If this name is found when loading a .ui file, the className() will be used instead. It allows to support both KDE and Qt versions of widget, without duplicating code. As a rule, className() should always return a class name which is inherited from alternate class. For example KListView class has alternate QListView class. override parameter overrides class name of a widget, even if it was implemented in other factory. By default it's set to false, what means that no other class is overridden by this widget class if there is already a class implementing it (no matter in which factory). By forced overriding existing class with other - custom, user will be able to see more or less properties and experience different behaviour. For example, in Kexi application, KLineEdit class contains additional "datasource" property for binding to database sources. Definition at line 87 of file widgetfactory.cpp. Referenced by ContainerFactory::ContainerFactory(), KexiDBFactory::KexiDBFactory(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), and StdWidgetFactory::StdWidgetFactory(). |
|
|
Definition at line 92 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::loadFactoryWidgets(). |
|
|
Definition at line 122 of file widgetfactory.cpp. References cancelled. |
|
|
|
Definition at line 140 of file widgetfactory.cpp. |
|
|
Definition at line 90 of file widgetfactory.h. Referenced by KFormDesigner::LibActionWidget::LibActionWidget(), and KFormDesigner::WidgetLibrary::loadFactoryWidgets(). |
|
|
|
Definition at line 91 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::includeFileName(), and KFormDesigner::WidgetLibrary::loadFactoryWidgets(). |
|
|
|
Definition at line 101 of file widgetfactory.cpp. Referenced by KFormDesigner::WidgetLibrary::loadFactoryWidgets(). |
|
|
Definition at line 88 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::displayName(), KFormDesigner::InsertWidgetCommand::execute(), KFormDesigner::LibActionWidget::LibActionWidget(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), KFormDesigner::WidgetLibrary::showOrientationSelectionPopup(), and KFormDesigner::WidgetLibrary::textForWidgetName(). |
|
|
Definition at line 85 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::loadFactoryWidgets(), KFormDesigner::WidgetLibrary::namePrefix(), and KFormDesigner::WidgetLibrary::textForWidgetName(). |
|
|
Definition at line 149 of file widgetfactory.h. Referenced by KFormDesigner::WidgetFactory::editor(), KFormDesigner::WidgetFactory::setEditor(), and KFormDesigner::WidgetFactory::setWidget(). |
|
|
Definition at line 78 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::iconName(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), and KFormDesigner::WidgetLibrary::showOrientationSelectionPopup(). |
|
|
Definition at line 93 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::savingName(). |
|
||||||||||||
|
Sets autoSync flag for property propertyName. This allows to override autoSync flag for certain widget's property, because e.g. KoProperty::Editor can have autoSync flag set to false or true, but not all properties have to comply with that. flag equal to cancelled value means there is no overriding (the default). Definition at line 106 of file widgetfactory.cpp. Referenced by ContainerFactory::ContainerFactory(), KexiDataAwareWidgetInfo::init(), and KexiDBFactory::KexiDBFactory(). |
|
|
Definition at line 97 of file widgetfactory.h. Referenced by ContainerFactory::ContainerFactory(), KexiDBFactory::KexiDBFactory(), KexiReportFactory::KexiReportFactory(), and StdWidgetFactory::StdWidgetFactory(). |
|
||||||||||||
|
Sets custom type type for property propertyName. This allows to override default type, especially when custom property and custom property editor item has to be used. Definition at line 130 of file widgetfactory.cpp. |
|
|
Definition at line 100 of file widgetfactory.h. Referenced by ContainerFactory::ContainerFactory(), KexiDBFactory::KexiDBFactory(), KexiReportFactory::KexiReportFactory(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), and StdWidgetFactory::StdWidgetFactory(). |
|
|
Sets the C++ include file corresponding to this class, that uic will need to add when creating the file. You don't have to set this for Qt std widgets. Definition at line 104 of file widgetfactory.h. Referenced by ContainerFactory::ContainerFactory(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), and StdWidgetFactory::StdWidgetFactory(). |
|
|
Definition at line 98 of file widgetfactory.h. Referenced by ContainerFactory::ContainerFactory(), KexiDBFactory::KexiDBFactory(), KexiReportFactory::KexiReportFactory(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), and StdWidgetFactory::StdWidgetFactory(). |
|
|
Definition at line 99 of file widgetfactory.h. Referenced by ContainerFactory::ContainerFactory(), KexiDBFactory::KexiDBFactory(), KexiReportFactory::KexiReportFactory(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), and StdWidgetFactory::StdWidgetFactory(). |
|
|
Definition at line 96 of file widgetfactory.h. Referenced by ContainerFactory::ContainerFactory(), KexiDBFactory::KexiDBFactory(), KexiReportFactory::KexiReportFactory(), KFormDesigner::WidgetLibrary::loadFactoryWidgets(), and StdWidgetFactory::StdWidgetFactory(). |
|
|
Sets the name that will be written in the .ui file when saving. This name must be one of alternate names (or loading will be impossible). On form data saving to XML .ui format, saveName is used instead, so .ui format is not broken and still usable with other software as Qt Designer. Custom properties are saved as well with 'stdset' attribute set to 0. Definition at line 136 of file widgetfactory.h. Referenced by ContainerFactory::ContainerFactory(), and StdWidgetFactory::StdWidgetFactory(). |
Friends And Related Function Documentation
|
|
Definition at line 181 of file widgetfactory.h. |
Member Data Documentation
|
|
Definition at line 165 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::loadFactoryWidgets(). |
|
|
Used for inheriting widgets between factories.
Definition at line 164 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::loadFactoryWidgets(). |
|
|
Definition at line 164 of file widgetfactory.h. Referenced by KFormDesigner::WidgetLibrary::loadFactoryWidgets(), KFormDesigner::WidgetLibrary::propertyDescForName(), and KFormDesigner::WidgetLibrary::setPropertyOptions(). |
The documentation for this class was generated from the following files:
