5eb80dd6cc13104b7464f6155bb0ccc674869afb
[presencevnc] / src / mainwindow.cpp
1 /*
2    Presence VNC
3    Copyright (C) 2010 Christian Pulvermacher
4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License along
16    with this program; if not, write to the Free Software Foundation, Inc.,
17    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18    */
19 #include "connectdialog.h"
20 #include "fullscreenexitbutton.h"
21 #include "keymenu.h"
22 #include "mainwindow.h"
23 #include "preferences.h"
24 #include "scrollarea.h"
25 #include "vncview.h"
26
27 #ifdef Q_WS_MAEMO_5
28 #include <QtMaemo5>
29 #include <QX11Info>
30 #include <QDBusConnection>
31
32 #include <mce/mode-names.h>
33 #include <mce/dbus-names.h>
34
35 #include <X11/Xlib.h>
36 #include <X11/Xatom.h>
37 #endif
38
39
40 MainWindow::MainWindow(QString url, int quality, int listen_port, bool view_only):
41     QMainWindow(0),
42     vnc_view(0),
43     scroll_area(new ScrollArea(0)),
44     input_toolbuttons(new QActionGroup(this)),
45     key_menu(0)
46 {
47     setWindowTitle("Presence VNC");
48 #ifdef Q_WS_MAEMO_5
49     setContextMenuPolicy(Qt::NoContextMenu);
50     setAttribute(Qt::WA_Maemo5StackedWindow);
51 #endif
52
53     migrateConfiguration();
54
55     //set up toolbar
56     toolbar = new QToolBar(0);
57     key_menu_button = input_toolbuttons->addAction(toolbar->addAction(QChar(0x2026), this, SLOT(showKeyMenu()))); //"..." button
58     key_menu_button->setCheckable(true); //used to indicate wether a modifier key is still pressed
59     input_toolbuttons->addAction(toolbar->addAction(tr("Tab"), this, SLOT(sendTab())));
60     input_toolbuttons->addAction(toolbar->addAction(tr("Esc"), this, SLOT(sendEsc())));
61     input_toolbuttons->addAction(toolbar->addAction(tr("PgUp"), this, SLOT(sendPgUp())));
62     input_toolbuttons->addAction(toolbar->addAction(tr("PgDn"), this, SLOT(sendPgDn())));
63 #ifdef Q_WS_MAEMO_5
64     input_toolbuttons->addAction(toolbar->addAction(QIcon("/usr/share/icons/hicolor/48x48/hildon/chat_enter.png"), "", this, SLOT(sendReturn())));
65     input_toolbuttons->addAction(toolbar->addAction(QIcon("/usr/share/icons/hicolor/48x48/hildon/control_keyboard.png"), "", this, SLOT(showInputPanel())));
66 #endif
67
68     QSettings settings;
69     zoom_slider = new QSlider(Qt::Horizontal, 0);
70     zoom_slider->setRange(0, 100);
71     connect(zoom_slider, SIGNAL(valueChanged(int)),
72             this, SLOT(setZoomLevel(int)));
73     connect(zoom_slider, SIGNAL(sliderReleased()),
74             this, SLOT(zoomSliderReleased()));
75     zoom_slider->setValue(settings.value("zoomlevel", 95).toInt());
76     toolbar->addWidget(zoom_slider);
77
78 #ifdef Q_WS_MAEMO_5
79     toolbar->addAction(QIcon("/usr/share/icons/hicolor/48x48/hildon/general_fullsize.png"), "", this, SLOT(toggleFullscreen()));
80 #else
81     toolbar->addAction(tr("Toggle Fullscreen"), this, SLOT(toggleFullscreen()));
82 #endif
83     addToolBar(toolbar);
84     toolbar->setVisible(settings.value("show_toolbar", true).toBool());
85     toolbar->setEnabled(false);
86
87     //set up menu
88     QAction *connect_action = new QAction(tr("Connect"), this);
89     disconnect_action = new QAction(tr("Disconnect"), this);
90     show_toolbar = new QAction(tr("Show toolbar"), this);
91     show_toolbar->setCheckable(true);
92     show_toolbar->setChecked(settings.value("show_toolbar", true).toBool());
93     QAction *pref_action = new QAction(tr("Preferences"), this);
94     QAction *about_action = new QAction(tr("About"), this);
95
96 #ifdef Q_WS_MAEMO_5
97     menuBar()->addAction(connect_action);
98     menuBar()->addAction(disconnect_action);
99     menuBar()->addAction(show_toolbar);
100     menuBar()->addAction(pref_action);
101     menuBar()->addAction(about_action);
102 #else
103     QMenu* session_menu = menuBar()->addMenu(tr("&Session"));
104     session_menu->addAction(connect_action);
105     session_menu->addAction(disconnect_action);
106     session_menu->addSeparator();
107     session_menu->addAction(pref_action);
108     session_menu->addSeparator();
109     session_menu->addAction(tr("&Quit"), this, SLOT(close()));
110
111     QMenu* view_menu = menuBar()->addMenu(tr("&View"));
112     view_menu->addAction(show_toolbar);
113
114     QMenu* help_menu = menuBar()->addMenu(tr("&Help"));
115     help_menu->addAction(about_action);
116 #endif
117
118     connect(about_action, SIGNAL(triggered()),
119             this, SLOT(about()));
120     connect(pref_action, SIGNAL(triggered()),
121             this, SLOT(showPreferences()));
122     connect(connect_action, SIGNAL(triggered()),
123             this, SLOT(showConnectDialog()));
124     connect(disconnect_action, SIGNAL(triggered()),
125             this, SLOT(disconnectFromHost()));
126     connect(show_toolbar, SIGNAL(toggled(bool)),
127             toolbar, SLOT(setVisible(bool)));
128     connect(show_toolbar, SIGNAL(toggled(bool)),
129             this, SLOT(updateScreenSpaceDelayed()));
130 #ifdef Q_WS_MAEMO_5
131     QDBusConnection::systemBus().connect("", MCE_SIGNAL_PATH, MCE_SIGNAL_IF, MCE_DISPLAY_SIG,
132                                          this, SLOT(displayStateChanged(QString)));
133 #endif
134
135     setCentralWidget(scroll_area);
136
137     FullScreenExitButton* fullscreen_exit_button = new FullScreenExitButton(this);
138     connect(fullscreen_exit_button, SIGNAL(clicked()),
139             this, SLOT(toggleFullscreen()));
140
141     grabZoomKeys(true);
142     reloadSettings();
143
144     if(url.isEmpty() and listen_port == 0) {
145         disconnect_action->setEnabled(false);
146         showConnectDialog();
147     } else {
148         connectToHost(url, quality, listen_port, view_only);
149     }
150 }
151
152 void MainWindow::grabZoomKeys(bool grab)
153 {
154 #ifdef Q_WS_MAEMO_5
155     unsigned long val = (grab)?1:0;
156     Atom atom = XInternAtom(QX11Info::display(), "_HILDON_ZOOM_KEY_ATOM", False);
157     if(!atom) {
158         qWarning("Couldn't get zoom key atom");
159         return;
160     }
161     XChangeProperty(QX11Info::display(), winId(), atom, XA_INTEGER,
162                     32, PropModeReplace, reinterpret_cast<unsigned char *>(&val), 1);
163 #endif
164 }
165
166 void MainWindow::closeEvent(QCloseEvent*)
167 {
168     grabZoomKeys(false);
169
170     QSettings settings;
171     settings.setValue("show_toolbar", show_toolbar->isChecked());
172     settings.setValue("zoomlevel", zoom_slider->value());
173     settings.sync();
174
175     hide();
176
177     disconnectFromHost();
178 }
179
180 void MainWindow::about()
181 {
182     QMessageBox::about(this, tr("About Presence VNC"),
183                        tr("<center><h1>Presence VNC 0.8</h1>\
184                 <p>A touchscreen friendly VNC client</p>\
185                 <p><a href=\"http://presencevnc.garage.maemo.org/\">http://presencevnc.garage.maemo.org/</a></p></center>\
186                 <small><p>&copy;2010 Christian Pulvermacher &lt;pulvermacher@gmx.de&gt;<br />\
187                 Based on KRDC, &copy; 2007-2008 Urs Wolfer<br />\
188                 and LibVNCServer, &copy; 2001-2003 Johannes E. Schindelin</p>\
189                 <p>This program is free software; License: <a href=\"http://www.gnu.org/licenses/gpl-2.0.html\">GNU GPL 2</a> or later.</p></small>"));
190 }
191
192 void MainWindow::showConnectDialog()
193 {
194     ConnectDialog *connect_dialog = new ConnectDialog(this);
195     connect(connect_dialog, SIGNAL(connectToHost(QString, int, int, bool)),
196             this, SLOT(connectToHost(QString, int, int, bool)));
197     connect_dialog->exec();
198     //ConnectDialog cleans up after itself
199 }
200
201 void MainWindow::connectToHost(QString url, int quality, int listen_port, bool view_only)
202 {
203     disconnectFromHost();
204
205     vnc_view = new VncView(this, url, RemoteView::Quality(quality), listen_port);
206     vnc_view->setViewOnly(view_only);
207
208     connect(vnc_view, SIGNAL(statusChanged(RemoteView::RemoteStatus)),
209             this, SLOT(statusChanged(RemoteView::RemoteStatus)));
210     scroll_area->setWidget(vnc_view);
211     vnc_view->start();
212     setWindowTitle(QString("Presence VNC - %1").arg(vnc_view->host()) + (view_only?tr(" [View Only]"):""));
213
214     disconnect_action->setEnabled(true);
215
216     //reset key menu
217     delete key_menu;
218     key_menu = new KeyMenu(this);
219 }
220
221 void MainWindow::disconnectFromHost()
222 {
223     if(!vnc_view)
224         return;
225
226     setWindowTitle("Presence VNC");
227     disconnect_action->setEnabled(false);
228     toolbar->setEnabled(false);
229     scroll_area->setWidget(0);
230
231     delete vnc_view;
232     vnc_view = 0;
233 }
234
235 void MainWindow::statusChanged(RemoteView::RemoteStatus status)
236 {
237     static RemoteView::RemoteStatus old_status = RemoteView::Disconnected;
238
239     switch(status) {
240     case RemoteView::Connecting:
241 #ifdef Q_WS_MAEMO_5
242         setAttribute(Qt::WA_Maemo5ShowProgressIndicator, true);
243 #endif
244         break;
245     case RemoteView::Connected:
246 #ifdef Q_WS_MAEMO_5
247         setAttribute(Qt::WA_Maemo5ShowProgressIndicator, false);
248 #endif
249         toolbar->setEnabled(true);
250
251         //disable key input buttons in view only mode
252         input_toolbuttons->setEnabled(!vnc_view->viewOnly());
253
254         vnc_view->setZoomLevel(zoom_slider->value());
255         vnc_view->useFastTransformations(false);
256         vnc_view->update();
257         break;
258     case RemoteView::Disconnecting:
259         if(old_status == RemoteView::Disconnected) //Disconnecting also occurs while connecting, so check last state
260             break;
261
262         if(disconnect_action->isEnabled()) //don't show when manually disconnecting
263             scroll_area->showMessage(tr("Connection lost"));
264
265         //clean up
266         scroll_area->setWidget(0);
267         vnc_view = 0;
268         setWindowTitle("Presence VNC");
269         disconnect_action->setEnabled(false);
270         toolbar->setEnabled(false);
271
272         //exit fullscreen mode
273         if(windowState() & Qt::WindowFullScreen)
274             setWindowState(windowState() ^ Qt::WindowFullScreen);
275         break;
276     case RemoteView::Disconnected:
277 #ifdef Q_WS_MAEMO_5
278         setAttribute(Qt::WA_Maemo5ShowProgressIndicator, false);
279 #endif
280         if(old_status == RemoteView::Disconnecting) {
281             scroll_area->setWidget(0); //remove widget
282         }
283         break;
284     default: //avoid compiler warnings
285         break;
286     }
287
288     old_status = status;
289 }
290
291 //updates available screen space for current zoom level
292 //necessary when rotating, showing fullscreen, etc.
293 void MainWindow::updateScreenSpace()
294 {
295     if(vnc_view) {
296         vnc_view->setZoomLevel();
297     }
298 }
299
300 void MainWindow::updateScreenSpaceDelayed()
301 {
302     QTimer::singleShot(500, this, SLOT(updateScreenSpace()));
303 }
304
305 void MainWindow::toggleFullscreen()
306 {
307     bool in_fullscreen = windowState() & Qt::WindowFullScreen;
308
309     //hide menu/toolbar in fullscreen (new state is !in_fullscreen)
310     toolbar->setVisible(show_toolbar->isChecked() and in_fullscreen);
311
312 #ifndef Q_WS_MAEMO_5
313     //menu bar is invisible by default on maemo
314     menuBar()->setVisible(in_fullscreen);
315 #endif
316
317     setWindowState(windowState() ^ Qt::WindowFullScreen);
318     updateScreenSpaceDelayed();
319 }
320
321 void MainWindow::showKeyMenu()
322 {
323     key_menu->exec();
324     vnc_view->sendKeySequence(key_menu->getKeySequence());
325     key_menu_button->setChecked(key_menu->isAltChecked() or key_menu->isWinChecked());
326 }
327
328 void MainWindow::showPreferences()
329 {
330     Preferences *p = new Preferences(this);
331     p->exec();
332     delete p;
333
334     reloadSettings();
335 }
336
337 void MainWindow::reloadSettings()
338 {
339     QSettings settings;
340     zoom_to_cursor = settings.value("zoom_to_cursor", true).toBool();
341
342 #ifdef Q_WS_MAEMO_5
343     int rotation = settings.value("screen_rotation", 0).toInt();
344     setAttribute(Qt::WA_Maemo5AutoOrientation, rotation == 0);
345     setAttribute(Qt::WA_Maemo5LandscapeOrientation, rotation == 1);
346     setAttribute(Qt::WA_Maemo5PortraitOrientation, rotation == 2);
347 #endif
348
349     if(vnc_view)
350         vnc_view->reloadSettings();
351 }
352
353 void MainWindow::resizeEvent(QResizeEvent *event)
354 {
355     QMainWindow::resizeEvent(event);
356
357     updateScreenSpace();
358     if(vnc_view)
359         vnc_view->setZoomLevel(zoom_slider->value());
360
361 #ifdef Q_WS_MAEMO_5
362     //hide zoom slider in portrait mode
363     zoom_slider->setVisible(height() < width());
364 #endif
365 }
366
367 void MainWindow::showInputPanel()
368 {
369 #ifdef Q_WS_MAEMO_5
370     //TODO: when hardware keyboard is open, this will only cause the IM to mess up 'real' key events
371     vnc_view->setAttribute(Qt::WA_InputMethodEnabled, true);
372     vnc_view->setInputMethodHints(Qt::ImhNoAutoUppercase); //without this, IM starts with caps lock
373
374     QEvent event(QEvent::RequestSoftwareInputPanel);
375     QApplication::sendEvent(vnc_view, &event);
376 #endif
377 }
378
379 void MainWindow::setZoomLevel(int level)
380 {
381     if(!vnc_view)
382         return;
383
384     const qreal old_factor = vnc_view->zoomFactor();
385     QPoint center = vnc_view->visibleRegion().boundingRect().center();
386
387     vnc_view->setZoomLevel(level);
388
389     const qreal new_factor = vnc_view->zoomFactor();
390
391     //scroll to center, if zoom level actually changed
392     if(old_factor != new_factor) {
393         if(zoom_to_cursor)
394             center = new_factor * vnc_view->cursorPosition();
395         else //zoom to center of visible region
396             center = center * (double(new_factor)/old_factor);
397
398         scroll_area->ensureVisible(center.x(), center.y(),
399                                    vnc_view->visibleRegion().boundingRect().width()/2,
400                                    vnc_view->visibleRegion().boundingRect().height()/2);
401
402         vnc_view->useFastTransformations(zoom_slider->isSliderDown());
403         vnc_view->update();
404
405         scroll_area->showMessage(tr("Zoom: %1\%").arg(qRound(100*new_factor)));
406     }
407 }
408
409 void MainWindow::zoomSliderReleased()
410 {
411     static QTime time;
412     if(!time.isNull() and time.elapsed() < 500) //double clicked
413         zoom_slider->setValue(95); //100%
414
415     time.restart();
416
417     //stopped zooming, reenable high quality
418     vnc_view->useFastTransformations(false);
419 }
420
421 void MainWindow::displayStateChanged(QString state)
422 {
423     const bool display_on = (state != "off");
424     if(vnc_view)
425         vnc_view->setDisplayOff(!display_on);
426 }
427
428 void MainWindow::sendTab() { vnc_view->sendKey(Qt::Key_Tab); }
429 void MainWindow::sendEsc() { vnc_view->sendKey(Qt::Key_Escape); }
430 void MainWindow::sendPgUp() { vnc_view->sendKey(Qt::Key_PageUp); }
431 void MainWindow::sendPgDn() { vnc_view->sendKey(Qt::Key_PageDown); }
432 void MainWindow::sendReturn() { vnc_view->sendKey(Qt::Key_Return); }