2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-11-25 23:15:18 +03:00
|
|
|
an official desktop messaging app, see https://telegram.org
|
2014-05-30 12:53:19 +04: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
|
|
|
|
Copyright (c) 2014 John Preston, https://tdesktop.com
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class TWidget : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
TWidget(QWidget *parent = 0) : QWidget(parent) {
|
|
|
|
}
|
|
|
|
TWidget *tparent() {
|
|
|
|
return dynamic_cast<TWidget*>(parentWidget());
|
|
|
|
}
|
|
|
|
const TWidget *tparent() const {
|
|
|
|
return dynamic_cast<const TWidget*>(parentWidget());
|
|
|
|
}
|
|
|
|
|
2014-06-25 21:50:27 +04:00
|
|
|
virtual void leaveToChildEvent(QEvent *e) { // e -- from enterEvent() of child TWidget
|
2014-05-30 12:53:19 +04:00
|
|
|
}
|
|
|
|
|
2014-09-28 19:47:30 -07:00
|
|
|
bool event(QEvent *e) {
|
|
|
|
return QWidget::event(e);
|
|
|
|
}
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
protected:
|
|
|
|
|
|
|
|
void enterEvent(QEvent *e) {
|
|
|
|
TWidget *p(tparent());
|
|
|
|
if (p) p->leaveToChildEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
};
|
2014-06-14 23:32:11 +04:00
|
|
|
|
|
|
|
QPixmap myGrab(QWidget *target, const QRect &rect);
|