]> sigrok.org Git - pulseview.git/blob - pv/mainwindow.hpp
MainWindow: Don't return bogus view
[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
30 #include "session.hpp"
31 #include "view/viewwidget.hpp"
32
33 struct srd_decoder;
34
35 class QVBoxLayout;
36
37 namespace pv {
38
39 class DeviceManager;
40
41 namespace toolbars {
42 class ContextBar;
43 class MainBar;
44 }
45
46 namespace view {
47 class View;
48 }
49
50 namespace widgets {
51 #ifdef ENABLE_DECODE
52 class DecoderMenu;
53 #endif
54 }
55
56 class MainWindow : public QMainWindow
57 {
58         Q_OBJECT
59
60 private:
61         static const QString WindowTitle;
62
63 public:
64         explicit MainWindow(DeviceManager &device_manager,
65                 std::string open_file_name = std::string(),
66                 std::string open_file_format = std::string(),
67                 QWidget *parent = 0);
68
69         ~MainWindow();
70
71         QAction* action_view_sticky_scrolling() const;
72         QAction* action_view_coloured_bg() const;
73         QAction* action_about() const;
74
75         std::shared_ptr<pv::view::View> get_active_view() const;
76
77         std::shared_ptr<pv::view::View> add_view(const QString &title,
78                 view::ViewType type, Session &session);
79
80         std::shared_ptr<Session> add_session();
81
82         void remove_session(std::shared_ptr<Session> session);
83
84 private:
85         void setup_ui();
86
87         void save_ui_settings();
88
89         void restore_ui_settings();
90
91 private:
92         void closeEvent(QCloseEvent *event);
93
94         virtual QMenu* createPopupMenu();
95
96         virtual bool restoreState(const QByteArray &state, int version = 0);
97
98 private Q_SLOTS:
99         void on_add_view(const QString &title, view::ViewType type,
100                 Session *session);
101
102         void on_focus_changed();
103
104         void on_new_session();
105         void on_session_name_changed();
106         void on_new_view(Session *session);
107         void on_view_close_clicked();
108
109         void on_actionViewStickyScrolling_triggered();
110
111         void on_actionViewColouredBg_triggered();
112
113         void on_actionAbout_triggered();
114
115 private:
116         DeviceManager &device_manager_;
117
118         std::list< std::shared_ptr<Session> > sessions_;
119
120         std::map< std::shared_ptr<QDockWidget>,
121                 std::shared_ptr<pv::view::View> > view_docks_;
122
123         QAction *const action_view_sticky_scrolling_;
124         QAction *const action_view_coloured_bg_;
125         QAction *const action_about_;
126 };
127
128 } // namespace pv
129
130 #endif // PULSEVIEW_PV_MAINWINDOW_HPP