//=========================================== // Lumina-DE source code // Copyright (c) 2014, Ken Moore // Available under the 3-clause BSD license // See the LICENSE file for full details //=========================================== // This panel plugin is the main button that allow the user to run // applications or logout of the desktop //=========================================== #ifndef _LUMINA_DESKTOP_USER_MENU_PLUGIN_H #define _LUMINA_DESKTOP_USER_MENU_PLUGIN_H // Qt includes #include #include #include #include #include // Lumina-desktop includes //#include "../../Globals.h" #include "../LPPlugin.h" //main plugin widget // libLumina includes #include "LuminaXDG.h" #include "UserWidget.h" // PANEL PLUGIN BUTTON class LUserButtonPlugin : public LPPlugin{ Q_OBJECT public: LUserButtonPlugin(QWidget *parent = 0, QString id = "userbutton", bool horizontal=true); ~LUserButtonPlugin(); private: QMenu *menu; QWidgetAction *mact; UserWidget *usermenu; QToolButton *button; private slots: void openMenu(); void closeMenu(); void shortcutActivated(); void updateButtonVisuals(); public slots: void OrientationChange(){ if(this->layout()->direction()==QBoxLayout::LeftToRight){ this->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::MinimumExpanding); button->setIconSize( QSize(this->height(), this->height()) ); }else{ this->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); button->setIconSize( QSize(this->width(), this->width()) ); } this->layout()->update(); updateButtonVisuals(); } void LocaleChange(){ updateButtonVisuals(); usermenu->UpdateAll(); } void ThemeChange(){ updateButtonVisuals(); usermenu->UpdateAll(); } }; #endif