summaryrefslogtreecommitdiffstats
path: root/kweather/sidebarwidget.h
diff options
context:
space:
mode:
authorMavridis Philippe <[email protected]>2021-08-11 09:29:23 +0000
committerMavridis Philippe <[email protected]>2021-08-29 08:56:11 +0000
commit07171bc7a78a7c4d45372d8750e857d1da5d6173 (patch)
treef7b7d954ec44649c5e8131163b1831d528fa1924 /kweather/sidebarwidget.h
parent9add97c81586acc4c735d8e12ec3813c92a9edc0 (diff)
downloadtdetoys-07171bc7a78a7c4d45372d8750e857d1da5d6173.tar.gz
tdetoys-07171bc7a78a7c4d45372d8750e857d1da5d6173.zip
KWeather Konqueror sidebar revival
Signed-off-by: Mavridis Philippe <[email protected]>
Diffstat (limited to 'kweather/sidebarwidget.h')
-rw-r--r--kweather/sidebarwidget.h27
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