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