]> sigrok.org Git - pulseview.git/blame - pv/mainwindow.hpp
Add "save selection range as..." to the export menu on the toolbar
[pulseview.git] / pv / mainwindow.hpp
CommitLineData
d7bed479 1/*
b3f22de0 2 * This file is part of the PulseView project.
d7bed479
JH
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
7a01bd36
JH
21#ifndef PULSEVIEW_PV_MAINWINDOW_HPP
22#define PULSEVIEW_PV_MAINWINDOW_HPP
d7bed479 23
18203d86 24#include <list>
dd3fd4df 25#include <map>
f9abf97e 26#include <memory>
b1264f56 27
dd3fd4df
JH
28#include <glibmm/variant.h>
29
d7bed479
JH
30#include <QMainWindow>
31
f65cd27b 32#include "session.hpp"
2953961c 33
269528f5
JH
34struct srd_decoder;
35
7d5425ef 36class QVBoxLayout;
7d5425ef 37
51cf49fe 38namespace sigrok {
dd3fd4df 39class InputFormat;
998b89fd 40class OutputFormat;
51cf49fe
JH
41}
42
51e77110
JH
43namespace pv {
44
107ca6d3 45class DeviceManager;
94574501 46
f4c92e1c 47namespace toolbars {
404aad0e 48class ContextBar;
7c657094 49class MainBar;
f4c92e1c 50}
51e77110
JH
51
52namespace view {
53class View;
54}
55
f0d37dab 56namespace widgets {
e79171dc 57#ifdef ENABLE_DECODE
f0d37dab 58class DecoderMenu;
19be0af1 59#endif
f0d37dab
JH
60}
61
d7bed479
JH
62class MainWindow : public QMainWindow
63{
64 Q_OBJECT
65
619dfb11
JH
66private:
67 /**
68 * Name of the setting used to remember the directory
69 * containing the last file that was opened.
70 */
71 static const char *SettingOpenDirectory;
72
73 /**
74 * Name of the setting used to remember the directory
75 * containing the last file that was saved.
76 */
77 static const char *SettingSaveDirectory;
78
d7bed479 79public:
107ca6d3 80 explicit MainWindow(DeviceManager &device_manager,
e3c79b07
JH
81 std::string open_file_name = std::string(),
82 std::string open_file_format = std::string(),
1d478458 83 QWidget *parent = 0);
d7bed479 84
69654681
JH
85 QAction* action_open() const;
86 QAction* action_save_as() const;
d2fc6be9 87 QAction* action_save_selection_as() const;
69654681
JH
88 QAction* action_connect() const;
89 QAction* action_quit() const;
90 QAction* action_view_zoom_in() const;
91 QAction* action_view_zoom_out() const;
92 QAction* action_view_zoom_fit() const;
93 QAction* action_view_zoom_one_to_one() const;
c7b03d9d 94 QAction* action_view_sticky_scrolling() const;
69654681
JH
95 QAction* action_view_show_cursors() const;
96 QAction* action_about() const;
97
e79171dc 98#ifdef ENABLE_DECODE
0f90452b 99 QMenu* menu_decoder_add() const;
19be0af1 100#endif
0f90452b 101
4e7f5ba8
JH
102 void run_stop();
103
da30ecb7 104 void select_device(std::shared_ptr<devices::Device> device);
51cf49fe 105
998b89fd
JH
106public Q_SLOTS:
107 void export_file(std::shared_ptr<sigrok::OutputFormat> format);
ed43ef2e 108 void import_file(std::shared_ptr<sigrok::InputFormat> format);
998b89fd 109
d7bed479 110private:
7d5425ef
JH
111 void setup_ui();
112
e3c79b07
JH
113 void select_init_device();
114
115 void load_init_file(const std::string &file_name,
116 const std::string &format);
117
93f683ad
SA
118 void save_ui_settings();
119
120 void restore_ui_settings();
121
f2edb557
JH
122 void session_error(const QString text, const QString info_text);
123
107ca6d3 124 /**
079d39ea 125 * Updates the device list in the toolbar
107ca6d3 126 */
1c4c23b8 127 void update_device_list();
107ca6d3 128
e3c79b07
JH
129 void load_file(QString file_name,
130 std::shared_ptr<sigrok::InputFormat> format = nullptr,
131 const std::map<std::string, Glib::VariantBase> &options =
132 std::map<std::string, Glib::VariantBase>());
133
d2fc6be9
SA
134 void save_selection_to_file();
135
1c4c23b8 136private:
93f683ad
SA
137 void closeEvent(QCloseEvent *event);
138
1c4c23b8
JH
139 void keyReleaseEvent(QKeyEvent *event);
140
e9213170 141private Q_SLOTS:
ef7e3146
JH
142 void show_session_error(
143 const QString text, const QString info_text);
144
145 void on_actionOpen_triggered();
0fbda3c2 146 void on_actionSaveAs_triggered();
d2fc6be9 147 void on_actionSaveSelectionAs_triggered();
ef7e3146
JH
148 void on_actionQuit_triggered();
149
150 void on_actionConnect_triggered();
151
152 void on_actionViewZoomIn_triggered();
153
154 void on_actionViewZoomOut_triggered();
155
ca46b534
JH
156 void on_actionViewZoomFit_triggered();
157
d1e7d82c
JH
158 void on_actionViewZoomOneToOne_triggered();
159
c7b03d9d
SA
160 void on_actionViewStickyScrolling_triggered();
161
ef7e3146
JH
162 void on_actionViewShowCursors_triggered();
163
164 void on_actionAbout_triggered();
165
f0d37dab 166 void add_decoder(srd_decoder *decoder);
7dd093df 167
ef7e3146 168 void capture_state_changed(int state);
20f81a58 169 void device_selected();
ef7e3146 170
c7b03d9d
SA
171 void sticky_scrolling_changed(bool state);
172
ce11b2ea
SA
173 void always_zoom_to_fit_changed(bool state);
174
7d5425ef 175private:
8dbbc7f0 176 DeviceManager &device_manager_;
d4984fe7 177
2b81ae46 178 Session session_;
18203d86 179
8dbbc7f0 180 pv::view::View *view_;
30236a54 181
8dbbc7f0
JH
182 QWidget *central_widget_;
183 QVBoxLayout *vertical_layout_;
7d5425ef 184
7c657094 185 toolbars::MainBar *main_bar_;
69654681
JH
186
187 QAction *const action_open_;
188 QAction *const action_save_as_;
d2fc6be9 189 QAction *const action_save_selection_as_;
69654681
JH
190 QAction *const action_connect_;
191 QAction *const action_quit_;
192 QAction *const action_view_zoom_in_;
193 QAction *const action_view_zoom_out_;
194 QAction *const action_view_zoom_fit_;
195 QAction *const action_view_zoom_one_to_one_;
c7b03d9d 196 QAction *const action_view_sticky_scrolling_;
69654681
JH
197 QAction *const action_view_show_cursors_;
198 QAction *const action_about_;
0f90452b 199
e79171dc 200#ifdef ENABLE_DECODE
0f90452b 201 QMenu *const menu_decoders_add_;
19be0af1 202#endif
d7bed479
JH
203};
204
51e77110
JH
205} // namespace pv
206
7a01bd36 207#endif // PULSEVIEW_PV_MAINWINDOW_HPP