-rw-r--r-- | libopie2/opiepim/ui/todayconfigwidget.cpp | 9 | ||||
-rw-r--r-- | libopie2/opiepim/ui/todayconfigwidget.h | 6 | ||||
-rw-r--r-- | libopie2/opiepim/ui/todayplugininterface.h | 11 | ||||
-rw-r--r-- | libopie2/opiepim/ui/ui.pro | 5 |
4 files changed, 25 insertions, 6 deletions
diff --git a/libopie2/opiepim/ui/todayconfigwidget.cpp b/libopie2/opiepim/ui/todayconfigwidget.cpp new file mode 100644 index 0000000..cc98556 --- a/dev/null +++ b/libopie2/opiepim/ui/todayconfigwidget.cpp @@ -0,0 +1,9 @@ +#include "todayconfigwidget.h" + + +TodayConfigWidget::TodayConfigWidget( QWidget* parent, const char* name, WFlags fl ) + : QWidget( parent, name, fl ) +{} + +TodayConfigWidget::~TodayConfigWidget() +{} diff --git a/libopie2/opiepim/ui/todayconfigwidget.h b/libopie2/opiepim/ui/todayconfigwidget.h index 134fbdf..5048998 100644 --- a/libopie2/opiepim/ui/todayconfigwidget.h +++ b/libopie2/opiepim/ui/todayconfigwidget.h @@ -15,9 +15,9 @@ * @author Maximilian Reiß * @short base class of all today config widgets */ class TodayConfigWidget : public QWidget { - + Q_OBJECT public: /** @@ -26,10 +26,10 @@ public: * * @param parent The parent of the widget * @param name The name of the object */ - TodayConfigWidget( QWidget *parent, const char *name ) : QWidget( parent, name ) {} ; - virtual ~TodayConfigWidget() {}; + TodayConfigWidget( QWidget *parent, const char *name = 0, WFlags fl = 0 ); + virtual ~TodayConfigWidget(); /** * Plugins need to reimplement this in the config widget * Used when the config dialog is closed to write config stuff diff --git a/libopie2/opiepim/ui/todayplugininterface.h b/libopie2/opiepim/ui/todayplugininterface.h index 5dfeaa8..2b7f1e5 100644 --- a/libopie2/opiepim/ui/todayplugininterface.h +++ b/libopie2/opiepim/ui/todayplugininterface.h @@ -79,8 +79,14 @@ public: /** * widget for the today view * It _needs_ a parent here. * Plugin authors need to take parent as parent! + * + * Note that you always need to create a new QWidget + * on this call and the ownership is transfered to the + * caller. + * + * @param The parent of your to be created widget */ virtual QWidget* widget( QWidget *parent ) = 0; /** @@ -91,10 +97,13 @@ public: /** * Config plugin widget - optional * If the plugin has a config widget, it _needs_ a parent here. * may return 0 if no config widget is needed + * + * Note: Always create a new Widget on this call and ownership + * is transfered */ - virtual TodayConfigWidget* configWidget( QWidget * ) = 0; + virtual TodayConfigWidget* configWidget( QWidget *parent ) = 0; /** * The application that should be assigned to the button (pixmap) * Today will show the plugin icon. On click it tries to execute the diff --git a/libopie2/opiepim/ui/ui.pro b/libopie2/opiepim/ui/ui.pro index 6aa01a7..53c7ae2 100644 --- a/libopie2/opiepim/ui/ui.pro +++ b/libopie2/opiepim/ui/ui.pro @@ -3,7 +3,8 @@ HEADERS += ui/opimmainwindow.h \ ui/todayconfigwidget.h \ ui/todayplugininterface.h SOURCES += ui/opimmainwindow.cpp \ - ui/opimrecurrencewidget.cpp + ui/opimrecurrencewidget.cpp \ + ui/todayconfigwidget.cpp -INTERFACES += ui/opimrecurrencebase.ui
\ No newline at end of file +INTERFACES += ui/opimrecurrencebase.ui |