]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.hpp
Added Ctrl-Q and Ctrl-W shortcuts.
[pulseview.git] / pv / mainwindow.hpp
CommitLineData
d7bed479 1/*
b3f22de0 2 * This file is part of the PulseView project.
d7bed479
JH
3 *
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
efdec55a 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
d7bed479
JH
18 */
19
7a01bd36
JH
20#ifndef PULSEVIEW_PV_MAINWINDOW_HPP
21#define PULSEVIEW_PV_MAINWINDOW_HPP
d7bed479 22
18203d86 23#include <list>
dd3fd4df 24#include <map>
f9abf97e 25#include <memory>
b1264f56 26
d7bed479 27#include <QMainWindow>
3231fbf9 28#include <QSignalMapper>
f1e2d26b 29#include <QToolButton>
3b84fd0b 30#include <QTabWidget>
45cb64ff 31#include <QShortcut>
d7bed479 32
f65cd27b 33#include "session.hpp"
f4e57597 34#include "views/viewbase.hpp"
2953961c 35
269528f5
JH
36struct srd_decoder;
37
7d5425ef 38class QVBoxLayout;
7d5425ef 39
51e77110
JH
40namespace pv {
41
107ca6d3 42class DeviceManager;
94574501 43
f4c92e1c 44namespace toolbars {
404aad0e 45class ContextBar;
7c657094 46class MainBar;
f4c92e1c 47}
51e77110
JH
48
49namespace view {
50class View;
51}
52
f0d37dab 53namespace widgets {
e79171dc 54#ifdef ENABLE_DECODE
f0d37dab 55class DecoderMenu;
19be0af1 56#endif
f0d37dab
JH
57}
58
d7bed479
JH
59class MainWindow : public QMainWindow
60{
61 Q_OBJECT
62
33e1afbe
SA
63private:
64 static const QString WindowTitle;
65
d7bed479 66public:
107ca6d3 67 explicit MainWindow(DeviceManager &device_manager,
e3c79b07
JH
68 std::string open_file_name = std::string(),
69 std::string open_file_format = std::string(),
1d478458 70 QWidget *parent = 0);
d7bed479 71
47e9e7bb
SA
72 ~MainWindow();
73
c7b03d9d 74 QAction* action_view_sticky_scrolling() const;
0fb9d645 75 QAction* action_view_coloured_bg() const;
69654681
JH
76 QAction* action_about() const;
77
f4e57597 78 std::shared_ptr<views::ViewBase> get_active_view() const;
168bd8ac 79
f4e57597
SA
80 std::shared_ptr<views::ViewBase> add_view(const QString &title,
81 views::ViewType type, Session &session);
7cd2b5f3 82
f30eb549
SA
83 void remove_view(std::shared_ptr<views::ViewBase> view);
84
101e7a9b
SA
85 std::shared_ptr<Session> add_session();
86
36a8185e
SA
87 void remove_session(std::shared_ptr<Session> session);
88
d7bed479 89private:
7d5425ef
JH
90 void setup_ui();
91
93f683ad
SA
92 void save_ui_settings();
93
94 void restore_ui_settings();
95
e7aff437
SA
96 std::shared_ptr<Session> get_tab_session(int index) const;
97
93f683ad
SA
98 void closeEvent(QCloseEvent *event);
99
d290e89f
SA
100 virtual QMenu* createPopupMenu();
101
55547a45
SA
102 virtual bool restoreState(const QByteArray &state, int version = 0);
103
3231fbf9
SA
104 void session_error(const QString text, const QString info_text);
105
4df7756e 106private Q_SLOTS:
3231fbf9
SA
107 void show_session_error(const QString text, const QString info_text);
108
f4e57597 109 void on_add_view(const QString &title, views::ViewType type,
3a21afa6
SA
110 Session *session);
111
33e1afbe 112 void on_focus_changed();
e7aff437 113 void on_focused_session_changed(std::shared_ptr<Session> session);
33e1afbe 114
f1e2d26b 115 void on_new_session_clicked();
3231fbf9
SA
116 void on_run_stop_clicked();
117
33e1afbe 118 void on_session_name_changed();
3231fbf9
SA
119 void on_capture_state_changed(QObject *obj);
120
c9da5118 121 void on_new_view(Session *session);
36a8185e 122 void on_view_close_clicked();
c9da5118 123
e7aff437 124 void on_tab_changed(int index);
4a4e20f5
SA
125 void on_tab_close_requested(int index);
126
c7b03d9d
SA
127 void on_actionViewStickyScrolling_triggered();
128
0fb9d645
SA
129 void on_actionViewColouredBg_triggered();
130
ef7e3146
JH
131 void on_actionAbout_triggered();
132
763945bb
PET
133 void on_close_current_tab();
134
7d5425ef 135private:
8dbbc7f0 136 DeviceManager &device_manager_;
d4984fe7 137
36a8185e 138 std::list< std::shared_ptr<Session> > sessions_;
33bedfc1 139 std::shared_ptr<Session> last_focused_session_;
18203d86 140
cbf7b5db 141 std::map< QDockWidget*, std::shared_ptr<views::ViewBase> > view_docks_;
7d5425ef 142
3b84fd0b
SA
143 std::map< std::shared_ptr<Session>, QMainWindow*> session_windows_;
144
cc964645 145 QWidget *static_tab_widget_;
4d1ec09a 146 QToolButton *new_session_button_, *run_stop_button_, *settings_button_;
3b84fd0b 147 QTabWidget session_selector_;
3231fbf9 148 QSignalMapper session_state_mapper_;
3b84fd0b 149
c7b03d9d 150 QAction *const action_view_sticky_scrolling_;
0fb9d645 151 QAction *const action_view_coloured_bg_;
69654681 152 QAction *const action_about_;
3231fbf9
SA
153
154 QIcon icon_red_;
155 QIcon icon_green_;
156 QIcon icon_grey_;
45cb64ff
PET
157
158 QShortcut *run_stop_shortcut_;
763945bb
PET
159 QShortcut *close_application_shortcut_;
160 QShortcut *close_current_tab_shortcut_;
d7bed479
JH
161};
162
51e77110
JH
163} // namespace pv
164
7a01bd36 165#endif // PULSEVIEW_PV_MAINWINDOW_HPP