yhkylin-backup-tools/kybackup/leftsiderbarwidget.h

48 lines
1.1 KiB
C
Raw Normal View History

2021-09-16 16:05:46 +08:00
#ifndef LEFTSIDERBARWIDGET_H
#define LEFTSIDERBARWIDGET_H
#include <QWidget>
#include <QObject>
#include <QHBoxLayout>
#include <QLabel>
#include <QPushButton>
#include <QButtonGroup>
2022-02-15 16:51:03 +08:00
#include <QGSettings>
2021-09-16 16:05:46 +08:00
#include "functypeconverter.h"
2021-10-13 16:31:58 +08:00
#include "component/mylabel.h"
2022-03-02 11:24:54 +08:00
#include "component/pixmaplabel.h"
2021-09-16 16:05:46 +08:00
class LeftsiderbarWidget : public QWidget
{
Q_OBJECT
public:
// 启动模式,不同模式启动时展示的功能模块不同
enum StartMode {
normal,
2021-11-17 13:23:38 +08:00
livecd,
std_user
2021-09-16 16:05:46 +08:00
};
LeftsiderbarWidget(QWidget *parent = nullptr, StartMode mode = StartMode::normal);
~LeftsiderbarWidget();
2022-02-22 15:49:57 +08:00
2021-09-16 16:05:46 +08:00
void paintEvent(QPaintEvent *event);
2021-11-17 13:23:38 +08:00
2022-02-22 15:49:57 +08:00
void setCheckedFunc(int func_type);
2021-11-17 13:23:38 +08:00
signals:
void selected(int func_type);
2021-09-16 16:05:46 +08:00
private:
2022-02-15 16:51:03 +08:00
QGSettings *m_personalQgsettings;
qreal m_transparency = 0.8;
2022-02-16 17:47:06 +08:00
QWidget *m_parent;
2021-09-16 16:05:46 +08:00
QVBoxLayout *m_leftSideBarVLayout = nullptr;
2022-03-02 11:24:54 +08:00
PixmapLabel *m_mTitleIcon = nullptr;
2021-10-13 16:31:58 +08:00
MyLabel *m_titleLabel = nullptr;
2021-09-16 16:05:46 +08:00
QButtonGroup *m_funcGroup = nullptr;
2021-11-17 13:23:38 +08:00
QStringList m_deplayFuncs;
2021-09-16 16:05:46 +08:00
};
#endif // LEFTSIDERBARWIDGET_H