forked from nemomobile/fingerterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.cpp
420 lines (349 loc) · 10.1 KB
/
util.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
Copyright 2011-2012 Heikki Holstila <[email protected]>
This file is part of FingerTerm.
FingerTerm 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.
FingerTerm 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 FingerTerm. If not, see <http://www.gnu.org/licenses/>.
*/
#include "qplatformdefs.h"
#include <QtCore>
#include <QtGui>
#include <QDBusInterface>
#include <QGuiApplication>
#include <QQuickView>
#include <QDebug>
#include "mainwindow.h"
#include "terminal.h"
#include "util.h"
#include "textrender.h"
#include "version.h"
#include <QFeedbackEffect>
Util::Util(QSettings *settings, QObject *parent) :
QObject(parent),
iAllowGestures(false),
newSelection(true),
iSettings(settings),
iWindow(0),
iRenderer(0)
{
swipeModeSet = false;
swipeAllowed = true;
connect(QGuiApplication::clipboard(), SIGNAL(dataChanged()), this, SIGNAL(clipboardOrSelectionChanged()));
}
Util::~Util()
{
// clear the notifications on quit
clearNotifications();
}
void Util::setWindow(QQuickView* win)
{
iWindow = dynamic_cast<MainWindow*>(win);
if(!iWindow)
qFatal("invalid main window");
connect(iWindow, SIGNAL(focusChanged(bool)), this, SLOT(onMainWinFocusChanged(bool)));
}
void Util::setWindowTitle(QString title)
{
iCurrentWinTitle = title;
iWindow->setTitle(title);
emit windowTitleChanged();
}
QString Util::currentWindowTitle()
{
return iCurrentWinTitle;
}
void Util::onMainWinFocusChanged(bool in)
{
if (in) {
clearNotifications();
//disable & re-enable swiping when window gains focus (workaround for an "auto mode" bug)
updateSwipeLock(false);
updateSwipeLock(true);
}
}
void Util::windowMinimize()
{
iWindow->minimize();
}
void Util::openNewWindow()
{
#ifdef MEEGO_EDITION_HARMATTAN
QDBusInterface iface(MComponentData::instance()->serviceName(),
"/org/maemo/m",
"com.nokia.MApplicationIf");
if (iface.isValid()) {
QStringList params;
params.append("new");
iface.call("launch", params);
}
#else
QProcess::startDetached("/usr/bin/fingerterm");
#endif //MEEGO_EDITION_HARMATTAN
}
void Util::updateSwipeLock(bool suggestedState)
{
#ifdef MEEGO_EDITION_HARMATTAN
if (settingsValue("ui/allowSwipe").toString()=="auto") {
if(suggestedState) {
enableSwipe();
} else {
disableSwipe();
}
} else if (settingsValue("ui/allowSwipe").toString()=="false") {
disableSwipe();
} else if (settingsValue("ui/allowSwipe").toString()=="true") {
enableSwipe();
}
#else
Q_UNUSED(suggestedState)
#endif //MEEGO_EDITION_HARMATTAN
}
void Util::disableSwipe()
{
#ifdef MEEGO_EDITION_HARMATTAN
if(swipeModeSet && !swipeAllowed)
return;
if (iWindow) {
iWindow->disableSwipe();
swipeModeSet = true;
swipeAllowed = false;
}
#endif //MEEGO_EDITION_HARMATTAN
}
void Util::enableSwipe()
{
#ifdef MEEGO_EDITION_HARMATTAN
if(swipeModeSet && swipeAllowed)
return;
if (iWindow)
{
iWindow->enableSwipe();
swipeModeSet = true;
swipeAllowed = true;
}
#endif //MEEGO_EDITION_HARMATTAN
}
QString Util::configPath()
{
if(!iSettings)
return QString();
QFileInfo f(iSettings->fileName());
return f.path();
}
QVariant Util::settingsValue(QString key)
{
if(!iSettings)
return QVariant();
return iSettings->value(key);
}
void Util::setSettingsValue(QString key, QVariant value)
{
if(iSettings)
iSettings->setValue(key, value);
}
QString Util::versionString()
{
return PROGRAM_VERSION;
}
int Util::uiFontSize()
{
#ifdef MEEGO_EDITION_HARMATTAN
return 14;
#else
return 12;
#endif
}
bool Util::isHarmattan()
{
#ifdef MEEGO_EDITION_HARMATTAN
return true;
#else
return false;
#endif
}
void Util::keyPressFeedback()
{
if( !settingsValue("ui/keyPressFeedback").toBool() )
return;
QFeedbackEffect::playThemeEffect(QFeedbackEffect::PressWeak);
}
void Util::keyReleaseFeedback()
{
if( !settingsValue("ui/keyPressFeedback").toBool() )
return;
// TODO: check what's more comfortable, only press, or press and release
QFeedbackEffect::playThemeEffect(QFeedbackEffect::ReleaseWeak);
}
void Util::bellAlert()
{
if(!iWindow)
return;
#ifdef MEEGO_EDITION_HARMATTAN
if(settingsValue("general/backgroundBellNotify").toBool() &&
!iWindow->hasFocus())
{
MRemoteAction act(MComponentData::instance()->serviceName(),
"/org/maemo/m",
"com.nokia.MApplicationIf",
"launch");
MNotification notif(MNotification::ImReceivedEvent, "FingerTerm", "Terminal alert was received");
notif.setImage("/usr/share/icons/hicolor/80x80/apps/fingerterm.png");
notif.setAction(act);
notif.publish();
} else if( settingsValue("general/visualBell").toBool() ) {
emit visualBell();
}
#else
if( settingsValue("general/visualBell").toBool() )
emit visualBell();
#endif
}
void Util::clearNotifications()
{
#ifdef MEEGO_EDITION_HARMATTAN
QList<MNotification*> notifs = MNotification::notifications();
foreach(MNotification* n, notifs) {
if( n->remove() )
delete n;
}
#endif //MEEGO_EDITION_HARMATTAN
}
void Util::mousePress(float eventX, float eventY) {
if(!iAllowGestures)
return;
dragOrigin = QPointF(eventX, eventY);
pointWhenLastScrolled = dragOrigin;
newSelection = true;
}
void Util::mouseMove(float eventX, float eventY) {
QPointF eventPos(eventX, eventY);
if(!iAllowGestures)
return;
if(settingsValue("ui/dragMode")=="scroll") {
if (scrollBackBuffer(eventPos, pointWhenLastScrolled)) {
pointWhenLastScrolled = eventPos;
}
dragOrigin = eventPos;
}
else if(settingsValue("ui/dragMode")=="select" && iRenderer) {
selectionHelper(eventPos);
}
}
void Util::mouseRelease(float eventX, float eventY) {
QPointF eventPos(eventX, eventY);
const int reqDragLength = 140;
if(!iAllowGestures)
return;
if(settingsValue("ui/dragMode")=="gestures") {
int xdist = qAbs(eventPos.x() - dragOrigin.x());
int ydist = qAbs(eventPos.y() - dragOrigin.y());
if(eventPos.x() < dragOrigin.x()-reqDragLength && xdist > ydist*2)
doGesture(PanLeft);
else if(eventPos.x() > dragOrigin.x()+reqDragLength && xdist > ydist*2)
doGesture(PanRight);
else if(eventPos.y() > dragOrigin.y()+reqDragLength && ydist > xdist*2)
doGesture(PanDown);
else if(eventPos.y() < dragOrigin.y()-reqDragLength && ydist > xdist*2)
doGesture(PanUp);
}
else if(settingsValue("ui/dragMode")=="scroll") {
// scrollBackBuffer(eventPos, dragOrigin);
}
else if(settingsValue("ui/dragMode")=="select" && iRenderer) {
selectionHelper(eventPos);
selectionFinished();
}
}
void Util::selectionHelper(QPointF scenePos)
{
int yCorr = iRenderer->fontDescent();
QPoint start(qRound((dragOrigin.x()+2)/iRenderer->fontWidth()),
qRound((dragOrigin.y()+yCorr)/iRenderer->fontHeight()));
QPoint end(qRound((scenePos.x()+2)/iRenderer->fontWidth()),
qRound((scenePos.y()+yCorr)/iRenderer->fontHeight()));
if (start != end) {
iTerm->setSelection(start, end);
newSelection = false;
}
}
bool Util::scrollBackBuffer(QPointF now, QPointF last)
{
if(!iTerm)
return false;
qreal xdist = qAbs(now.x() - last.x());
qreal ydist = qAbs(now.y() - last.y());
if (iRenderer->fontHeight() < 1)
return false;
int nbLines = ydist / iRenderer->fontHeight();
if (nbLines < 1)
return false;
if(now.y() < last.y() && xdist < ydist*2) {
iTerm->scrollBackBufferFwd(nbLines);
}
else if(now.y() > last.y() && xdist < ydist*2) {
iTerm->scrollBackBufferBack(nbLines);
}
return true;
}
void Util::doGesture(Util::PanGesture gesture)
{
if(!iTerm)
return;
if( gesture==PanLeft ) {
emit gestureNotify(settingsValue("gestures/panLeftTitle").toString());
iTerm->putString(settingsValue("gestures/panLeftCommand").toString(), true);
}
else if( gesture==PanRight ) {
emit gestureNotify(settingsValue("gestures/panRightTitle").toString());
iTerm->putString(settingsValue("gestures/panRightCommand").toString(), true);
}
else if( gesture==PanDown ) {
emit gestureNotify(settingsValue("gestures/panDownTitle").toString());
iTerm->putString(settingsValue("gestures/panDownCommand").toString(), true);
}
else if( gesture==PanUp ) {
emit gestureNotify(settingsValue("gestures/panUpTitle").toString());
iTerm->putString(settingsValue("gestures/panUpCommand").toString(), true);
}
}
void Util::notifyText(QString text)
{
emit gestureNotify(text);
}
void Util::copyTextToClipboard(QString str)
{
QClipboard *cb = QGuiApplication::clipboard();
cb->clear();
cb->setText(str);
}
bool Util::terminalHasSelection()
{
return !iTerm->selection().isNull();
}
bool Util::canPaste()
{
QClipboard *cb = QGuiApplication::clipboard();
return !cb->text().isEmpty();
}
void Util::selectionFinished()
{
emit clipboardOrSelectionChanged();
}
//static
bool Util::charIsHexDigit(QChar ch)
{
if (ch.isDigit()) // 0-9
return true;
else if (ch.toLatin1() >= 65 && ch.toLatin1() <= 70) // A-F
return true;
else if (ch.toLatin1() >= 97 && ch.toLatin1() <= 102) // a-f
return true;
return false;
}