add raw support to hide panels

This commit is contained in:
arcan1s
2014-08-28 03:06:48 +04:00
parent 123cfcb475
commit d28d7156ce
5 changed files with 60 additions and 48 deletions

View File

@ -68,7 +68,8 @@ public slots:
// configuration interface
void configAccepted();
void configChanged();
// event
// events
void changePanelsState();
int setCurrentDesktop(const int number);
private slots:
@ -80,6 +81,7 @@ protected:
private:
// functions
QStringList getDesktopNames();
QList<Plasma::Containment *> getPanels();
void updateText();
// ui
QGraphicsLinearLayout *layout;
@ -88,6 +90,7 @@ private:
bool debug;
// data engine
int currentDesktop;
int oldState;
Plasma::DataEngine *extsysmonEngine;
// configuration interface
Ui::AppearanceWidget uiAppConfig;