]> sigrok.org Git - pulseview.git/blob - pv/mainwindow.hpp
MainWindow: Use a QTabWidget to display the QDockWidgets
[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, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #ifndef PULSEVIEW_PV_MAINWINDOW_HPP
22 #define PULSEVIEW_PV_MAINWINDOW_HPP
23
24 #include <list>
25 #include <map>
26 #include <memory>
27
28 #include <QMainWindow>
29 #include <QTabWidget>
30
31 #include "session.hpp"
32 #include "views/viewbase.hpp"
33
34 struct srd_decoder;
35
36 class QVBoxLayout;
37
38 namespace pv {
39
40 class DeviceManager;
41
42 namespace toolbars {
43 class ContextBar;
44 class MainBar;
45 }
46
47 namespace view {
48 class View;
49 }
50
51 namespace widgets {
52 #ifdef ENABLE_DECODE
53 class DecoderMenu;
54 #endif
55 }
56
57 class MainWindow : public QMainWindow
58 {
59         Q_OBJECT
60
61 private:
62         static const QString WindowTitle;
63
64 public:
65         explicit MainWindow(DeviceManager &device_manager,
66                 std::string open_file_name = std::string(),
67                 std::string open_file_format = std::string(),
68                 QWidget *parent = 0);
69
70         ~MainWindow();
71
72         QAction* action_view_sticky_scrolling() const;
73         QAction* action_view_coloured_bg() const;
74         QAction* action_about() const;
75
76         std::shared_ptr<views::ViewBase> get_active_view() const;
77
78         std::shared_ptr<views::ViewBase> add_view(const QString &title,
79                 views::ViewType type, Session &session);
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 private:
93         void closeEvent(QCloseEvent *event);
94
95         virtual QMenu* createPopupMenu();
96
97         virtual bool restoreState(const QByteArray &state, int version = 0);
98
99 private Q_SLOTS:
100         void on_add_view(const QString &title, views::ViewType type,
101                 Session *session);
102
103         void on_focus_changed();
104
105         void on_new_session();
106         void on_session_name_changed();
107         void on_new_view(Session *session);
108         void on_view_close_clicked();
109
110         void on_actionViewStickyScrolling_triggered();
111
112         void on_actionViewColouredBg_triggered();
113
114         void on_actionAbout_triggered();
115
116 private:
117         DeviceManager &device_manager_;
118
119         std::list< std::shared_ptr<Session> > sessions_;
120
121         std::map< std::shared_ptr<QDockWidget>,
122                 std::shared_ptr<views::ViewBase> > view_docks_;
123
124         std::map< std::shared_ptr<Session>, QMainWindow*> session_windows_;
125
126         QTabWidget session_selector_;
127
128         QAction *const action_view_sticky_scrolling_;
129         QAction *const action_view_coloured_bg_;
130         QAction *const action_about_;
131 };
132
133 } // namespace pv
134
135 #endif // PULSEVIEW_PV_MAINWINDOW_HPP