]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.hpp
device manager: Move filter for supported devices to the scan routine
[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>
aca9aa83 28#include <QShortcut>
3231fbf9 29#include <QSignalMapper>
3b84fd0b 30#include <QTabWidget>
aca9aa83 31#include <QToolButton>
d7bed479 32
f65cd27b 33#include "session.hpp"
f4e57597 34#include "views/viewbase.hpp"
2953961c 35
6f925ba9
UH
36using std::list;
37using std::map;
38using std::shared_ptr;
39using std::string;
40
269528f5
JH
41struct srd_decoder;
42
7d5425ef 43class QVBoxLayout;
7d5425ef 44
51e77110
JH
45namespace pv {
46
107ca6d3 47class DeviceManager;
94574501 48
f4c92e1c 49namespace toolbars {
404aad0e 50class ContextBar;
7c657094 51class MainBar;
f4c92e1c 52}
51e77110
JH
53
54namespace view {
55class View;
56}
57
f0d37dab 58namespace widgets {
e79171dc 59#ifdef ENABLE_DECODE
f0d37dab 60class DecoderMenu;
19be0af1 61#endif
f0d37dab
JH
62}
63
d7bed479
JH
64class MainWindow : public QMainWindow
65{
66 Q_OBJECT
67
33e1afbe
SA
68private:
69 static const QString WindowTitle;
70
d7bed479 71public:
107ca6d3 72 explicit MainWindow(DeviceManager &device_manager,
f54fc97e 73 QWidget *parent = nullptr);
d7bed479 74
47e9e7bb
SA
75 ~MainWindow();
76
6f925ba9 77 shared_ptr<views::ViewBase> get_active_view() const;
168bd8ac 78
6f925ba9 79 shared_ptr<views::ViewBase> add_view(const QString &title,
f4e57597 80 views::ViewType type, Session &session);
7cd2b5f3 81
6f925ba9 82 void remove_view(shared_ptr<views::ViewBase> view);
f30eb549 83
6f925ba9 84 shared_ptr<Session> add_session();
101e7a9b 85
6f925ba9 86 void remove_session(shared_ptr<Session> session);
36a8185e 87
3ed18835
SA
88 void add_session_with_file(string open_file_name, string open_file_format);
89
90 void add_default_session();
91
92 void save_sessions();
93 void restore_sessions();
94
d7bed479 95private:
7d5425ef
JH
96 void setup_ui();
97
93f683ad 98 void save_ui_settings();
3ed18835 99 void restore_ui_settings();
93f683ad 100
6f925ba9 101 shared_ptr<Session> get_tab_session(int index) const;
e7aff437 102
93f683ad
SA
103 void closeEvent(QCloseEvent *event);
104
d290e89f
SA
105 virtual QMenu* createPopupMenu();
106
55547a45
SA
107 virtual bool restoreState(const QByteArray &state, int version = 0);
108
3231fbf9
SA
109 void session_error(const QString text, const QString info_text);
110
4df7756e 111private Q_SLOTS:
3231fbf9
SA
112 void show_session_error(const QString text, const QString info_text);
113
f4e57597 114 void on_add_view(const QString &title, views::ViewType type,
3a21afa6
SA
115 Session *session);
116
33e1afbe 117 void on_focus_changed();
6f925ba9 118 void on_focused_session_changed(shared_ptr<Session> session);
33e1afbe 119
f1e2d26b 120 void on_new_session_clicked();
3231fbf9 121 void on_run_stop_clicked();
bf9f1268 122 void on_settings_clicked();
3231fbf9 123
33e1afbe 124 void on_session_name_changed();
3231fbf9
SA
125 void on_capture_state_changed(QObject *obj);
126
c9da5118 127 void on_new_view(Session *session);
36a8185e 128 void on_view_close_clicked();
c9da5118 129
e7aff437 130 void on_tab_changed(int index);
4a4e20f5
SA
131 void on_tab_close_requested(int index);
132
9eae6de4 133 void on_view_coloured_bg_shortcut();
87a97d8a 134 void on_view_sticky_scrolling_shortcut();
051ba3b3 135 void on_view_show_sampling_points_shortcut();
8ad61f40 136 void on_view_show_analog_minor_grid_shortcut();
0fb9d645 137
24c29d4f 138 void on_settingViewColouredBg_changed(const QVariant new_value);
051ba3b3 139 void on_settingViewShowSamplingPoints_changed(const QVariant new_value);
8ad61f40 140 void on_settingViewShowAnalogMinorGrid_changed(const QVariant new_value);
24c29d4f 141
763945bb
PET
142 void on_close_current_tab();
143
7d5425ef 144private:
8dbbc7f0 145 DeviceManager &device_manager_;
d4984fe7 146
6f925ba9
UH
147 list< shared_ptr<Session> > sessions_;
148 shared_ptr<Session> last_focused_session_;
18203d86 149
6f925ba9 150 map< QDockWidget*, shared_ptr<views::ViewBase> > view_docks_;
7d5425ef 151
6f925ba9 152 map< shared_ptr<Session>, QMainWindow*> session_windows_;
3b84fd0b 153
cc964645 154 QWidget *static_tab_widget_;
4d1ec09a 155 QToolButton *new_session_button_, *run_stop_button_, *settings_button_;
3b84fd0b 156 QTabWidget session_selector_;
3231fbf9 157 QSignalMapper session_state_mapper_;
3b84fd0b 158
3231fbf9
SA
159 QIcon icon_red_;
160 QIcon icon_green_;
161 QIcon icon_grey_;
45cb64ff 162
9eae6de4 163 QShortcut *view_sticky_scrolling_shortcut_;
051ba3b3 164 QShortcut *view_show_sampling_points_shortcut_;
8ad61f40 165 QShortcut *view_show_analog_minor_grid_shortcut_;
9eae6de4 166 QShortcut *view_coloured_bg_shortcut_;
45cb64ff 167 QShortcut *run_stop_shortcut_;
763945bb
PET
168 QShortcut *close_application_shortcut_;
169 QShortcut *close_current_tab_shortcut_;
d7bed479
JH
170};
171
51e77110
JH
172} // namespace pv
173
7a01bd36 174#endif // PULSEVIEW_PV_MAINWINDOW_HPP