mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Make Ctrl+Tab key combo cycle main tabs
This commit is contained in:
parent
c17b6ff183
commit
49ae2f0b83
@ -2286,6 +2286,10 @@ void gGraphView::wheelEvent(QWheelEvent * event)
|
|||||||
|
|
||||||
void gGraphView::keyPressEvent(QKeyEvent * event)
|
void gGraphView::keyPressEvent(QKeyEvent * event)
|
||||||
{
|
{
|
||||||
|
if (event->key()==Qt::Key_Tab) {
|
||||||
|
event->ignore();
|
||||||
|
return;
|
||||||
|
}
|
||||||
gGraph *g;
|
gGraph *g;
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
if (m_graphs[i]->group()==0) {
|
if (m_graphs[i]->group()==0) {
|
||||||
|
@ -529,3 +529,13 @@ void MainWindow::on_action_Link_Graph_Groups_toggled(bool arg1)
|
|||||||
PROFILE["LinkGroups"]=arg1;
|
PROFILE["LinkGroups"]=arg1;
|
||||||
if (daily) daily->RedrawGraphs();
|
if (daily) daily->RedrawGraphs();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void MainWindow::on_action_CycleTabs_triggered()
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
qDebug() << "Switching Tabs";
|
||||||
|
i=ui->tabWidget->currentIndex()+1;
|
||||||
|
if (i >= ui->tabWidget->count())
|
||||||
|
i=0;
|
||||||
|
ui->tabWidget->setCurrentIndex(i);
|
||||||
|
}
|
||||||
|
@ -102,6 +102,8 @@ private slots:
|
|||||||
|
|
||||||
void on_action_Link_Graph_Groups_toggled(bool arg1);
|
void on_action_Link_Graph_Groups_toggled(bool arg1);
|
||||||
|
|
||||||
|
void on_action_CycleTabs_triggered();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
Daily * daily;
|
Daily * daily;
|
||||||
|
@ -657,10 +657,13 @@
|
|||||||
<string>F4</string>
|
<string>F4</string>
|
||||||
</property>
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="action_2">
|
<action name="action_CycleTabs">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>-</string>
|
<string>-</string>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="shortcut">
|
||||||
|
<string>Ctrl+Tab</string>
|
||||||
|
</property>
|
||||||
</action>
|
</action>
|
||||||
<action name="actionUse_AntiAliasing">
|
<action name="actionUse_AntiAliasing">
|
||||||
<property name="checkable">
|
<property name="checkable">
|
||||||
|
Loading…
Reference in New Issue
Block a user