main_window.h
Go to the documentation of this file.
1 /*********************************************************************
2  *
3  * Software License Agreement
4  *
5  * Copyright (c) 2020,
6  * TU Dortmund - Institute of Control Theory and Systems Engineering.
7  * All rights reserved.
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program. If not, see <https://www.gnu.org/licenses/>.
21  *
22  * Authors: Christoph Rösmann
23  *********************************************************************/
24 
25 #ifndef SRC_GUI_INCLUDE_CORBO_GUI_MAIN_WINDOW_H_
26 #define SRC_GUI_INCLUDE_CORBO_GUI_MAIN_WINDOW_H_
27 
34 
35 #include <QAction>
36 #include <QDockWidget>
37 #include <QMainWindow>
38 #include <QMenu>
39 #include <QThread>
40 
41 #include <array>
42 #include <iostream>
43 #include <memory>
44 #include <string>
45 #include <vector>
46 
47 namespace corbo {
48 namespace gui {
49 
50 const QString OrganizationName = "rst";
51 const QString ApplicationName = "control-box-rst";
52 
68 class corboMainWindow : public QMainWindow
69 {
70  Q_OBJECT
71 
72  public:
73  explicit corboMainWindow(QWidget* parent = 0);
74  explicit corboMainWindow(std::shared_ptr<MasterServiceClient> rpc_client, QWidget* parent = 0);
75  virtual ~corboMainWindow();
76 
77  signals:
78  void requestRpcServerAddress(const QString& address);
79 
80  protected:
81  void closeEvent(QCloseEvent* event) override;
82 
83  void createActions();
84  void createMenus();
85  void createStatusBar();
86  void createDockWindows();
87  void addMenuActions();
89 
90  void configureRpcWorker();
91 
92  void readWindowSettings();
93  void writeWindowSettings();
94 
95  protected slots:
96  void setDefaultLayout();
97  void addToRecentFileAction(const QString& filename);
98 
99  private slots:
100  void displayStatus(const QString& status, double duration_ms = 0);
101  void displayStatusReady() { displayStatus(tr("Ready")); }
102  void aboutPopup();
103  void updatedRpcClient(std::shared_ptr<MasterServiceClient> client);
104 
105  private:
107  std::shared_ptr<MasterServiceClient> _rpc_client;
108 
109  QWidget* _central_widget;
110 
113  QAction* _action_remove_signals;
114  QAction* _action_close_scopes;
116  QAction* _action_default_layout;
118  QAction* _action_exit_program;
119  QAction* _action_about;
120  std::array<QAction*, 6> _action_recent_files; // number of recent files
121 
122  QMenu* _menu_file;
123  QMenu* _menu_parameters;
125  QMenu* _menu_scopes;
126  QMenu* _menu_signals;
127  QMenu* _menu_view;
128  QMenu* _menu_help;
129 
130  QDockWidget* _dock_toolbox_widget;
131  QDockWidget* _dock_signal_widget;
132  QDockWidget* _dock_scope_widget;
133 
137 
138  QThread _rpc_worker_thread;
139  QString _rpc_server_address = "localhost:50051";
140 };
141 
142 } // namespace gui
143 } // namespace corbo
144 
145 #endif // SRC_GUI_INCLUDE_CORBO_GUI_MAIN_WINDOW_H_
corbo::gui::corboMainWindow::displayStatus
void displayStatus(const QString &status, double duration_ms=0)
Definition: main_window.cpp:364
corbo::gui::corboMainWindow::closeEvent
void closeEvent(QCloseEvent *event) override
Definition: main_window.cpp:136
corbo::gui::corboMainWindow::_dock_signal_widget
QDockWidget * _dock_signal_widget
Definition: main_window.h:175
corbo::gui::corboMainWindow::writeWindowSettings
void writeWindowSettings()
Definition: main_window.cpp:355
corbo::gui::corboMainWindow::_menu_parameters
QMenu * _menu_parameters
Definition: main_window.h:167
corbo::gui::ScopeCollectionWidget
Definition: scope_collection_widget.h:82
signal_collection_widget.h
corbo::gui::corboMainWindow::_dock_scope_widget
QDockWidget * _dock_scope_widget
Definition: main_window.h:176
corbo
Definition: communication/include/corbo-communication/utilities.h:37
corbo::gui::corboMainWindow::_action_exit_program
QAction * _action_exit_program
Definition: main_window.h:162
corbo::gui::corboMainWindow::_action_load_parameters_file
QAction * _action_load_parameters_file
Definition: main_window.h:156
corbo::gui::corboMainWindow::createMenus
void createMenus()
Definition: main_window.cpp:207
corbo::gui::corboMainWindow::_rpc_server_address
QString _rpc_server_address
Definition: main_window.h:183
corbo::gui::corboMainWindow::_menu_scopes
QMenu * _menu_scopes
Definition: main_window.h:169
corbo::gui::corboMainWindow::createDockWindows
void createDockWindows()
Definition: main_window.cpp:234
main_service_client.h
signal_helper.h
corbo::gui::corboMainWindow::createStatusBar
void createStatusBar()
Definition: main_window.cpp:232
corbo::gui::corboMainWindow::requestRpcServerAddress
void requestRpcServerAddress(const QString &address)
corbo::gui::corboMainWindow::_menu_view
QMenu * _menu_view
Definition: main_window.h:171
corbo::gui::corboMainWindow::_menu_recent_parameters
QMenu * _menu_recent_parameters
Definition: main_window.h:168
corbo::gui::corboMainWindow::createActions
void createActions()
Definition: main_window.cpp:138
corbo::gui::corboMainWindow::_signal_collection_widget
SignalCollectionWidget * _signal_collection_widget
Definition: main_window.h:179
corbo::gui::OrganizationName
const QString OrganizationName
Definition: main_window.h:94
scope_collection_widget.h
corbo::gui::corboMainWindow::updateRecentFileActions
void updateRecentFileActions()
Definition: main_window.cpp:380
corbo::gui::corboMainWindow::_rpc_client
std::shared_ptr< MasterServiceClient > _rpc_client
Definition: main_window.h:151
corbo::gui::corboMainWindow::_rpc_worker_thread
QThread _rpc_worker_thread
Definition: main_window.h:182
corbo::gui::corboMainWindow::~corboMainWindow
virtual ~corboMainWindow()
Definition: main_window.cpp:130
corbo::gui::corboMainWindow::_action_close_scopes
QAction * _action_close_scopes
Definition: main_window.h:158
relicense.filename
filename
Definition: relicense.py:57
corbo::gui::corboMainWindow::_action_recent_files
std::array< QAction *, 6 > _action_recent_files
Definition: main_window.h:164
corbo::gui::corboMainWindow::_action_rescale_scope_axes
QAction * _action_rescale_scope_axes
Definition: main_window.h:159
corbo::gui::corboMainWindow::_dock_toolbox_widget
QDockWidget * _dock_toolbox_widget
Definition: main_window.h:174
corbo::gui::corboMainWindow::_central_widget
QWidget * _central_widget
Definition: main_window.h:153
corbo::gui::corboMainWindow::_scope_collection_widget
ScopeCollectionWidget * _scope_collection_widget
Definition: main_window.h:180
corbo::gui::corboMainWindow::_action_default_layout
QAction * _action_default_layout
Definition: main_window.h:160
corbo::gui::ToolboxWidget
Definition: toolbox_widget.h:90
corbo::gui::corboMainWindow::_menu_help
QMenu * _menu_help
Definition: main_window.h:172
corbo::gui::corboMainWindow::_action_rpc_server_address
QAction * _action_rpc_server_address
Definition: main_window.h:161
corbo::gui::corboMainWindow::_menu_file
QMenu * _menu_file
Definition: main_window.h:166
corbo::gui::corboMainWindow::setDefaultLayout
void setDefaultLayout()
Definition: main_window.cpp:319
corbo::gui::ApplicationName
const QString ApplicationName
Definition: main_window.h:95
corbo::gui::corboMainWindow::_signal_helper
SignalHelper::Ptr _signal_helper
Definition: main_window.h:150
corbo::gui::corboMainWindow::aboutPopup
void aboutPopup()
Definition: main_window.cpp:410
corbo::gui::corboMainWindow::readWindowSettings
void readWindowSettings()
Definition: main_window.cpp:341
corbo::gui::corboMainWindow::_action_about
QAction * _action_about
Definition: main_window.h:163
corbo::gui::corboMainWindow::addMenuActions
void addMenuActions()
Definition: main_window.cpp:296
rpc_connection_worker.h
toolbox_widget.h
corbo::gui::corboMainWindow::_action_remove_signals
QAction * _action_remove_signals
Definition: main_window.h:157
corbo::gui::corboMainWindow::_toolbox_widget
ToolboxWidget * _toolbox_widget
Definition: main_window.h:178
corbo::gui::corboMainWindow::configureRpcWorker
void configureRpcWorker()
Definition: main_window.cpp:417
corbo::gui::corboMainWindow::displayStatusReady
void displayStatusReady()
Definition: main_window.h:145
corbo::gui::corboMainWindow::corboMainWindow
corboMainWindow(QWidget *parent=0)
Definition: main_window.cpp:88
corbo::gui::SignalHelper::Ptr
std::shared_ptr< SignalHelper > Ptr
Definition: signal_helper.h:111
corbo::gui::corboMainWindow::updatedRpcClient
void updatedRpcClient(std::shared_ptr< MasterServiceClient > client)
Definition: main_window.cpp:435
corbo::gui::corboMainWindow::_menu_signals
QMenu * _menu_signals
Definition: main_window.h:170
corbo::gui::SignalCollectionWidget
Definition: signal_collection_widget.h:91
corbo::gui::corboMainWindow::_action_save_parameters_file
QAction * _action_save_parameters_file
Definition: main_window.h:155
corbo::gui::corboMainWindow::addToRecentFileAction
void addToRecentFileAction(const QString &filename)
Definition: main_window.cpp:397


control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:05:53