Tie the "sticky scrolling" setting in with the settings mgmt
[pulseview.git] / pv / mainwindow.hpp
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 <QSignalMapper>
29 #include <QToolButton>
30 #include <QTabWidget>
31 #include <QShortcut>
32
33 #include "session.hpp"
34 #include "views/viewbase.hpp"
35
36 struct srd_decoder;
37
38 class QVBoxLayout;
39
40 namespace pv {
41
42 class DeviceManager;
43
44 namespace toolbars {
45 class ContextBar;
46 class MainBar;
47 }
48
49 namespace view {
50 class View;
51 }
52
53 namespace widgets {
54 #ifdef ENABLE_DECODE
55 class DecoderMenu;
56 #endif
57 }
58
59 class MainWindow : public QMainWindow
60 {
61         Q_OBJECT
62
63 private:
64         static const QString WindowTitle;
65
66 public:
67         explicit MainWindow(DeviceManager &device_manager,
68                 std::string open_file_name = std::string(),
69                 std::string open_file_format = std::string(),
70                 QWidget *parent = 0);
71
72         ~MainWindow();
73
74         std::shared_ptr<views::ViewBase> get_active_view() const;
75
76         std::shared_ptr<views::ViewBase> add_view(const QString &title,
77                 views::ViewType type, Session &session);
78
79         void remove_view(std::shared_ptr<views::ViewBase> view);
80
81         std::shared_ptr<Session> add_session();
82
83         void remove_session(std::shared_ptr<Session> session);
84
85 private:
86         void setup_ui();
87
88         void save_ui_settings();
89
90         void restore_ui_settings();
91
92         std::shared_ptr<Session> get_tab_session(int index) const;
93
94         void closeEvent(QCloseEvent *event);
95
96         virtual QMenu* createPopupMenu();
97
98         virtual bool restoreState(const QByteArray &state, int version = 0);
99
100         void session_error(const QString text, const QString info_text);
101
102 private Q_SLOTS:
103         void show_session_error(const QString text, const QString info_text);
104
105         void on_add_view(const QString &title, views::ViewType type,
106                 Session *session);
107
108         void on_focus_changed();
109         void on_focused_session_changed(std::shared_ptr<Session> session);
110
111         void on_new_session_clicked();
112         void on_run_stop_clicked();
113         void on_settings_clicked();
114
115         void on_session_name_changed();
116         void on_capture_state_changed(QObject *obj);
117
118         void on_new_view(Session *session);
119         void on_view_close_clicked();
120
121         void on_tab_changed(int index);
122         void on_tab_close_requested(int index);
123
124         void on_view_coloured_bg_shortcut();
125         void on_view_sticky_scrolling_shortcut();
126
127         void on_settingViewColouredBg_changed(const QVariant new_value);
128         void on_settingViewStickyScrolling_changed(const QVariant new_value);
129
130         void on_close_current_tab();
131
132 private:
133         DeviceManager &device_manager_;
134
135         std::list< std::shared_ptr<Session> > sessions_;
136         std::shared_ptr<Session> last_focused_session_;
137
138         std::map< QDockWidget*, std::shared_ptr<views::ViewBase> > view_docks_;
139
140         std::map< std::shared_ptr<Session>, QMainWindow*> session_windows_;
141
142         QWidget *static_tab_widget_;
143         QToolButton *new_session_button_, *run_stop_button_, *settings_button_;
144         QTabWidget session_selector_;
145         QSignalMapper session_state_mapper_;
146
147         QIcon icon_red_;
148         QIcon icon_green_;
149         QIcon icon_grey_;
150
151         QShortcut *view_sticky_scrolling_shortcut_;
152         QShortcut *view_coloured_bg_shortcut_;
153         QShortcut *run_stop_shortcut_;
154         QShortcut *close_application_shortcut_;
155         QShortcut *close_current_tab_shortcut_;
156 };
157
158 } // namespace pv
159
160 #endif // PULSEVIEW_PV_MAINWINDOW_HPP