Rabbit Remote Control 0.0.33
Loading...
Searching...
No Matches
ViewTable.cpp
1// Author: Kang Lin <kl222@126.com>
2
3#include <QResizeEvent>
4#include <QTabBar>
5#include <QStyleOption>
6#include <QDebug>
7#include <QScrollBar>
8#include <QFileInfo>
9#include <QDir>
10#include <QLoggingCategory>
11#include "mainwindow.h"
12#include "ViewTable.h"
13
14static Q_LOGGING_CATEGORY(log, "App.View.Table")
15static Q_LOGGING_CATEGORY(logRecord, "App.View.Table.Record")
16
17CViewTable::CViewTable(QWidget *parent) : CView(parent),
18 m_pTab(nullptr)
19{
20 qDebug(log) << Q_FUNC_INFO;
21 bool check = false;
22 setFocusPolicy(Qt::NoFocus);
23
24 m_pTab = new QTabWidget(this);
25 m_pTab->setTabsClosable(true);
26 m_pTab->setUsesScrollButtons(true);
27 m_pTab->setMovable(true);
28 m_pTab->setFocusPolicy(Qt::NoFocus);
29 m_pTab->tabBar()->setContextMenuPolicy(Qt::CustomContextMenu);
30 if(this->parent())
31 {
32 MainWindow* p = dynamic_cast<MainWindow*>(this->parent());
33 if(p)
34 {
35 m_pMainWindow = p;
36 m_pTab->setTabPosition(p->m_Parameter.GetTabPosition());
37 check = connect(&p->m_Parameter, SIGNAL(sigTabPositionChanged()),
38 this, SLOT(slotTabPositionChanged()));
39 Q_ASSERT(check);
40 }
41 }
42
43 check = connect(m_pTab, SIGNAL(tabCloseRequested(int)),
44 this, SLOT(slotTabCloseRequested(int)));
45 Q_ASSERT(check);
46 check = connect(m_pTab, SIGNAL(currentChanged(int)),
47 this, SLOT(slotCurrentChanged(int)));
48 Q_ASSERT(check);
49 check = connect(m_pTab->tabBar(),
50 SIGNAL(customContextMenuRequested(const QPoint&)),
51 this, SIGNAL(customContextMenuRequested(const QPoint&)));
52 Q_ASSERT(check);
53}
54
55CViewTable::~CViewTable()
56{
57 qDebug(log) << Q_FUNC_INFO;
58 if(m_pTab)
59 delete m_pTab;
60}
61
62void CViewTable::slotCurrentChanged(int index)
63{
64 qDebug(log) << "CViewTable::slotCurrentChanged";
65 emit sigCurrentChanged(GetViewer(index));
66}
67
68void CViewTable::slotTabCloseRequested(int index)
69{
70 QWidget* pView = GetViewer(index);
71 if(!pView) return;
72 emit sigCloseView(pView);
73}
74
75void CViewTable::slotTabPositionChanged()
76{
77 MainWindow* p = dynamic_cast<MainWindow*>(parent());
78 if(!p || !m_pTab) return;
79 m_pTab->setTabPosition(p->m_Parameter.GetTabPosition());
80}
81
82void CViewTable::slotSystemCombination()
83{
84 QWidget* pView = GetCurrentView();
85 if(!pView) return;
86 CFrmViewer* pFrmViewer = qobject_cast<CFrmViewer*>(pView);
87 if(pFrmViewer)
88 pFrmViewer->slotSystemCombination();
89}
90
91int CViewTable::AddView(QWidget *pView)
92{
93 int nIndex = -1;
94 if(!pView)
95 {
96 qCritical(log) << "CViewTable::AddView: The pView is nullptr";
97 return -1;
98 }
99 //qDebug(log) << "CViewTable::AddView: Window title:" << pView->windowTitle();
100 nIndex = m_pTab->indexOf(pView);
101 if(-1 == nIndex)
102 nIndex = m_pTab->addTab(pView, pView->windowTitle());
103 m_pTab->setCurrentIndex(nIndex);
104
105 return 0;
106}
107
108int CViewTable::RemoveView(QWidget *pView)
109{
110 int nIndex = GetViewIndex(pView);
111 if(-1 == nIndex) return 0;
112 // Note: The following order cannot be changed
113 m_pTab->removeTab(nIndex);
114 return 0;
115}
116
117void CViewTable::SetWidowsTitle(QWidget* pView, const QString& szTitle,
118 const QIcon &icon, const QString &szToolTip)
119{
120 if(!pView) {
121 qCritical(log) << "CViewTable::SetWidowsTitle: The pView is nullptr";
122 return;
123 }
124 //qDebug(log) << "CViewTable::SetWidowsTitle: Window title:" << szTitle;
125 pView->setWindowTitle(szTitle);
126 int nIndex = GetViewIndex(pView);
127 m_pTab->setTabText(nIndex, szTitle);
128 if(m_pMainWindow->m_Parameter.GetEnableTabToolTip())
129 m_pTab->setTabToolTip(nIndex, szToolTip);
130 else
131 m_pTab->setTabToolTip(nIndex, "");
132 if(m_pMainWindow->m_Parameter.GetEnableTabIcon())
133 m_pTab->setTabIcon(nIndex, icon);
134 else
135 m_pTab->setTabIcon(nIndex, QIcon());
136}
137
138int CViewTable::SetFullScreen(bool bFull)
139{
140 if(!m_pTab) return -1;
141 ShowTabBar(!bFull);
142 if(bFull)
143 {
144 m_szStyleSheet = m_pTab->styleSheet();
145 //qDebug(log) << m_szStyleSheet;
146 m_pTab->setStyleSheet("QTabWidget::pane{top:0px;left:0px;border:none;}");
147 m_pTab->showFullScreen();
148 } else {
149 m_pTab->setStyleSheet(m_szStyleSheet);
150 m_pTab->showNormal();
151 }
152 return 0;
153}
154
155int CViewTable::ShowTabBar(bool bShow)
156{
157 m_pTab->tabBar()->setVisible(bShow);
158 return 0;
159}
160
161QWidget *CViewTable::GetViewer(int index)
162{
163 if(index < 0 || index >= m_pTab->count())
164 return nullptr;
165
166 return m_pTab->widget(index);
167}
168
169int CViewTable::GetViewIndex(QWidget *pView)
170{
171 for(int i = 0; i < m_pTab->count(); i++)
172 {
173 QWidget* p = GetViewer(i);
174 if(p == pView)
175 return i;
176 }
177 return -1;
178}
179
180// \note The return QWidget* must is same as CConnecter::GetViewer()
182{
183 QWidget* pView = m_pTab->currentWidget();
184 if(!pView) return pView;
185 return pView;
186}
187
188int CViewTable::SetCurrentView(QWidget* pView)
189{
190 int nIndex = m_pTab->indexOf(pView);
191 if(-1 != nIndex) {
192 m_pTab->setCurrentIndex(nIndex);
193 return 0;
194 }
195 return -1;
196}
197
198void CViewTable::resizeEvent(QResizeEvent *event)
199{
200 if(!m_pTab)
201 return;
202 m_pTab->move(0, 0);
203 m_pTab->resize(event->size());
204}
205
206QSize CViewTable::GetDesktopSize()
207{
208 return frameSize();
209}
A widget which displays output image from a CConnectDesktop and sends input keypresses and mouse acti...
Definition FrmViewer.h:49
The CViewTable class.
Definition ViewTable.h:16
virtual int RemoveView(QWidget *pView) override
virtual QWidget * GetCurrentView() override
virtual int AddView(QWidget *pView) override
Definition ViewTable.cpp:91
The CView class.
Definition View.h:25
void sigCloseView(const QWidget *pView)
The MainWindow class.
Definition mainwindow.h:32