]> git.lyx.org Git - lyx.git/blob - src/frontends/qt/InsertTableWidget.cpp
Fix Qt6 deprecation warning (QEvent::globalPos())
[lyx.git] / src / frontends / qt / InsertTableWidget.cpp
1 /**
2  * \file InsertTableWidget.cpp
3  *
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Edwin Leuven
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsertTableWidget.h"
15
16 #include "GuiView.h"
17 #include "qt_helpers.h"
18
19 // DispatchResult.h is needed by the windows compiler because lyx::dispatch
20 // returns a DispatchResult const reference. Gcc does not complain. Weird...
21 #include "DispatchResult.h"
22 #include "FuncStatus.h"
23 #include "FuncRequest.h"
24 #include "LyX.h"
25
26 #include <QMouseEvent>
27 #include <QPainter>
28 #include <QString>
29 #include <QToolTip>
30
31
32 namespace lyx {
33 namespace frontend {
34
35 InsertTableWidget::InsertTableWidget(QWidget * parent)
36         : QWidget(parent, Qt::Popup), colwidth_(20), rowheight_(12)
37 {
38         init();
39         setMouseTracking(true);
40 }
41
42
43 void InsertTableWidget::init()
44 {
45         rows_ = 5;
46         cols_ = 5;
47         bottom_ = 0;
48         right_ = 0;
49         underMouse_ = false;
50 }
51
52
53 void InsertTableWidget::show(bool show)
54 {
55         if (!show)
56                 return;
57
58         init();
59         resetGeometry();
60         setVisible(true);
61         // emit signal
62         visible(true);
63 }
64
65
66 void InsertTableWidget::resetGeometry()
67 {
68         QPoint p = parentWidget()->mapToGlobal(parentWidget()->geometry().bottomLeft());
69         setGeometry(p.x() - parentWidget()->pos().x(),
70                                 p.y() - parentWidget()->pos().y(),
71                                 cols_ * colwidth_ + 1, rows_ * rowheight_ + 1);
72 }
73
74
75 void InsertTableWidget::mouseMoveEvent(QMouseEvent * event)
76 {
77         // do this ourselves because when the mouse leaves the app
78         // we get an enter event (ie underMouse() is true)!!
79 #if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
80         underMouse_ = geometry().contains(event->globalPosition().toPoint());
81 #else
82         underMouse_ = geometry().contains(event->globalPos());
83 #endif
84         if (!underMouse_) {
85                 bottom_ = 0;
86                 right_ = 0;
87                 update();
88                 return;
89         }
90
91         int const r0 = right_;
92         int const b0 = bottom_;
93         right_ = event->x() / colwidth_ + 1;
94         bottom_ = event->y() / rowheight_ + 1;
95
96         if (bottom_ == rows_) {
97                 ++rows_;
98                 resetGeometry();
99         }
100
101         if (right_ == cols_) {
102                 ++cols_;
103                 resetGeometry();
104         }
105
106         if (bottom_ != b0 || right_ != r0) {
107                 update();
108                 QString const status = QString("%1x%2").arg(bottom_).arg(right_);
109 #if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
110                 QToolTip::showText(event->globalPosition().toPoint(), status , this);
111 #else
112                 QToolTip::showText(event->globalPos(), status , this);
113 #endif
114         }
115 }
116
117
118 void InsertTableWidget::mouseReleaseEvent(QMouseEvent * /*event*/)
119 {
120         if (underMouse_) {
121                 QString const qdata = QString("%1 %2").arg(bottom_).arg(right_);
122                 lyx::dispatch(FuncRequest(LFUN_TABULAR_INSERT, fromqstr(qdata)));
123         }
124         // emit signal
125         visible(false);
126         close();
127 }
128
129
130 void InsertTableWidget::mousePressEvent(QMouseEvent * /*event*/)
131 {
132         // swallow this one
133 }
134
135
136 void InsertTableWidget::paintEvent(QPaintEvent * /*event*/)
137 {
138         drawGrid(rows_, cols_, Qt::white);
139         if (underMouse_)
140                 drawGrid(bottom_, right_, Qt::darkBlue);
141 }
142
143
144 void InsertTableWidget::drawGrid(int const rows, int const cols, Qt::GlobalColor const color)
145 {
146         QPainter painter(this);
147         painter.setPen(Qt::darkGray);
148         painter.setBrush(color);
149
150         for (int r = 0 ; r < rows ; ++r ) {
151                 for (int c = 0 ; c < cols ; ++c ) {
152                         QRect rectangle(c * colwidth_, r * rowheight_, colwidth_, rowheight_);
153                         painter.drawRect(rectangle);
154                 }
155         }
156 }
157
158
159 void InsertTableWidget::updateParent()
160 {
161         bool status = getStatus(FuncRequest(LFUN_TABULAR_INSERT)).enabled();
162         parentWidget()->setEnabled(status);
163 }
164
165
166 } // namespace frontend
167 } // namespace lyx
168
169 #include "moc_InsertTableWidget.cpp"