#ifndef LEFTSIDERBARWIDGET_H #define LEFTSIDERBARWIDGET_H #include #include #include #include #include #include #include "functypeconverter.h" class LeftsiderbarWidget : public QWidget { Q_OBJECT public: // 启动模式,不同模式启动时展示的功能模块不同 enum StartMode { normal, livecd }; LeftsiderbarWidget(QWidget *parent = nullptr, StartMode mode = StartMode::normal); ~LeftsiderbarWidget(); void paintEvent(QPaintEvent *event); private: int transparency = 0; QVBoxLayout *m_leftSideBarVLayout = nullptr; QLabel *m_mTitleIcon = nullptr; QLabel *m_titleLabel = nullptr; QButtonGroup *m_funcGroup = nullptr; }; #endif // LEFTSIDERBARWIDGET_H