#include <q3frame_plugin.h>
Inheritance diagram for Q3FramePlugin:


Definition at line 31 of file q3frame_plugin.h.
Public Member Functions | |
| Q3FramePlugin (QObject *parent=0) | |
| virtual | ~Q3FramePlugin () |
| virtual QString | name () const |
| virtual QString | group () const |
| virtual QString | toolTip () const |
| virtual QString | whatsThis () const |
| virtual QString | includeFile () const |
| virtual QIcon | icon () const |
| virtual bool | isContainer () const |
| virtual QWidget * | createWidget (QWidget *parent) |
| virtual bool | isInitialized () const |
| virtual void | initialize (QDesignerFormEditorInterface *core) |
| virtual QString | domXml () const |
Private Attributes | |
| bool | m_initialized |
| Q3FramePlugin::Q3FramePlugin | ( | QObject * | parent = 0 |
) |
Definition at line 29 of file q3frame_plugin.cpp.
00030 : QObject(parent), 00031 m_initialized(false) 00032 { 00033 }
| Q3FramePlugin::~Q3FramePlugin | ( | ) | [virtual] |
| QString Q3FramePlugin::name | ( | ) | const [virtual] |
Implements QDesignerCustomWidgetInterface.
Definition at line 40 of file q3frame_plugin.cpp.
00041 { 00042 return QLatin1String("Q3Frame"); 00043 }
| QString Q3FramePlugin::group | ( | ) | const [virtual] |
Implements QDesignerCustomWidgetInterface.
Definition at line 45 of file q3frame_plugin.cpp.
00046 { 00047 return QLatin1String("Qt 3 Support"); 00048 }
| QString Q3FramePlugin::toolTip | ( | ) | const [virtual] |
Implements QDesignerCustomWidgetInterface.
Definition at line 50 of file q3frame_plugin.cpp.
00051 { 00052 return QString(); 00053 }
| QString Q3FramePlugin::whatsThis | ( | ) | const [virtual] |
Implements QDesignerCustomWidgetInterface.
Definition at line 55 of file q3frame_plugin.cpp.
00056 { 00057 return QString(); 00058 }
| QString Q3FramePlugin::includeFile | ( | ) | const [virtual] |
Implements QDesignerCustomWidgetInterface.
Definition at line 60 of file q3frame_plugin.cpp.
00061 { 00062 return QLatin1String("Qt3Support/Q3Frame"); 00063 }
| QIcon Q3FramePlugin::icon | ( | ) | const [virtual] |
Implements QDesignerCustomWidgetInterface.
Definition at line 65 of file q3frame_plugin.cpp.
00066 { 00067 return QIcon(); 00068 }
| bool Q3FramePlugin::isContainer | ( | ) | const [virtual] |
Implements QDesignerCustomWidgetInterface.
Definition at line 75 of file q3frame_plugin.cpp.
References QObject::parent().
Here is the call graph for this function:

| bool Q3FramePlugin::isInitialized | ( | ) | const [virtual] |
Reimplemented from QDesignerCustomWidgetInterface.
Definition at line 80 of file q3frame_plugin.cpp.
References m_initialized.
00081 { 00082 return m_initialized; 00083 }
| void Q3FramePlugin::initialize | ( | QDesignerFormEditorInterface * | core | ) | [virtual] |
Reimplemented from QDesignerCustomWidgetInterface.
Definition at line 85 of file q3frame_plugin.cpp.
References m_initialized.
00086 { 00087 Q_UNUSED(core); 00088 m_initialized = true; 00089 }
| virtual QString Q3FramePlugin::domXml | ( | ) | const [inline, virtual] |
Reimplemented from QDesignerCustomWidgetInterface.
Definition at line 53 of file q3frame_plugin.h.
00054 { return QLatin1String("\ 00055 <widget class=\"Q3Frame\" name=\"frame\">\ 00056 <property name=\"geometry\">\ 00057 <rect>\ 00058 <x>0</x>\ 00059 <y>0</y>\ 00060 <width>100</width>\ 00061 <height>80</height>\ 00062 </rect>\ 00063 </property>\ 00064 </widget>\ 00065 "); }
bool Q3FramePlugin::m_initialized [private] |
1.5.1