2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop 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 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It 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.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QtWidgets/QWidget>
|
|
|
|
#include "gui/animation.h"
|
|
|
|
#include "gui/button.h"
|
|
|
|
|
|
|
|
class Window;
|
|
|
|
|
|
|
|
class SysBtn : public Button, public Animated {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-11-18 12:41:33 +00:00
|
|
|
SysBtn(QWidget *parent, const style::sysButton &st, const QString &text = QString());
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-12-01 10:47:38 +00:00
|
|
|
void setText(const QString &text);
|
2014-05-30 08:53:19 +00:00
|
|
|
void paintEvent(QPaintEvent *e);
|
2015-03-02 12:34:16 +00:00
|
|
|
void setSysBtnStyle(const style::sysButton &st);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
HitTestType hitTest(const QPoint &p) const;
|
|
|
|
|
2014-11-18 12:41:33 +00:00
|
|
|
void setOverLevel(float64 level);
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
bool animStep(float64 ms);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onStateChange(int oldState, ButtonStateChangeSource source);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
style::sysButton _st;
|
|
|
|
anim::cvalue a_color;
|
2014-11-18 12:41:33 +00:00
|
|
|
float64 _overLevel;
|
|
|
|
QString _text;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class MinimizeBtn : public SysBtn {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
MinimizeBtn(QWidget *parent, Window *window);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClick();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Window *wnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MaximizeBtn : public SysBtn {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
MaximizeBtn(QWidget *parent, Window *window);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClick();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Window *wnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
class RestoreBtn : public SysBtn {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
RestoreBtn(QWidget *parent, Window *window);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClick();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Window *wnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
class CloseBtn : public SysBtn {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
CloseBtn(QWidget *parent, Window *window);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClick();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Window *wnd;
|
|
|
|
};
|
|
|
|
|
|
|
|
class UpdateBtn : public SysBtn {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2014-11-18 12:41:33 +00:00
|
|
|
UpdateBtn(QWidget *parent, Window *window, const QString &text = QString());
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClick();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Window *wnd;
|
|
|
|
};
|
2015-03-02 12:34:16 +00:00
|
|
|
|
|
|
|
class LockBtn : public SysBtn {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
LockBtn(QWidget *parent, Window *window);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void onClick();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Window *wnd;
|
|
|
|
};
|