diff options
Diffstat (limited to 'kweather/sidebarwidget.h')
-rw-r--r-- | kweather/sidebarwidget.h | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/kweather/sidebarwidget.h b/kweather/sidebarwidget.h index fea25ea..a45139e 100644 --- a/kweather/sidebarwidget.h +++ b/kweather/sidebarwidget.h @@ -22,21 +22,36 @@ #ifndef __SIDEBARWIDGET_H__ #define __SIDEBARWIDGET_H__ +#include <tqwidget.h> -#include <sidebarwidgetbase.h> -#include <tqvbox.h> +class TQVBox; +class TQVBoxLayout; +class TQScrollView; +class KCMultiDialog; +class DCOPRef; -class sidebarwidget : public sidebarwidgetbase +class sidebarwidget : public TQWidget { Q_OBJECT - -public: + + public: sidebarwidget(TQWidget* parent, const char* name = 0); virtual ~sidebarwidget(); - void addWidget(TQWidget *w, const TQString &s); TQWidget *viewport(); + TQScrollView *reportGrid; + TQVBoxLayout *mainLayout; + TQVBoxLayout *layout; TQVBox *view; + + private slots: + void slotRefresh(); + void slotConfigure(); + + private: + DCOPRef *dcopCall; + KCMultiDialog *settingsDialog = 0; + }; #endif |