forked from lmq3342xja/fcitx-qimpanel
-
Notifications
You must be signed in to change notification settings - Fork 4
/
toplevel.cpp
123 lines (110 loc) · 4.25 KB
/
toplevel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/***************************************************************************
* Copyright (C) 2013 by CSSlayer <[email protected]> *
* *
* 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 2 of the License, 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, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA . *
***************************************************************************/
#include <QBoxLayout>
#include <QApplication>
#include <QDesktopWidget>
#include <QEvent>
#include <QMouseEvent>
#include <QDebug>
#include "config.h"
#include "toplevel.h"
#ifdef IS_QT_5
TopLevel::TopLevel(QWidget* parent) : QWidget(parent,
Qt::Tool | Qt::WindowStaysOnTopHint | Qt::WindowDoesNotAcceptFocus
| Qt::FramelessWindowHint | Qt::X11BypassWindowManagerHint)
#endif
#ifdef IS_QT_4
TopLevel::TopLevel(QWidget* parent) : QWidget(parent,
Qt::Tool | Qt::WindowStaysOnTopHint
| Qt::FramelessWindowHint | Qt::X11BypassWindowManagerHint)
#endif
{
setAttribute(Qt::WA_TranslucentBackground, true);
QVBoxLayout *lay = new QVBoxLayout(this);
lay->setMargin(0);
lay->setSpacing(0);
setLayout(lay);
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
}
void TopLevel::setCenterWidget(QWidget* widget)
{
if (m_widget) {
m_widget->removeEventFilter(this);
layout()->removeWidget(m_widget);
}
m_widget = widget;
widget->installEventFilter(this);
widget->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
layout()->addWidget(widget);
layout()->activate();//?
}
void TopLevel::showEvent(QShowEvent* event)
{
QWidget::showEvent(event);
setMask(rect());
updateLocation();
}
bool TopLevel::eventFilter(QObject* object, QEvent* event)
{
if (object == m_widget.data() &&
event->type() == QEvent::Resize) {
setMinimumSize(m_widget->sizeHint());
setMaximumSize(m_widget->sizeHint());
}
return QObject::eventFilter(object, event);
}
void TopLevel::resizeEvent(QResizeEvent* resize)
{
QWidget::resizeEvent(resize);
setMask(rect());
updateLocation();
}
void TopLevel::setSpotRect(const QRect& rect)
{
m_spotRect = rect;
updateLocation();
}
void TopLevel::updateLocation()
{
if (this->isVisible() == false)
return;
QRect screenRect = QApplication::desktop()->screenGeometry(QPoint(m_spotRect.x(), m_spotRect.y()));
int x;
x = qMin(m_spotRect.x(), screenRect.x() + screenRect.width() - width());
x = qMax(x, screenRect.x());
int oy = m_spotRect.y() + m_spotRect.height();
int y = oy + 10;
if (y < screenRect.y()) {
y = screenRect.y();
}
if (y > screenRect.y() + screenRect.height()) {
y = screenRect.height();
}
if (y + height() > screenRect.y() + screenRect.height()) {
/// minus 20 to make preedit bar never overlap the input context
y = oy - (height() + ((m_spotRect.height() == 0)?20:(m_spotRect.height() + 10)));
}
QPoint p(x, y);
if (p != pos())
move(p);
}
void TopLevel::setTopLevelVisible(bool aux, bool preedit, bool lookupTable)
{
this->setVisible(aux || preedit || lookupTable);
}