2014-09-26 23:48: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-09-26 23:48: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-09-26 23:48:19 +00:00
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
#include "contextmenu.h"
|
|
|
|
#include "flatbutton.h"
|
2014-09-29 02:47:30 +00:00
|
|
|
#include "pspecific.h"
|
2014-09-26 23:48:19 +00:00
|
|
|
|
2015-01-28 13:11:14 +00:00
|
|
|
#include "application.h"
|
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
#include "lang.h"
|
|
|
|
|
2014-09-30 19:24:56 +00:00
|
|
|
ContextMenu::ContextMenu(QWidget *parent, const style::iconedButton &st) : TWidget(0),
|
2014-09-29 02:47:30 +00:00
|
|
|
_hiding(false), _buttonStyle(st), _shadow(st::dropdownShadow), _selected(-1), a_opacity(0), _deleteOnHide(false) {
|
|
|
|
resetActions();
|
2014-09-26 23:48:19 +00:00
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
setWindowFlags(Qt::FramelessWindowHint | Qt::BypassWindowManagerHint | Qt::Tool | Qt::NoDropShadowWindowHint | Qt::WindowStaysOnTopHint);
|
2014-09-26 23:48:19 +00:00
|
|
|
hide();
|
2014-09-29 02:47:30 +00:00
|
|
|
|
|
|
|
setAttribute(Qt::WA_NoSystemBackground, true);
|
|
|
|
setAttribute(Qt::WA_TranslucentBackground, true);
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
QAction *ContextMenu::addAction(const QString &text, const QObject *receiver, const char* member) {
|
|
|
|
QAction *a = 0;
|
|
|
|
_actions.push_back(a = new QAction(text, this));
|
|
|
|
connect(a, SIGNAL(triggered(bool)), receiver, member);
|
|
|
|
connect(a, SIGNAL(changed()), this, SLOT(actionChanged()));
|
2014-09-26 23:48:19 +00:00
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
IconedButton *b = 0;
|
|
|
|
_buttons.push_back(b = new IconedButton(this, _buttonStyle, a->text()));
|
|
|
|
connect(b, SIGNAL(clicked()), this, SLOT(hideStart()));
|
|
|
|
connect(b, SIGNAL(clicked()), a, SIGNAL(triggered()));
|
|
|
|
connect(b, SIGNAL(stateChanged(int,ButtonStateChangeSource)), this, SLOT(buttonStateChanged(int,ButtonStateChangeSource)));
|
2014-09-26 23:48:19 +00:00
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
_width = qMax(_width, int(st::dropdownPadding.left() + st::dropdownPadding.right() + b->width()));
|
2015-01-05 20:17:33 +00:00
|
|
|
for (int32 i = 0, l = _buttons.size(); i < l; ++i) _buttons[i]->resize(_width - int(st::dropdownPadding.left() + st::dropdownPadding.right()), _buttons[i]->height());
|
2014-09-29 02:47:30 +00:00
|
|
|
_height += b->height();
|
2014-09-26 23:48:19 +00:00
|
|
|
|
|
|
|
resize(_width, _height);
|
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
ContextMenu::Actions &ContextMenu::actions() {
|
|
|
|
return _actions;
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
void ContextMenu::actionChanged() {
|
|
|
|
for (int32 i = 0, l = _actions.size(); i < l; ++i) {
|
|
|
|
_buttons[i]->setText(_actions[i]->text());
|
2015-01-05 20:17:33 +00:00
|
|
|
_width = qMax(_width, int(st::dropdownPadding.left() + st::dropdownPadding.right() + _buttons[i]->width()));
|
|
|
|
_buttons[i]->resize(_width - int(st::dropdownPadding.left() + st::dropdownPadding.right()), _buttons[i]->height());
|
2014-09-29 02:47:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::onActiveChanged() {
|
|
|
|
if (!windowHandle()->isActive()) {
|
|
|
|
hideStart();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::buttonStateChanged(int oldState, ButtonStateChangeSource source) {
|
|
|
|
if (source == ButtonByUser) {
|
|
|
|
for (int32 i = 0, l = _buttons.size(); i < l; ++i) {
|
|
|
|
if (_buttons[i]->getState() & Button::StateOver) {
|
|
|
|
if (i != _selected) {
|
|
|
|
_buttons[i]->setOver(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (source == ButtonByHover) {
|
|
|
|
for (int32 i = 0, l = _buttons.size(); i < l; ++i) {
|
|
|
|
if (_buttons[i]->getState() & Button::StateOver) {
|
|
|
|
if (i != _selected) {
|
|
|
|
int32 sel = _selected;
|
|
|
|
_selected = i;
|
|
|
|
if (sel >= 0 && sel < _buttons.size()) {
|
|
|
|
_buttons[sel]->setOver(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::resetActions() {
|
|
|
|
_width = st::dropdownPadding.left() + st::dropdownPadding.right();
|
|
|
|
_height = st::dropdownPadding.top() + st::dropdownPadding.bottom();
|
2014-09-26 23:48:19 +00:00
|
|
|
resize(_width, _height);
|
2014-09-29 02:47:30 +00:00
|
|
|
|
|
|
|
clearActions();
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::clearActions() {
|
2014-09-26 23:48:19 +00:00
|
|
|
for (int32 i = 0, l = _buttons.size(); i < l; ++i) {
|
|
|
|
delete _buttons[i];
|
|
|
|
}
|
|
|
|
_buttons.clear();
|
2014-09-29 02:47:30 +00:00
|
|
|
|
|
|
|
for (int32 i = 0, l = _actions.size(); i < l; ++i) {
|
|
|
|
delete _actions[i];
|
|
|
|
}
|
|
|
|
_actions.clear();
|
|
|
|
|
|
|
|
_selected = -1;
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::resizeEvent(QResizeEvent *e) {
|
2014-09-29 02:47:30 +00:00
|
|
|
int32 top = st::dropdownPadding.top();
|
2014-09-26 23:48:19 +00:00
|
|
|
for (Buttons::const_iterator i = _buttons.cbegin(), e = _buttons.cend(); i != e; ++i) {
|
2014-09-29 02:47:30 +00:00
|
|
|
(*i)->move(st::dropdownPadding.left(), top);
|
|
|
|
top += (*i)->height();
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::paintEvent(QPaintEvent *e) {
|
|
|
|
QPainter p(this);
|
|
|
|
|
2014-09-30 14:13:47 +00:00
|
|
|
QPainter::CompositionMode m = p.compositionMode();
|
|
|
|
p.setCompositionMode(QPainter::CompositionMode_Source);
|
|
|
|
p.fillRect(e->rect(), st::transparent->b);
|
|
|
|
p.setCompositionMode(m);
|
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
if (animating()) {
|
|
|
|
p.setOpacity(a_opacity.current());
|
|
|
|
}
|
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
QRect r(st::dropdownPadding.left(), st::dropdownPadding.top(), _width - st::dropdownPadding.left() - st::dropdownPadding.right(), _height - st::dropdownPadding.top() - st::dropdownPadding.bottom());
|
|
|
|
// draw shadow
|
|
|
|
_shadow.paint(p, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::keyPressEvent(QKeyEvent *e) {
|
|
|
|
if (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return) {
|
|
|
|
if (_selected >= 0 && _selected < _buttons.size()) {
|
|
|
|
emit _buttons[_selected]->clicked();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((e->key() != Qt::Key_Up && e->key() != Qt::Key_Down) || _buttons.size() < 1) return;
|
2014-09-26 23:48:19 +00:00
|
|
|
|
2014-09-29 02:47:30 +00:00
|
|
|
int32 newSelected = _selected + (e->key() == Qt::Key_Down ? 1 : -1);
|
|
|
|
if (_selected < 0 || _selected >= _buttons.size()) {
|
|
|
|
newSelected = e->key() == Qt::Key_Down ? 0 : (_buttons.size() - 1);
|
|
|
|
} else {
|
|
|
|
if (newSelected < 0) {
|
|
|
|
newSelected = _buttons.size() - 1;
|
|
|
|
} else if (newSelected >= _buttons.size()) {
|
|
|
|
newSelected = 0;
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
_buttons[_selected]->setOver(false);
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
_selected = newSelected;
|
|
|
|
_buttons[_selected]->setOver(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::focusOutEvent(QFocusEvent *e) {
|
|
|
|
if (!_hiding) hideStart();
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::fastHide() {
|
|
|
|
if (animating()) {
|
|
|
|
anim::stop(this);
|
|
|
|
}
|
|
|
|
a_opacity = anim::fvalue(0, 0);
|
2014-09-29 02:47:30 +00:00
|
|
|
hideFinish();
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::adjustButtons() {
|
|
|
|
for (Buttons::const_iterator i = _buttons.cbegin(), e = _buttons.cend(); i != e; ++i) {
|
|
|
|
(*i)->setOpacity(a_opacity.current());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::hideStart() {
|
2014-09-29 02:47:30 +00:00
|
|
|
if (isHidden()) return;
|
|
|
|
|
2014-09-26 23:48:19 +00:00
|
|
|
_hiding = true;
|
|
|
|
a_opacity.start(0);
|
|
|
|
anim::start(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::hideFinish() {
|
|
|
|
hide();
|
2014-09-29 02:47:30 +00:00
|
|
|
if (_deleteOnHide) {
|
|
|
|
deleteLater();
|
|
|
|
}
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::showStart() {
|
|
|
|
if (!isHidden() && a_opacity.current() == 1) {
|
|
|
|
return;
|
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
_selected = -1;
|
2014-09-26 23:48:19 +00:00
|
|
|
_hiding = false;
|
|
|
|
a_opacity.start(1);
|
|
|
|
anim::start(this);
|
2014-09-29 02:47:30 +00:00
|
|
|
animStep(0);
|
|
|
|
psUpdateOverlayed(this);
|
|
|
|
show();
|
2014-10-17 12:57:14 +00:00
|
|
|
psShowOverAll(this);
|
2014-09-29 02:47:30 +00:00
|
|
|
windowHandle()->requestActivate();
|
|
|
|
activateWindow();
|
|
|
|
setFocus();
|
2014-09-26 23:48:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ContextMenu::animStep(float64 ms) {
|
|
|
|
float64 dt = ms / 150;
|
|
|
|
bool res = true;
|
|
|
|
if (dt >= 1) {
|
|
|
|
a_opacity.finish();
|
|
|
|
if (_hiding) {
|
|
|
|
hideFinish();
|
|
|
|
}
|
|
|
|
res = false;
|
|
|
|
} else {
|
|
|
|
a_opacity.update(dt, anim::linear);
|
|
|
|
}
|
|
|
|
adjustButtons();
|
|
|
|
update();
|
|
|
|
return res;
|
|
|
|
}
|
2014-09-29 02:47:30 +00:00
|
|
|
|
|
|
|
void ContextMenu::deleteOnHide() {
|
|
|
|
_deleteOnHide = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ContextMenu::popup(const QPoint &p) {
|
|
|
|
QPoint w = p - QPoint(st::dropdownPadding.left(), st::dropdownPadding.top());
|
2015-01-28 13:11:14 +00:00
|
|
|
QRect r = App::app() ? App::app()->desktop()->screenGeometry(p) : QDesktopWidget().screenGeometry(p);
|
2014-09-29 02:47:30 +00:00
|
|
|
if (w.x() + width() - st::dropdownPadding.right() > r.x() + r.width()) {
|
|
|
|
w.setX(r.x() + r.width() - width() + st::dropdownPadding.right());
|
|
|
|
}
|
|
|
|
if (w.y() + height() - st::dropdownPadding.bottom() > r.y() + r.height()) {
|
|
|
|
w.setY(p.y() - height() + st::dropdownPadding.bottom());
|
|
|
|
}
|
2014-10-07 17:57:57 +00:00
|
|
|
if (w.y() < r.y()) {
|
|
|
|
w.setY(r.y());
|
2014-09-29 02:47:30 +00:00
|
|
|
}
|
|
|
|
move(w);
|
|
|
|
showStart();
|
|
|
|
}
|
|
|
|
|
|
|
|
ContextMenu::~ContextMenu() {
|
|
|
|
clearActions();
|
|
|
|
}
|