summaryrefslogtreecommitdiffstats
path: root/kweather/sidebarwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'kweather/sidebarwidget.h')
-rw-r--r--kweather/sidebarwidget.h29
1 files changed, 22 insertions, 7 deletions
diff --git a/kweather/sidebarwidget.h b/kweather/sidebarwidget.h
index fea25ea..4ed141c 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:
+TQ_OBJECT
+
+ 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;
+
};
#endif