StatechartEditorMainWindow.h
Go to the documentation of this file.
1 /*
2 * This file is part of ArmarX.
3 *
4 * ArmarX is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * ArmarX is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * @package ArmarX::
17 * @author Mirko Waechter ( mirko.waechter at kit dot edu)
18 * @date 2014
19 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20 * GNU General Public License
21 */
22 
23 #pragma once
24 
25 #include <memory>
26 
27 #include <QMainWindow>
28 #include <QTreeView>
29 
32 
33 #include <ArmarXGui/gui-plugins/StatechartEditorPlugin/view/ui_StatechartEditorMainWindow.h>
34 
35 namespace armarx
36 {
37  class StateTabWidget;
38  class CppHighlighter;
39 } // namespace armarx
40 
41 namespace armarx::Ui
42 {
43  class StatechartEditorMainWindow;
44 }
45 
46 namespace armarx
47 {
48  class StatechartEditorMainWindow : public QMainWindow
49  {
50  Q_OBJECT
51  friend class StateEditorController;
53 
54  public:
55  explicit StatechartEditorMainWindow(QWidget* parent = 0);
56  ~StatechartEditorMainWindow() override;
58 
59  void
61  {
62  this->communicator = communicator;
63  }
64 
65  void
67  {
68  this->variantInfo = variantInfo;
69  }
70 
71  void
73  {
74  this->currentProfile = currentProfile;
75  }
76 
77  void setTipDialog(QPointer<TipDialog> tipDialog);
78 
79  Ui::StatechartEditorMainWindow*
80  getUI() const
81  {
82  return ui;
83  }
84 
85  public slots:
87  void deleteSelectedStates();
88  void zoomToViewAll();
89  void connectOverviewToTab(int tabIndex);
90  void layoutState(
92  void addEndState();
93  private slots:
94  void on_actionSave_as_Image_file_triggered();
95 
96  private:
97  void setupStatechartGroupsToolbar();
98 
99  QToolBar* stGroupToolBar;
100  Ui::StatechartEditorMainWindow* ui;
101  CppHighlighter* highlighter;
102  Ice::CommunicatorPtr communicator;
103  VariantInfoPtr variantInfo;
104  StatechartProfilePtr currentProfile;
105  QPointer<TipDialog> tipDialog;
106  };
107 
108 
109 } // namespace armarx
armarx::Ui
Definition: GuiUseCaseSelector.h:33
armarx::StatechartEditorMainWindow::setCurrentProfile
void setCurrentProfile(StatechartProfilePtr currentProfile)
Definition: StatechartEditorMainWindow.h:72
armarx::StatechartEditorMainWindow::originalZoomCurrentState
void originalZoomCurrentState()
Definition: StatechartEditorMainWindow.cpp:70
armarx::StatechartEditorMainWindow::connectOverviewToTab
void connectOverviewToTab(int tabIndex)
Definition: StatechartEditorMainWindow.cpp:95
armarx::StatechartEditorMainWindow::setVariantInfo
void setVariantInfo(VariantInfoPtr variantInfo)
Definition: StatechartEditorMainWindow.h:66
armarx::StatechartProfilePtr
std::shared_ptr< class StatechartProfile > StatechartProfilePtr
Definition: StatechartContext.h:51
armarx::StateEditorController
Definition: StateEditorController.h:49
armarx::statechartmodel::StateInstancePtr
std::shared_ptr< StateInstance > StateInstancePtr
Definition: StateInstance.h:146
IceInternal::Handle<::Ice::Communicator >
armarx::StatechartEditorMainWindow::getUI
Ui::StatechartEditorMainWindow * getUI() const
Definition: StatechartEditorMainWindow.h:80
armarx::StatechartEditorMainWindow::~StatechartEditorMainWindow
~StatechartEditorMainWindow() override
Definition: StatechartEditorMainWindow.cpp:52
StatechartProfiles.h
armarx::StatechartEditorMainWindow::getStateTabWidget
StateTabWidget * getStateTabWidget() const
Definition: StatechartEditorMainWindow.cpp:58
armarx::StatechartEditorController
The StatechartEditorController class is the controller of the main widget of the Statechart Editor.
Definition: StatechartEditorController.h:130
armarx::StateTabWidget
Definition: StateTabWidget.h:35
armarx::StatechartEditorMainWindow
Definition: StatechartEditorMainWindow.h:48
armarx::StatechartEditorMainWindow::deleteSelectedStates
void deleteSelectedStates()
Definition: StatechartEditorMainWindow.cpp:79
armarx::StatechartEditorMainWindow::setCommunicator
void setCommunicator(Ice::CommunicatorPtr communicator)
Definition: StatechartEditorMainWindow.h:60
armarx::CppHighlighter
Definition: CppHighlighter.h:30
armarx::StatechartEditorMainWindow::zoomToViewAll
void zoomToViewAll()
Definition: StatechartEditorMainWindow.cpp:175
armarx::VariantInfoPtr
std::shared_ptr< VariantInfo > VariantInfoPtr
Definition: VariantInfo.h:39
armarx::StatechartEditorMainWindow::StatechartEditorMainWindow
StatechartEditorMainWindow(QWidget *parent=0)
Definition: StatechartEditorMainWindow.cpp:43
armarx::StatechartEditorMainWindow::layoutState
void layoutState(statechartmodel::StateInstancePtr instance=statechartmodel::StateInstancePtr())
Definition: StatechartEditorMainWindow.cpp:113
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
armarx::StatechartEditorMainWindow::setTipDialog
void setTipDialog(QPointer< TipDialog > tipDialog)
Definition: StatechartEditorMainWindow.cpp:64
VariantInfo.h
armarx::StatechartEditorMainWindow::addEndState
void addEndState()
Definition: StatechartEditorMainWindow.cpp:144