]> sigrok.org Git - pulseview.git/blame_incremental - pv/mainwindow.hpp
MainWindow: Remove QSignalMapper usage
[pulseview.git] / pv / mainwindow.hpp
... / ...
CommitLineData
1/*
2 * This file is part of the PulseView project.
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
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef PULSEVIEW_PV_MAINWINDOW_HPP
21#define PULSEVIEW_PV_MAINWINDOW_HPP
22
23#include <list>
24#include <map>
25#include <memory>
26
27#include <QMainWindow>
28#include <QShortcut>
29#include <QTabWidget>
30#include <QToolButton>
31
32#include "session.hpp"
33#include "subwindows/subwindowbase.hpp"
34#include "views/viewbase.hpp"
35
36using std::list;
37using std::map;
38using std::shared_ptr;
39using std::string;
40
41struct srd_decoder;
42
43class QVBoxLayout;
44
45namespace pv {
46
47class DeviceManager;
48
49namespace toolbars {
50class ContextBar;
51class MainBar;
52}
53
54namespace view {
55class View;
56}
57
58namespace widgets {
59#ifdef ENABLE_DECODE
60class DecoderMenu;
61#endif
62}
63
64class MainWindow : public QMainWindow
65{
66 Q_OBJECT
67
68private:
69 static const QString WindowTitle;
70
71public:
72 explicit MainWindow(DeviceManager &device_manager,
73 QWidget *parent = nullptr);
74
75 ~MainWindow();
76
77 static void show_session_error(const QString text, const QString info_text);
78
79 shared_ptr<views::ViewBase> get_active_view() const;
80
81 shared_ptr<views::ViewBase> add_view(views::ViewType type, Session &session);
82
83 void remove_view(shared_ptr<views::ViewBase> view);
84
85 shared_ptr<subwindows::SubWindowBase> add_subwindow(
86 subwindows::SubWindowType type, Session &session);
87
88 shared_ptr<Session> add_session();
89
90 void remove_session(shared_ptr<Session> session);
91
92 void add_session_with_file(string open_file_name, string open_file_format,
93 string open_setup_file_name);
94
95 void add_default_session();
96
97 void save_sessions();
98 void restore_sessions();
99
100private:
101 void setup_ui();
102 void update_acq_button(Session *session);
103
104 void save_ui_settings();
105 void restore_ui_settings();
106
107 shared_ptr<Session> get_tab_session(int index) const;
108
109 void closeEvent(QCloseEvent *event);
110
111 virtual QMenu* createPopupMenu();
112
113 virtual bool restoreState(const QByteArray &state, int version = 0);
114
115private Q_SLOTS:
116 void on_add_view(views::ViewType type, Session *session);
117
118 void on_focus_changed();
119 void on_focused_session_changed(shared_ptr<Session> session);
120
121 void on_new_session_clicked();
122 void on_run_stop_clicked();
123 void on_settings_clicked();
124
125 void on_session_name_changed();
126 void on_session_device_changed();
127 void on_session_capture_state_changed(int state);
128
129 void on_new_view(Session *session, int view_type);
130 void on_view_close_clicked();
131
132 void on_tab_changed(int index);
133 void on_tab_close_requested(int index);
134
135 void on_show_decoder_selector(Session *session);
136 void on_sub_window_close_clicked();
137
138 void on_view_colored_bg_shortcut();
139 void on_view_sticky_scrolling_shortcut();
140 void on_view_show_sampling_points_shortcut();
141 void on_view_show_analog_minor_grid_shortcut();
142
143 void on_close_current_tab();
144
145private:
146 DeviceManager &device_manager_;
147
148 list< shared_ptr<Session> > sessions_;
149 shared_ptr<Session> last_focused_session_;
150
151 map< QDockWidget*, shared_ptr<views::ViewBase> > view_docks_;
152 map< QDockWidget*, shared_ptr<subwindows::SubWindowBase> > sub_windows_;
153
154 map< shared_ptr<Session>, QMainWindow*> session_windows_;
155
156 QWidget *static_tab_widget_;
157 QToolButton *new_session_button_, *run_stop_button_, *settings_button_;
158 QTabWidget session_selector_;
159
160 QIcon icon_red_;
161 QIcon icon_green_;
162 QIcon icon_grey_;
163
164 QShortcut *view_sticky_scrolling_shortcut_;
165 QShortcut *view_show_sampling_points_shortcut_;
166 QShortcut *view_show_analog_minor_grid_shortcut_;
167 QShortcut *view_colored_bg_shortcut_;
168 QShortcut *run_stop_shortcut_;
169 QShortcut *close_application_shortcut_;
170 QShortcut *close_current_tab_shortcut_;
171};
172
173} // namespace pv
174
175#endif // PULSEVIEW_PV_MAINWINDOW_HPP