Rabbit Remote Control 0.0.32
Loading...
Searching...
No Matches
mainwindow.cpp
1// Author: Kang Lin <kl222@126.com>
2
3#include "mainwindow.h"
4#include "ui_mainwindow.h"
5#ifdef HAVE_UPDATE
6#include "FrmUpdater.h"
7#endif
8#include "RabbitCommonDir.h"
9#include "RabbitCommonTools.h"
10
11#ifdef HAVE_ABOUT
12#include "DlgAbout.h"
13#endif
14#ifdef BUILD_QUIWidget
15#include "QUIWidget/QUIWidget.h"
16#endif
17
18#include "Connecter.h"
19#include "FrmFullScreenToolBar.h"
20#include "ParameterDlgSettings.h"
21#include "FrmListConnects.h"
22
23#ifdef HAVE_ICE
24#include "Ice.h"
25#endif
26
27#include <QGridLayout>
28#include <QMessageBox>
29#include <QCheckBox>
30#include <QScreen>
31#include <QApplication>
32#include <QDebug>
33#include <QDesktopServices>
34#include <QWidgetAction>
35#include <QMouseEvent>
36#include <QDrag>
37#include <QMimeData>
38#include <QKeySequence>
39#include <QPushButton>
40#include <QDateTime>
41#include <QFileDialog>
42#include <QLoggingCategory>
43#include <QThread>
44
45static Q_LOGGING_CATEGORY(log, "App.MainWindow")
46static Q_LOGGING_CATEGORY(logRecord, "App.MainWindow.Record")
47
48MainWindow::MainWindow(QWidget *parent)
49 : QMainWindow(parent),
50 m_pActionConnecterMenu(nullptr),
51 m_pDockListConnects(nullptr),
52 m_pSignalStatus(nullptr),
53 ui(new Ui::MainWindow),
54 m_pView(nullptr),
55 m_pFullScreenToolBar(nullptr),
56 m_pRecentMenu(nullptr),
57 m_pDockFavorite(nullptr),
58 m_pFavoriteView(nullptr)
59{
60 bool check = false;
61
62 ui->setupUi(this);
63
64 setFocusPolicy(Qt::NoFocus);
65 //addToolBar(Qt::LeftToolBarArea, ui->toolBar);
66 setAcceptDrops(true);
67
68 m_pDockFavorite = new QDockWidget(this);
69 if(m_pDockFavorite)
70 {
71 m_pFavoriteView = new CFavoriteView(m_pDockFavorite);
72 if(m_pFavoriteView)
73 {
74 m_pDockFavorite->setTitleBarWidget(m_pFavoriteView->m_pDockTitleBar);
75 check = connect(m_pFavoriteView, SIGNAL(sigConnect(const QString&, bool)),
76 this, SLOT(slotOpenFile(const QString&, bool)));
77 Q_ASSERT(check);
78 check = connect(m_pFavoriteView, SIGNAL(sigFavorite()),
79 this, SLOT(on_actionAdd_to_favorite_triggered()));
80 Q_ASSERT(check);
81 check = connect(&m_Parameter, SIGNAL(sigFavoriteEditChanged(bool)),
82 m_pFavoriteView, SLOT(slotDoubleEditNode(bool)));
83 Q_ASSERT(check);
84 m_pDockFavorite->setWidget(m_pFavoriteView);
85 m_pDockFavorite->setWindowTitle(m_pFavoriteView->windowTitle());
86 }
87 // Must set ObjectName then restore it. See: saveState help document
88 m_pDockFavorite->setObjectName("dockFavorite");
89 //m_pDockFavorite->hide();
90 ui->menuView->addAction(m_pDockFavorite->toggleViewAction());
91 addDockWidget(Qt::DockWidgetArea::LeftDockWidgetArea, m_pDockFavorite);
92 }
93
94 m_pDockListConnects = new QDockWidget(this);
95 if(m_pDockListConnects)
96 {
97 CFrmListConnects* pListConnects = new CFrmListConnects(&m_Client, true, m_pDockListConnects);
98 if(pListConnects) {
99 if(pListConnects->m_pDockTitleBar)
100 m_pDockListConnects->setTitleBarWidget(pListConnects->m_pDockTitleBar);
101 check = connect(pListConnects, SIGNAL(sigConnect(const QString&, bool)),
102 this, SLOT(slotOpenFile(const QString&, bool)));
103 Q_ASSERT(check);
104 m_pDockListConnects->setWidget(pListConnects);
105 m_pDockListConnects->setWindowTitle(pListConnects->windowTitle());
106 }
107 // Must set ObjectName then restore it. See: saveState help document
108 m_pDockListConnects->setObjectName("dockListConnects");
109 //m_pDockListConnects->hide();
110 ui->menuView->addAction(m_pDockListConnects->toggleViewAction());
111 tabifyDockWidget(m_pDockFavorite, m_pDockListConnects);
112 }
113
114 RabbitCommon::CTools::AddStyleMenu(ui->menuTools);
115 ui->menuTools->addMenu(RabbitCommon::CTools::GetLogMenu(this));
116
117 m_pRecentMenu = new RabbitCommon::CRecentMenu(tr("Recently connected"),
118 QIcon::fromTheme("document-open-recent"),
119 this);
120 check = connect(m_pRecentMenu, SIGNAL(recentFileTriggered(const QString&)),
121 this, SLOT(slotOpenFile(const QString&)));
122 Q_ASSERT(check);
123 check = connect(&m_Parameter, SIGNAL(sigRecentMenuMaxCountChanged(int)),
124 m_pRecentMenu, SLOT(setMaxCount(int)));
125 Q_ASSERT(check);
126 QAction* pRecentAction = ui->menuRemote->insertMenu(
127 ui->actionOpenListConnections, m_pRecentMenu);
128 pRecentAction->setStatusTip(pRecentAction->text());
129 QToolButton* tbRecent = new QToolButton(ui->toolBar);
130 tbRecent->setFocusPolicy(Qt::NoFocus);
131 tbRecent->setPopupMode(QToolButton::InstantPopup);
132 tbRecent->setMenu(m_pRecentMenu);
133 tbRecent->setIcon(pRecentAction->icon());
134 tbRecent->setText(pRecentAction->text());
135 tbRecent->setToolTip(pRecentAction->toolTip());
136 tbRecent->setStatusTip(pRecentAction->statusTip());
137 ui->toolBar->insertWidget(ui->actionOpenListConnections, tbRecent);
138
139#ifdef HAVE_UPDATE
140 CFrmUpdater updater;
141 ui->actionUpdate->setIcon(updater.windowIcon());
142#endif
143
144 QToolButton* tbConnect = new QToolButton(ui->toolBar);
145 tbConnect->setFocusPolicy(Qt::NoFocus);
146 tbConnect->setPopupMode(QToolButton::InstantPopup);
147 //tbConnect->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
148 tbConnect->setMenu(ui->menuConnect_C);
149 tbConnect->setIcon(QIcon::fromTheme("network-wired"));
150 tbConnect->setText(tr("Connect"));
151 tbConnect->setToolTip(tr("Connect"));
152 tbConnect->setStatusTip(tr("Connect"));
153 m_pActionConnect = ui->toolBar->insertWidget(ui->actionDisconnect_D, tbConnect);
154
155 EnableMenu(false);
156
157 //TODO: Change view
158 m_pView = new CViewTable(this);
159 if(m_pView)
160 {
161 m_pView->setFocusPolicy(Qt::NoFocus);
162 check = connect(m_pView, SIGNAL(sigCloseView(const QWidget*)),
163 this, SLOT(slotCloseView(const QWidget*)));
164 Q_ASSERT(check);
165
166 check = connect(m_pView, SIGNAL(sigCurrentChanged(const QWidget*)),
167 this, SLOT(slotCurrentViewChanged(const QWidget*)));
168 Q_ASSERT(check);
169 check = connect(m_pView, SIGNAL(customContextMenuRequested(const QPoint&)),
170 this, SLOT(slotCustomContextMenuRequested(const QPoint&)));
171 Q_ASSERT(check);
172 this->setCentralWidget(m_pView);
173 }
174
175 m_Client.EnumPlugins(this);
176 m_Client.LoadSettings();
177
178 check = connect(&m_Parameter, SIGNAL(sigReceiveShortCutChanged()),
179 this, SLOT(slotShortCut()));
180 Q_ASSERT(check);
181 check = connect(&m_Parameter, SIGNAL(sigSystemTrayIconTypeChanged()),
182 this,
183 SLOT(slotSystemTrayIconTypeChanged()));
184 Q_ASSERT(check);
185 check = connect(&m_Parameter, SIGNAL(sigEnableSystemTrayIcon()),
186 this, SLOT(slotEnableSystemTrayIcon()));
187 Q_ASSERT(check);
188 check = connect(&m_Parameter, SIGNAL(sigEnableTabToolTipChanged()),
189 this, SLOT(slotUpdateName()));
190 Q_ASSERT(check);
191 check = connect(&m_Parameter, SIGNAL(sigEnableTabIconChanged()),
192 this, SLOT(slotUpdateName()));
193 Q_ASSERT(check);
194 m_Parameter.Load();
195 slotShortCut();
196#ifdef HAVE_ICE
197 if(CICE::Instance()->GetSignal())
198 {
199 check = connect(CICE::Instance()->GetSignal().data(),
200 SIGNAL(sigConnected()),
201 this, SLOT(slotSignalConnected()));
202 Q_ASSERT(check);
203 check = connect(CICE::Instance()->GetSignal().data(),
204 SIGNAL(sigDisconnected()),
205 this, SLOT(slotSignalDisconnected()));
206 Q_ASSERT(check);
207 check = connect(CICE::Instance()->GetSignal().data(),
208 SIGNAL(sigError(const int, const QString&)),
209 this, SLOT(slotSignalError(const int, const QString&)));
210 Q_ASSERT(check);
211 }
212 CICE::Instance()->slotStart();
213 m_pSignalStatus = new QPushButton();
214 m_pSignalStatus->setToolTip(tr("ICE signal status"));
215 m_pSignalStatus->setStatusTip(m_pSignalStatus->toolTip());
216 m_pSignalStatus->setWhatsThis(m_pSignalStatus->toolTip());
217 slotSignalDisconnected();
218 statusBar()->addPermanentWidget(m_pSignalStatus);
219#endif
220
221 if(m_Parameter.GetSaveMainWindowStatus())
222 {
223 QSettings set(RabbitCommon::CDir::Instance()->GetFileUserConfigure(),
224 QSettings::IniFormat);
225 QByteArray geometry
226 = set.value("MainWindow/Status/Geometry").toByteArray();
227 if(!geometry.isEmpty())
228 restoreGeometry(geometry);
229 QByteArray state = set.value("MainWindow/Status/State").toByteArray();
230 if(!state.isEmpty())
231 restoreState(state);
232
233 ui->actionStatus_bar_S->setChecked(m_Parameter.GetStatusBar());
234 statusBar()->setVisible(m_Parameter.GetStatusBar());
235 ui->actionTabBar_B->setChecked(m_Parameter.GetTabBar());
236 on_actionMain_menu_bar_M_toggled(m_Parameter.GetMenuBar());
237 ui->actionMain_menu_bar_M->setChecked(m_Parameter.GetMenuBar());
238 ui->actionToolBar_T->setChecked(!ui->toolBar->isHidden());
239 }
240
241 slotEnableSystemTrayIcon();
242
243 LoadConnectLasterClose();
244}
245
246MainWindow::~MainWindow()
247{
248 qDebug(log) << "MainWindow::~MainWindow()";
249 if(m_pFullScreenToolBar) m_pFullScreenToolBar->close();
250 delete ui;
251}
252
253void MainWindow::on_actionAbout_triggered()
254{
255#ifdef HAVE_ABOUT
256 CDlgAbout *about = new CDlgAbout(this);
257 QIcon icon = QIcon::fromTheme("app");
258 if(!icon.isNull()) {
259 auto sizeList = icon.availableSizes();
260 if(!sizeList.isEmpty()) {
261 QPixmap p = icon.pixmap(*sizeList.begin());
262 about->m_AppIcon = p.toImage();
263 }
264 }
265 about->m_szCopyrightStartTime = "2020";
266 about->m_szVersionRevision = RabbitRemoteControl_REVISION;
267 about->m_szDetails = m_Client.Details();
268 RC_SHOW_WINDOW(about);
269#endif
270}
271
272void MainWindow::on_actionUpdate_triggered()
273{
274#ifdef HAVE_UPDATE
275 CFrmUpdater* m_pfrmUpdater = new CFrmUpdater();
276 QIcon icon = QIcon::fromTheme("app");
277 if(!icon.isNull()) {
278 auto sizeList = icon.availableSizes();
279 if(!sizeList.isEmpty()) {
280 QPixmap p = icon.pixmap(*sizeList.begin());
281 m_pfrmUpdater->SetTitle(p.toImage());
282 }
283 }
284 m_pfrmUpdater->SetInstallAutoStartup();
285 RC_SHOW_WINDOW(m_pfrmUpdater);
286#endif
287}
288
289void MainWindow::on_actionFull_screen_F_triggered()
290{
291 CView* pTab = qobject_cast<CView*>(this->centralWidget());
292 if(pTab)
293 {
294 pTab->SetFullScreen(!isFullScreen());
295 }
296
297 if(isFullScreen())
298 {
299 qDebug(log) << "Exit full screen";
300 ui->actionFull_screen_F->setIcon(QIcon::fromTheme("view-fullscreen"));
301 ui->actionFull_screen_F->setText(tr("Full screen(&F)"));
302 ui->actionFull_screen_F->setToolTip(tr("Full screen"));
303 ui->actionFull_screen_F->setStatusTip(tr("Full screen"));
304 ui->actionFull_screen_F->setWhatsThis(tr("Full screen"));
305
306 ui->toolBar->setVisible(m_FullState.toolBar);
307 ui->statusbar->setVisible(m_FullState.statusbar);
308 ui->menubar->setVisible(m_FullState.menubar);
309
310 m_pDockListConnects->setVisible(m_FullState.dockListConnects);
311 m_pDockFavorite->setVisible(m_FullState.dockFavorite);
312 // This is hade code. it is in RabbitCommon
313 QDockWidget* pDockDebugLog = findChild<QDockWidget*>("dockDebugLog");
314 if(pDockDebugLog)
315 {
316 pDockDebugLog->setVisible(m_FullState.dockDebugLog);
317 }
318
319 if(m_pFullScreenToolBar)
320 {
321 // Delete it when the widget is close
322 m_pFullScreenToolBar->close();
323 m_pFullScreenToolBar = nullptr;
324 }
325
326 emit sigShowNormal();
327 this->showNormal();
328 this->activateWindow();
329
330 return;
331 }
332
333 qDebug(log) << "Entry full screen";
334 emit sigFullScreen();
335 //setWindowFlags(Qt::FramelessWindowHint | windowFlags());
336 this->showFullScreen();
337
338 ui->actionFull_screen_F->setIcon(QIcon::fromTheme("view-restore"));
339 ui->actionFull_screen_F->setText(tr("Exit full screen(&E)"));
340 ui->actionFull_screen_F->setToolTip(tr("Exit full screen"));
341 ui->actionFull_screen_F->setStatusTip(tr("Exit full screen"));
342 ui->actionFull_screen_F->setWhatsThis(tr("Exit full screen"));
343
344 m_FullState.toolBar = ui->toolBar->isVisible();
345 ui->toolBar->setVisible(false);
346 m_FullState.statusbar = ui->statusbar->isVisible();
347 ui->statusbar->setVisible(false);
348 m_FullState.menubar = ui->menubar->isVisible();
349 ui->menubar->setVisible(false);
350
351 m_FullState.dockListConnects = m_pDockListConnects->isVisible();
352 m_pDockListConnects->setVisible(false);
353 m_FullState.dockFavorite = m_pDockFavorite->isVisible();
354 m_pDockFavorite->setVisible(false);
355 // This is hade code. it is in RabbitCommon
356 QDockWidget* pDockDebugLog = findChild<QDockWidget*>("dockDebugLog");
357 if(pDockDebugLog)
358 {
359 m_FullState.dockDebugLog = pDockDebugLog->isVisible();
360 pDockDebugLog->setVisible(false);
361 }
362
363 if(m_pFullScreenToolBar) m_pFullScreenToolBar->close();
364 // Delete it when the widget is close
365 m_pFullScreenToolBar = new CFrmFullScreenToolBar(this);
366 QScreen* pScreen = qApp->primaryScreen();
367 if(pScreen) {
368 QPoint pos(pScreen->geometry().left()
369 + (pScreen->geometry().width()
370 - m_pFullScreenToolBar->frameGeometry().width()) / 2,
371 pScreen->geometry().top());
372 qDebug(log) << "Primary screen geometry:" << pScreen->geometry()
373 << "availableGeometry:" << pScreen->availableGeometry()
374 << pos << mapToGlobal(pos);
375 m_pFullScreenToolBar->move(pos);
376 }
377 bool check = connect(m_pFullScreenToolBar, SIGNAL(sigExitFullScreen()),
378 this, SLOT(on_actionFull_screen_F_triggered()));
379 Q_ASSERT(check);
380 check = connect(m_pFullScreenToolBar, SIGNAL(sigExit()),
381 this, SLOT(on_actionExit_E_triggered()));
382 Q_ASSERT(check);
383 check = connect(m_pFullScreenToolBar, SIGNAL(sigDisconnect()),
384 this, SLOT(on_actionDisconnect_D_triggered()));
385 Q_ASSERT(check);
386 check = connect(this, SIGNAL(sigConnecterMenuChanged(QAction*)),
387 m_pFullScreenToolBar,
388 SLOT(slotConnecterMenuChanged(QAction*)));
389 Q_ASSERT(check);
390 CViewTable* p = dynamic_cast<CViewTable*>(pTab);
391 if(p)
392 {
393 check = connect(m_pFullScreenToolBar, SIGNAL(sigShowTabBar(bool)),
394 SLOT(on_actionTabBar_B_toggled(bool)));
395 Q_ASSERT(check);
396 }
397
398 m_pFullScreenToolBar->show();
399}
400
401void MainWindow::slotCurrentViewChanged(const QWidget* pView)
402{
403 qDebug(log) << Q_FUNC_INFO;
404 if(m_pView && pView)
405 EnableMenu(true);
406 else
407 EnableMenu(false);
408}
409
410void MainWindow::EnableMenu(bool bEnable)
411{
412 qDebug(log) << Q_FUNC_INFO << bEnable;
413 ui->actionClone->setEnabled(bEnable);
414 ui->actionAdd_to_favorite->setEnabled(bEnable);
415 ui->actionDisconnect_D->setEnabled(bEnable);
416 slotLoadConnecterMenu();
417}
418
419void MainWindow::slotLoadConnecterMenu()
420{
421 qDebug(log) << Q_FUNC_INFO;
422
423 if(m_pActionConnecterMenu) {
424 ui->menuTools->removeAction(m_pActionConnecterMenu);
425 ui->toolBar->removeAction(m_pActionConnecterMenu);
426 m_pActionConnecterMenu = nullptr;
427 }
428
429 if(!m_pView)
430 return;
431 auto pWin = m_pView->GetCurrentView();
432 if(!pWin) {
433 qDebug(log) << "The current view is empty";
434 return;
435 }
436 foreach(auto c, m_Connecters)
437 {
438 if(c->GetViewer() == pWin)
439 {
440 qDebug(log) << "Load plugin menu";
441 auto m = c->GetMenu(ui->menuTools);
442 if(!m) return;
443 m_pActionConnecterMenu = ui->menuTools->addMenu(m);
444 ui->toolBar->insertAction(ui->actionFull_screen_F, m_pActionConnecterMenu);
445 emit sigConnecterMenuChanged(m_pActionConnecterMenu);
446 }
447 }
448}
449
450void MainWindow::slotCustomContextMenuRequested(const QPoint &pos)
451{
452 if(!m_pView)
453 return;
454 auto pWin = m_pView->GetCurrentView();
455 if(!pWin) {
456 qDebug(log) << "The current view is empty";
457 return;
458 }
459 foreach(auto c, m_Connecters)
460 {
461 if(c->GetViewer() == pWin)
462 {
463 qDebug(log) << "Load plugin menu";
464 auto m = c->GetMenu(ui->menuTools);
465 if(!m) return;
466 m->exec(m_pView->mapToGlobal(pos));
467 }
468 }
469}
470
471void MainWindow::on_actionExit_E_triggered()
472{
473 close();
474}
475
476void MainWindow::keyReleaseEvent(QKeyEvent *event)
477{
478 switch(event->key())
479 {
480 case Qt::Key_Escape:
481 if(isFullScreen())
482 on_actionFull_screen_F_triggered();
483 break;
484 }
485 QMainWindow::keyReleaseEvent(event);
486}
487
488void MainWindow::slotUpdateParameters(CConnecter* pConnecter)
489{
490 auto it = m_ConfigureFiles.find(pConnecter);
491 if(m_ConfigureFiles.end() == it)
492 return;
493 m_Client.SaveConnecter(it.value(), pConnecter);
494}
495
496void MainWindow::on_actionClone_triggered()
497{
498 if(!m_pView) return;
499 QWidget* p = m_pView->GetCurrentView();
500 foreach(auto c, m_Connecters)
501 {
502 if(c->GetViewer() == p)
503 {
504 auto it = m_ConfigureFiles.find(c);
505 if(m_ConfigureFiles.end() == it)
506 return;
507 QString szFile = it.value();
508 auto pConnecter = m_Client.LoadConnecter(szFile);
509 if(!pConnecter) return;
510 Connect(pConnecter, false, szFile);
511 return;
512 }
513 }
514}
515
516void MainWindow::slotOpenFile(const QString& szFile, bool bOpenSettings)
517{
518 if(szFile.isEmpty()) return;
519 CConnecter* p = m_Client.LoadConnecter(szFile);
520 if(nullptr == p)
521 {
522 slotInformation(tr("Load file fail: ") + szFile);
523 return;
524 }
525
526 Connect(p, bOpenSettings, szFile);
527}
528
529void MainWindow::on_actionOpenRRCFile_triggered()
530{
531 QString szFile = QFileDialog::getOpenFileName(this,
532 tr("Open rabbit remote control file"),
533 RabbitCommon::CDir::Instance()->GetDirUserData(),
534 tr("Rabbit remote control Files (*.rrc);;All files(*.*)"));
535 if(szFile.isEmpty()) return;
536
537 CConnecter* p = m_Client.LoadConnecter(szFile);
538 if(nullptr == p)
539 {
540 slotInformation(tr("Load file fail: ") + szFile);
541 return;
542 }
543
544 Connect(p, true);
545}
546
547void MainWindow::slotConnect()
548{
549 if(nullptr == m_pView)
550 {
551 Q_ASSERT(false);
552 return;
553 }
554 QAction* pAction = dynamic_cast<QAction*>(this->sender());
555 CConnecter* p = m_Client.CreateConnecter(pAction->data().toString());
556 if(nullptr == p) return;
557 Connect(p, true);
558}
559
570int MainWindow::Connect(CConnecter *p, bool set, QString szFile)
571{
572 qDebug(log) << "MainWindow::Connect: set:" << set << "; File:" << szFile;
573 bool bSave = false; //whether is save configure file
574 Q_ASSERT(p);
575 bool check = connect(p, SIGNAL(sigConnected()),
576 this, SLOT(slotConnected()));
577 Q_ASSERT(check);
578 check = connect(p, SIGNAL(sigDisconnect()),
579 this, SLOT(slotDisconnect()));
580 Q_ASSERT(check);
581 check = connect(p, SIGNAL(sigDisconnected()),
582 this, SLOT(slotDisconnected()));
583 Q_ASSERT(check);
584 check = connect(p, SIGNAL(sigError(const int, const QString &)),
585 this, SLOT(slotError(const int, const QString&)));
586 Q_ASSERT(check);
587 check = connect(p, SIGNAL(sigShowMessageBox(const QString&, const QString&,
588 const QMessageBox::Icon&)),
589 this, SLOT(slotShowMessageBox(const QString&, const QString&,
590 const QMessageBox::Icon&)));
591 Q_ASSERT(check);
592 check = connect(p, SIGNAL(sigInformation(const QString&)),
593 this, SLOT(slotInformation(const QString&)));
594 Q_ASSERT(check);
595 check = connect(p, SIGNAL(sigUpdateName(const QString&)),
596 this, SLOT(slotUpdateName(const QString&)));
597 Q_ASSERT(check);
598 check = connect(p, SIGNAL(sigUpdateParameters(CConnecter*)),
599 this, SLOT(slotUpdateParameters(CConnecter*)));
600 Q_ASSERT(check);
601
602 if(set)
603 {
604 int nRet = p->OpenDialogSettings(this);
605 switch(nRet)
606 {
607 case QDialog::Rejected:
608 m_Client.DeleteConnecter(p);
609 return 0;
610 case QDialog::Accepted:
611 bSave = true;
612 break;
613 }
614 }
615
616 if(szFile.isEmpty())
617 szFile = RabbitCommon::CDir::Instance()->GetDirUserData()
618 + QDir::separator()
619 + p->Id()
620 + ".rrc";
621 m_ConfigureFiles[p] = szFile;
622
623 int nRet = 0;
624 if(bSave)
625 nRet = m_Client.SaveConnecter(szFile, p);
626 if(0 == nRet)
627 m_pRecentMenu->addRecentFile(szFile, p->Name());
628
629 if(!p->Name().isEmpty())
630 slotInformation(tr("Connecting to ") + p->Name());
631
632 //* Show view. \see: slotConnected()
633 if(m_pView)
634 {
635 m_pView->AddView(p->GetViewer());
636 m_pView->SetWidowsTitle(p->GetViewer(), p->Name(), p->Icon(), p->Description());
637 //qDebug(log) << "View:" << p->GetViewer();
638 }
639
640 m_Connecters.push_back(p);//*/
641
642 p->Connect();
643
644 return 0;
645}
646
648
652{
653 CConnecter* p = dynamic_cast<CConnecter*>(sender());
654 if(!p) return;
655
656 /* If you put it here, when connected, the view is not displayed.
657 So put it in the connect() display view.
658 See: Connect(CConnecter *p, bool set, QString szFile)
659 */
660 /*
661 if(m_pView)
662 {
663 m_pView->SetAdaptWindows(CFrmViewer::Auto, p->GetViewer());
664 m_pView->AddView(p->GetViewer());
665 m_pView->SetWidowsTitle(p->GetViewer(), p->Name(), p->Icon(), p->Description());
666 }
667 m_Connecters.push_back(p);//*/
668
669 slotLoadConnecterMenu();
670
671 slotInformation(tr("Connected to ") + p->Name());
672 qDebug(log) << "MainWindow::slotConnected()" << p->Name();
673}
675
676void MainWindow::slotCloseView(const QWidget* pView)
677{
678 qDebug(log) << "MainWindow::slotCloseView" << pView;
679 if(!pView) return;
680 foreach(auto c, m_Connecters)
681 {
682 if(c->GetViewer() == pView)
683 {
684 //TODO: Whether to save the setting
685 emit c->sigUpdateParameters(c);
686 c->DisConnect();
687 }
688 }
689}
690
691void MainWindow::on_actionDisconnect_D_triggered()
692{
693 qDebug(log) << "MainWindow::on_actionDisconnect_D_triggered()";
694 if(!m_pView) return;
695
696 QWidget* pView = m_pView->GetCurrentView();
697 slotCloseView(pView);
698}
699
700void MainWindow::slotDisconnect()
701{
702 qDebug(log) << "MainWindow::slotDisconnect()";
703 CConnecter* pConnecter = dynamic_cast<CConnecter*>(sender());
704 if(!pConnecter) return;
705 //TODO: Whether to save the setting
706 emit pConnecter->sigUpdateParameters(pConnecter);
707 pConnecter->DisConnect();
708}
709
710void MainWindow::slotDisconnected()
711{
712 qDebug(log) << "MainWindow::slotDisconnected()";
713 CConnecter* pConnecter = dynamic_cast<CConnecter*>(sender());
714 foreach(auto c, m_Connecters)
715 {
716 if(c == pConnecter)
717 {
718 m_pView->RemoveView(c->GetViewer());
719 m_Connecters.removeAll(c);
720 m_ConfigureFiles.remove(c);
721 m_Client.DeleteConnecter(c);
722 return;
723 }
724 }
725}
726
727void MainWindow::slotSignalConnected()
728{
729 m_pSignalStatus->setToolTip(tr("ICE signal status: Connected"));
730 m_pSignalStatus->setStatusTip(m_pSignalStatus->toolTip());
731 m_pSignalStatus->setWhatsThis(m_pSignalStatus->toolTip());
732 //m_pSignalStatus->setText(tr("Connected"));
733 m_pSignalStatus->setIcon(QIcon::fromTheme("newwork-wired"));
734}
735
736void MainWindow::slotSignalDisconnected()
737{
738 m_pSignalStatus->setToolTip(tr("ICE signal status: Disconnected"));
739 m_pSignalStatus->setStatusTip(m_pSignalStatus->toolTip());
740 m_pSignalStatus->setWhatsThis(m_pSignalStatus->toolTip());
741 //m_pSignalStatus->setText(tr("Disconnected"));
742 m_pSignalStatus->setIcon(QIcon::fromTheme("network-wireless"));
743}
744
745void MainWindow::slotSignalError(const int nError, const QString &szInfo)
746{
747 slotSignalDisconnected();
748 slotInformation(szInfo);
749}
750
751void MainWindow::slotSignalPushButtonClicked(bool checked)
752{
753#ifdef HAVE_ICE
754 if(checked)
755 CICE::Instance()->slotStart();
756 else
757 CICE::Instance()->slotStop();
758#endif
759}
760
761void MainWindow::slotError(const int nError, const QString &szInfo)
762{
763 Q_UNUSED(nError);
764 slotInformation(szInfo);
765}
766
768 const QString &title, const QString &message,
769 const QMessageBox::Icon &icon)
770{
771 slotInformation(message);
772 if(!m_Parameter.GetMessageBoxDisplayInformation())
773 return;
774
775 QMessageBox msg(icon, title, message, QMessageBox::Ok, this);
776 QCheckBox* cb = new QCheckBox(
777 tr("Use message box to display information"), this);
778 cb->setChecked(true);
779 msg.setCheckBox(cb);
780 RC_SHOW_WINDOW(&msg);
781 if(!cb->isChecked())
782 {
783 m_Parameter.SetMessageBoxDisplayInformation(false);
784 m_Parameter.Save();
785 }
786}
787
788void MainWindow::slotInformation(const QString& szInfo)
789{
790 statusBar()->showMessage(szInfo);
791}
792
793void MainWindow::slotUpdateName()
794{
795 foreach (auto pConnecter, m_Connecters)
796 {
797 m_pView->SetWidowsTitle(pConnecter->GetViewer(),
798 pConnecter->Name(),
799 pConnecter->Icon(),
800 pConnecter->Description());
801 }
802}
803
804void MainWindow::slotUpdateName(const QString& szName)
805{
806 CConnecter* pConnecter = dynamic_cast<CConnecter*>(sender());
807 if(!pConnecter) return;
808 m_pView->SetWidowsTitle(pConnecter->GetViewer(), szName,
809 pConnecter->Icon(), pConnecter->Description());
810}
811
812int MainWindow::onProcess(const QString &id, CPluginClient *pPlug)
813{
814 Q_UNUSED(id);
815 // Connect menu and toolbar
816 QAction* p = ui->menuConnect_C->addAction(pPlug->Protocol()
817 + ": " + pPlug->DisplayName(),
818 this, SLOT(slotConnect()));
819 p->setToolTip(pPlug->Description());
820 p->setStatusTip(pPlug->Description());
821 p->setData(id);
822 p->setIcon(pPlug->Icon());
823
824 return 0;
825}
826
827void MainWindow::closeEvent(QCloseEvent *event)
828{
829 qDebug(log) << "MainWindow::closeEvent()";
830
831 if(m_Parameter.GetSaveMainWindowStatus())
832 if(isFullScreen())
833 on_actionFull_screen_F_triggered();
834
835 SaveConnectLasterClose();
836
837 foreach (auto it, m_Connecters)
838 {
839 //TODO: Whether to save the setting
840 emit it->sigUpdateParameters(it);
841 it->DisConnect();
842 }
843
844 QSettings set(RabbitCommon::CDir::Instance()->GetFileUserConfigure(),
845 QSettings::IniFormat);
846 if(m_Parameter.GetSaveMainWindowStatus())
847 {
848 set.setValue("MainWindow/Status/Geometry", saveGeometry());
849 set.setValue("MainWindow/Status/State", saveState());
850 // Other parameters of main windows is saved CParameterApp::~CParameterApp()
851 } else {
852 set.remove("MainWindow/Status/Geometry");
853 set.remove("MainWindow/Status/State");
854 }
855 QMainWindow::closeEvent(event);
856
857 //TODO: Wait for the background thread to exit
858 QThread::sleep(1);
859}
860
861int MainWindow::LoadConnectLasterClose()
862{
863 if(!m_Parameter.GetOpenLasterClose())
864 return 0;
865
866 QFile f(RabbitCommon::CDir::Instance()->GetDirUserConfig()
867 + QDir::separator() + "LasterClose.dat");
868 if(f.open(QFile::ReadOnly))
869 {
870 QDataStream d(&f);
871 while(1){
872 QString szFile;
873 d >> szFile;
874 if(szFile.isEmpty())
875 break;
876 slotOpenFile(szFile);
877 }
878 f.close();
879 }
880 return 0;
881}
882
883int MainWindow::SaveConnectLasterClose()
884{
885 QFile f(RabbitCommon::CDir::Instance()->GetDirUserConfig()
886 + QDir::separator() + "LasterClose.dat");
887 f.open(QFile::WriteOnly);
888 if(m_Parameter.GetOpenLasterClose())
889 {
890 QDataStream d(&f);
891 foreach(auto it, m_ConfigureFiles)
892 {
893 d << it;
894 }
895 }
896 f.close();
897 return 0;
898}
899
900void MainWindow::on_actionSend_ctl_alt_del_triggered()
901{
902 if(m_pView)
903 m_pView->slotSystemCombination();
904}
905
906void MainWindow::on_actionTabBar_B_toggled(bool bShow)
907{
908 CViewTable* p = dynamic_cast<CViewTable*>(m_pView);
909 if(p)
910 {
911 p->ShowTabBar(bShow);
912 m_Parameter.SetTabBar(bShow);
913 }
914}
915
916void MainWindow::on_actionMain_menu_bar_M_toggled(bool checked)
917{
918 qDebug(log) << "MainWindow::on_actionMain_menu_bar_M_triggered:" << checked;
919 if(ui->toolBar->isHidden() && !checked)
920 {
921 if( QMessageBox::StandardButton::Yes
922 == QMessageBox::information(this, tr("Hide menu bar"),
923 tr("The menu bar will be hidden, the tool bar must be showed."),
924 QMessageBox::StandardButton::Yes
925 | QMessageBox::StandardButton::No))
926 {
927 ui->actionToolBar_T->setChecked(true);
928 } else
929 return;
930 }
931
932 menuBar()->setVisible(checked);
933 m_Parameter.SetMenuBar(checked);
934 if(checked)
935 {
936 ui->toolBar->removeAction(ui->actionMain_menu_bar_M);
937 }
938 else
939 {
940 ui->toolBar->insertAction(ui->actionTabBar_B,
941 ui->actionMain_menu_bar_M);
942 }
943}
944
945void MainWindow::on_actionToolBar_T_toggled(bool checked)
946{
947 qDebug(log) << "MainWindow::on_actionToolBar_T_triggered:" << checked;
948 if(menuBar()->isHidden() && !checked)
949 {
950 if( QMessageBox::StandardButton::Yes
951 == QMessageBox::information(this, tr("Hide tool bar"),
952 tr("The tool bar will be hidden, the menu bar must be showed."),
953 QMessageBox::StandardButton::Yes
954 | QMessageBox::StandardButton::No))
955 {
956 ui->actionMain_menu_bar_M->setChecked(true);
957 } else
958 return;
959 }
960 ui->toolBar->setVisible(checked);
961}
962
963void MainWindow::on_actionStatus_bar_S_toggled(bool checked)
964{
965 statusBar()->setVisible(checked);
966 m_Parameter.SetStatusBar(checked);
967}
968
969// [Get the widget that settings client parameters]
970void MainWindow::on_actionSettings_triggered()
971{
972 CParameterDlgSettings set(&m_Parameter, m_Client.GetSettingsWidgets(this), this);
973 if(CParameterDlgSettings::Accepted == RC_SHOW_WINDOW(&set))
974 {
975 m_Client.SaveSettings();
976 m_Parameter.Save();
977 }
978}
979// [Get the widget that settings client parameters]
980
981void MainWindow::slotShortCut()
982{
983 if(m_Parameter.GetReceiveShortCut())
984 {
985 setFocusPolicy(Qt::WheelFocus);
986#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
987 ui->actionFull_screen_F->setShortcut(
988 QKeySequence(QKeyCombination(Qt::CTRL, Qt::Key_R),
989 QKeyCombination(Qt::Key_F)));
990 ui->actionScreenshot->setShortcut(
991 QKeySequence(QKeyCombination(Qt::CTRL, Qt::Key_R),
992 QKeyCombination(Qt::Key_S)));
993#else
994 ui->actionFull_screen_F->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R, Qt::Key_F));
995 ui->actionScreenshot->setShortcut(QKeySequence(Qt::CTRL | Qt::Key_R, Qt::Key_S));
996#endif
997 } else {
998 setFocusPolicy(Qt::NoFocus);
999 ui->actionFull_screen_F->setShortcut(QKeySequence());
1000 ui->actionScreenshot->setShortcut(QKeySequence());
1001 }
1002}
1003
1004void MainWindow::on_actionOpenListConnections_triggered()
1005{
1006 CFrmListConnects* p = new CFrmListConnects(&m_Client, false);
1007 if(!p) return;
1008 bool check = connect(p, SIGNAL(sigConnect(const QString&, bool)),
1009 this, SLOT(slotOpenFile(const QString&, bool)));
1010 Q_ASSERT(check);
1011
1012 QDialog d;
1013 d.resize(540, 400);
1014 d.setWindowIcon(windowIcon());
1015 QGridLayout* pLayout = new QGridLayout(&d);
1016 if(pLayout){
1017 pLayout->addWidget(p);
1018 check = connect(p, SIGNAL(destroyed()), &d, SLOT(reject()));
1019 d.setLayout(pLayout);
1020 }
1021 RC_SHOW_WINDOW(&d);
1022}
1023
1024void MainWindow::on_actionAdd_to_favorite_triggered()
1025{
1026 if(!m_pView || !m_pFavoriteView) return;
1027 QWidget* p = m_pView->GetCurrentView();
1028 foreach(auto c, m_Connecters)
1029 {
1030 if(c->GetViewer() == p)
1031 {
1032 auto it = m_ConfigureFiles.find(c);
1033 if(m_ConfigureFiles.end() == it)
1034 return;
1035 m_pFavoriteView->AddFavorite(c->Name(), it.value());
1036 }
1037 }
1038}
1039
1040void MainWindow::dragEnterEvent(QDragEnterEvent *event)
1041{
1042 qDebug(log) << "dragEnterEvent";
1043
1044 if(event->mimeData()->hasUrls())
1045 {
1046 qWarning(log) << event->mimeData()->urls();
1047 event->acceptProposedAction();
1048 }
1049}
1050
1051void MainWindow::dragMoveEvent(QDragMoveEvent *event)
1052{
1053 //qDebug(log) << "dragMoveEvent";
1054}
1055
1056void MainWindow::dropEvent(QDropEvent *event)
1057{
1058 qDebug(log) << "dropEvent";
1059 if(!event->mimeData()->hasUrls())
1060 return;
1061 auto urls = event->mimeData()->urls();
1062 foreach(auto url, urls)
1063 {
1064 if(url.isLocalFile())
1065 slotOpenFile(url.toLocalFile());
1066 }
1067}
1068
1069void MainWindow::slotSystemTrayIconActivated(QSystemTrayIcon::ActivationReason reason)
1070{
1071 //qDebug(log) << "MainWindow::slotSystemTrayIconActivated";
1072
1073 Q_UNUSED(reason)
1074#if defined(Q_OS_ANDROID)
1075 showMaximized();
1076#else
1077 switch(reason)
1078 {
1079 case QSystemTrayIcon::Trigger:
1080 {
1081 showNormal();
1082 activateWindow();
1083 break;
1084 }
1085 default:
1086 break;
1087 }
1088#endif
1089}
1090
1091void MainWindow::slotSystemTrayIconTypeChanged()
1092{
1093 //qDebug(log) << "MainWindow::slotSystemTrayIconTypeChanged:" << m_Parameter.GetEnableSystemTrayIcon();
1094 if(!QSystemTrayIcon::isSystemTrayAvailable())
1095 {
1096 qWarning(log) << "System tray is not available";
1097 return;
1098 }
1099
1100 if(!m_Parameter.GetEnableSystemTrayIcon())
1101 {
1102 qDebug(log) << "Disable system tray icon";
1103 return;
1104 }
1105
1106 if(m_TrayIcon)
1107 m_TrayIcon.reset();
1108
1109 m_TrayIcon = QSharedPointer<QSystemTrayIcon>(new QSystemTrayIcon(this));
1110 if(QSystemTrayIcon::isSystemTrayAvailable())
1111 {
1112 bool check = connect(
1113 m_TrayIcon.data(),
1114 SIGNAL(activated(QSystemTrayIcon::ActivationReason)),
1115 this,
1116 SLOT(slotSystemTrayIconActivated(QSystemTrayIcon::ActivationReason)));
1117 Q_ASSERT(check);
1118 m_TrayIcon->setIcon(this->windowIcon());
1119 m_TrayIcon->setToolTip(windowTitle());
1120 m_TrayIcon->show();
1121 } else
1122 qWarning(log) << "System tray is not available";
1123
1124 switch (m_Parameter.GetSystemTrayIconMenuType())
1125 {
1126 case CParameterApp::SystemTrayIconMenuType::MenuBar:
1127 {
1128 QMenu* pMenu = new QMenu(this);
1129 pMenu->addMenu(ui->menuRemote);
1130 pMenu->addMenu(ui->menuView);
1131 pMenu->addMenu(ui->menuTools);
1132 m_TrayIcon->setContextMenu(pMenu);
1133 break;
1134 }
1135 case CParameterApp::SystemTrayIconMenuType::Remote:
1136 m_TrayIcon->setContextMenu(ui->menuRemote);
1137 break;
1138 case CParameterApp::SystemTrayIconMenuType::RecentOpen:
1139 m_TrayIcon->setContextMenu(m_pRecentMenu);
1140 break;
1141 case CParameterApp::SystemTrayIconMenuType::View:
1142 m_TrayIcon->setContextMenu(ui->menuView);
1143 break;
1144 case CParameterApp::SystemTrayIconMenuType::Tools:
1145 m_TrayIcon->setContextMenu(ui->menuTools);
1146 break;
1147 case CParameterApp::SystemTrayIconMenuType::No:
1148 m_TrayIcon->setContextMenu(nullptr);
1149 break;
1150 }
1151}
1152
1153void MainWindow::slotEnableSystemTrayIcon()
1154{
1155 //qDebug(log) << "MainWindow::slotEnableSystemTryIcon()";
1156 if(m_TrayIcon)
1157 {
1158 if(!m_Parameter.GetEnableSystemTrayIcon())
1159 m_TrayIcon.reset();
1160 } else
1161 slotSystemTrayIconTypeChanged();
1162}
virtual int SaveSettings(QString szFile=QString())
Save Client parameters to file.
Definition Client.cpp:326
virtual CConnecter * LoadConnecter(const QString &szFile)
New CConnecter pointer from file, the owner is caller.
Definition Client.cpp:257
virtual CConnecter * CreateConnecter(const QString &id)
New CConnecter pointer, the owner is caller.
Definition Client.cpp:202
virtual int SaveConnecter(QString szFile, CConnecter *pConnecter)
Accept connecter parameters to file.
Definition Client.cpp:285
virtual int DeleteConnecter(CConnecter *p)
Delete CConnecter.
Definition Client.cpp:245
virtual QList< QWidget * > GetSettingsWidgets(QWidget *parent)
Get parameter settings widget.
Definition Client.cpp:331
Connecter interface.
Definition Connecter.h:62
virtual int DisConnect()=0
Close connect.
virtual const QIcon Icon() const
Icon.
Definition Connecter.cpp:65
virtual int OpenDialogSettings(QWidget *parent=nullptr)
Open settings dialog.
Definition Connecter.cpp:84
virtual QWidget * GetViewer()=0
Get Viewer.
virtual const QString Description()
Description.
Definition Connecter.cpp:49
virtual const QString Id()
Identity.
Definition Connecter.cpp:38
virtual int Connect()=0
Start connect.
virtual const QString Name()
Name.
Definition Connecter.cpp:44
void sigUpdateParameters(CConnecter *pConnecter)
Update parameters, notify application to save or show parameters.
List the connect of be existed.
static CICE * Instance()
Single instance.
Definition Ice.cpp:55
The plugin interface.
virtual const QString DisplayName() const
The plugin display name.
virtual const QString Description() const =0
Plugin description.
virtual const QString Protocol() const =0
Plugin Protocol.
The CViewTable class.
Definition ViewTable.h:16
The CView class.
Definition View.h:25
virtual int AddView(QWidget *pView)=0
virtual QWidget * GetCurrentView()=0
virtual int RemoveView(QWidget *pView)=0
The MainWindow class.
Definition mainwindow.h:32
virtual int onProcess(const QString &id, CPluginClient *pPlug) override
Process plugins.
void slotInformation(const QString &szInfo)
Show information.
int Connect(CConnecter *p, bool set, QString szFile=QString())
Connect.
void slotConnected()
[MainWindow slotConnected]
virtual void slotShowMessageBox(const QString &title, const QString &message, const QMessageBox::Icon &icon)
Use message box display information.
void slotCloseView(const QWidget *pView)
[MainWindow slotConnected]