73 lines
1.7 KiB
C++
73 lines
1.7 KiB
C++
/*
|
|
* Copyright (C) 2020, Tianjin KYLIN Information Technology Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
#ifndef CUSTOMBUTTON_H
|
|
#define CUSTOMBUTTON_H
|
|
|
|
#include <QLabel>
|
|
#include <QTimer>
|
|
#include <QMouseEvent>
|
|
#include <QStyleOption>
|
|
#include <QPainter>
|
|
#include <QGSettings>
|
|
#include <QPushButton>
|
|
#include <QPropertyAnimation>
|
|
#include "constant_class.h"
|
|
#include "gsettingsubject.h"
|
|
|
|
|
|
/**
|
|
* @brief 自定义滑动按钮
|
|
*/
|
|
class CustomButton : public QPushButton
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit CustomButton(QWidget *parent = nullptr, int width=50, int height=24, int status = 1);
|
|
~CustomButton();
|
|
|
|
private:
|
|
QTimer timer;
|
|
int m_width;
|
|
int m_height;
|
|
int dir;
|
|
int position;
|
|
int max;
|
|
int min;
|
|
int length;
|
|
int Status;
|
|
QString closeBcack;
|
|
QString openBcack;
|
|
QString closeBtn;
|
|
QString openbtn;
|
|
QPropertyAnimation *animation1;
|
|
QPropertyAnimation *animation2;
|
|
public:
|
|
void init(int status);
|
|
void whiteStyle();
|
|
void blackStyle();
|
|
void settingsStyle();
|
|
void colorUpdate();
|
|
void openSlot();
|
|
void closeSlot();
|
|
void initOpen();
|
|
void initClose();
|
|
QLabel* myLabel;
|
|
};
|
|
|
|
#endif // CUSTOMBUTTON_H
|