2 * This file is part of the PulseView project.
4 * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
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.
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.
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
21 #ifndef PULSEVIEW_PV_MAINWINDOW_HPP
22 #define PULSEVIEW_PV_MAINWINDOW_HPP
28 #include <QMainWindow>
30 #include "session.hpp"
31 #include "view/viewwidget.hpp"
56 class MainWindow : public QMainWindow
61 explicit MainWindow(DeviceManager &device_manager,
62 std::string open_file_name = std::string(),
63 std::string open_file_format = std::string(),
68 QAction* action_view_sticky_scrolling() const;
69 QAction* action_view_coloured_bg() const;
70 QAction* action_about() const;
72 std::shared_ptr<pv::view::View> get_active_view() const;
74 std::shared_ptr<pv::view::View> add_view(const QString &title,
75 view::ViewType type, Session &session);
77 std::shared_ptr<Session> add_session();
82 void save_ui_settings();
84 void restore_ui_settings();
87 void closeEvent(QCloseEvent *event);
89 virtual QMenu* createPopupMenu();
91 virtual bool restoreState(const QByteArray &state, int version = 0);
94 void on_add_view(const QString &title, view::ViewType type,
97 void on_actionViewStickyScrolling_triggered();
99 void on_actionViewColouredBg_triggered();
101 void on_actionAbout_triggered();
104 DeviceManager &device_manager_;
106 std::vector< std::shared_ptr<Session> > sessions_;
108 std::map< std::shared_ptr<QDockWidget>,
109 std::shared_ptr<pv::view::View> > view_docks_;
111 QAction *const action_view_sticky_scrolling_;
112 QAction *const action_view_coloured_bg_;
113 QAction *const action_about_;
118 #endif // PULSEVIEW_PV_MAINWINDOW_HPP