#include <q3listbox_extrainfo.h>
Inheritance diagram for Q3ListBoxExtraInfo:


Definition at line 37 of file q3listbox_extrainfo.h.
Public Member Functions | |
| Q3ListBoxExtraInfo (Q3ListBox *widget, QDesignerFormEditorInterface *core, QObject *parent) | |
| virtual QWidget * | widget () const |
| virtual QDesignerFormEditorInterface * | core () const |
| virtual bool | saveUiExtraInfo (DomUi *ui) |
| virtual bool | loadUiExtraInfo (DomUi *ui) |
| virtual bool | saveWidgetExtraInfo (DomWidget *ui_widget) |
| virtual bool | loadWidgetExtraInfo (DomWidget *ui_widget) |
Private Attributes | |
| QPointer< Q3ListBox > | m_widget |
| QPointer< QDesignerFormEditorInterface > | m_core |
| Q3ListBoxExtraInfo::Q3ListBoxExtraInfo | ( | Q3ListBox * | widget, | |
| QDesignerFormEditorInterface * | core, | |||
| QObject * | parent | |||
| ) |
| QWidget * Q3ListBoxExtraInfo::widget | ( | ) | const [virtual] |
Returns the widget described by this extension.
Implements QDesignerExtraInfoExtension.
Definition at line 48 of file q3listbox_extrainfo.cpp.
References m_widget.
Referenced by loadWidgetExtraInfo(), and saveWidgetExtraInfo().
00049 { return m_widget; }
| QDesignerFormEditorInterface * Q3ListBoxExtraInfo::core | ( | ) | const [virtual] |
### Description required
Implements QDesignerExtraInfoExtension.
Definition at line 51 of file q3listbox_extrainfo.cpp.
References m_core.
00052 { return m_core; }
| bool Q3ListBoxExtraInfo::saveUiExtraInfo | ( | DomUi * | ui | ) | [virtual] |
Saves the information about the user interface specified by ui, and returns true if successful; otherwise returns false.
Implements QDesignerExtraInfoExtension.
Definition at line 54 of file q3listbox_extrainfo.cpp.
| bool Q3ListBoxExtraInfo::loadUiExtraInfo | ( | DomUi * | ui | ) | [virtual] |
Loads extra information about the user interface specified by ui, and returns true if successful; otherwise returns false.
Implements QDesignerExtraInfoExtension.
Definition at line 57 of file q3listbox_extrainfo.cpp.
| bool Q3ListBoxExtraInfo::saveWidgetExtraInfo | ( | DomWidget * | ui_widget | ) | [virtual] |
Saves the information about the specified widget, and returns true if successful; otherwise returns false.
Implements QDesignerExtraInfoExtension.
Definition at line 61 of file q3listbox_extrainfo.cpp.
References widget().
00062 { 00063 Q_UNUSED(ui_widget); 00064 00065 Q3ListBox *listBox = qobject_cast<Q3ListBox*>(widget()); 00066 Q_ASSERT(listBox != 0); 00067 Q_UNUSED(listBox); 00068 return true; 00069 }
Here is the call graph for this function:

| bool Q3ListBoxExtraInfo::loadWidgetExtraInfo | ( | DomWidget * | ui_widget | ) | [virtual] |
Loads extra information about the specified widget, and returns true if successful; otherwise returns false.
Implements QDesignerExtraInfoExtension.
Definition at line 71 of file q3listbox_extrainfo.cpp.
References widget().
00072 { 00073 Q_UNUSED(ui_widget); 00074 00075 Q3ListBox *listBox = qobject_cast<Q3ListBox*>(widget()); 00076 Q_ASSERT(listBox != 0); 00077 Q_UNUSED(listBox); 00078 return true; 00079 }
Here is the call graph for this function:

QPointer<Q3ListBox> Q3ListBoxExtraInfo::m_widget [private] |
1.5.1