StateDialog.h
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5  *
6  * ArmarX is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  *
10  * ArmarX is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  * @package
19  * @author
20  * @date
21  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22  * GNU General Public License
23  */
24 #pragma once
25 
26 
27 #include <QDialog>
28 #include <QErrorMessage>
29 
33 
34 #include "../../../StatechartViewerPlugin/model/State.h"
35 
36 class QFileDialog;
37 
38 namespace armarx
39 {
40  class StatechartEditorParameterEditor;
41  class StateParameterEditor;
42 } // namespace armarx
43 
44 namespace armarx::Ui
45 {
46  class StateDialog;
47 }
48 
49 namespace armarx
50 {
51  class StateDialog : public QDialog
52  {
53  Q_OBJECT
54 
55  public:
56  explicit StateDialog(statechartmodel::StateInstancePtr stateInstance,
57  Ice::CommunicatorPtr communicator,
58  VariantInfoPtr variantInfo,
59  StatechartProfilePtr currentProfile,
60  bool locked,
61  bool readOnly,
62  QPointer<TipDialog> tipDialog,
63  QWidget* parent = 0);
64  ~StateDialog() override;
65 
69  QString getStateInstanceName() const;
70  QString getStateName() const;
71  QString getProxyName() const;
72  QString getDescription() const;
74 
75  private slots:
76  void eventNameComboboxChanged(const QString& eventName);
77  void eventButtonAdd();
78  void eventButtonDelete();
79  void eventDescriptionChanged();
80  void loadLibrary();
81  void setBlackLists();
82  void setLockStatus(bool unlock);
83  void updateLinkHint(int, QString);
84 
85 
86  private:
88  getUpdatedParameters(const statechartmodel::StateParameterMap& source,
89  const armarx::StatechartEditorParameterEditor& parameterEditor) const;
90  // statechartmodel::StateParameterMap getParameters(const armarx::StatechartEditorParameterEditor &parameterEditor) const;
91 
92  Ui::StateDialog* ui;
94  QMap<QString, QString> eventDescriptionMap;
95  QFileDialog* fileDialog;
96  static QMap<QString, DynamicLibraryPtr> Libraries;
97  Ice::CommunicatorPtr communicator;
98  VariantInfoPtr variantInfo;
99  StatechartProfilePtr currentProfile;
100  QPointer<TipDialog> tipDialog;
101  bool readOnly;
102 
103  // QWidget interface
104  protected:
105  void showEvent(QShowEvent*) override;
106  };
107 
108 
109 } // namespace armarx
armarx::Ui
Definition: GuiUseCaseSelector.h:33
armarx::StateDialog::StateDialog
StateDialog(statechartmodel::StateInstancePtr stateInstance, Ice::CommunicatorPtr communicator, VariantInfoPtr variantInfo, StatechartProfilePtr currentProfile, bool locked, bool readOnly, QPointer< TipDialog > tipDialog, QWidget *parent=0)
Definition: StateDialog.cpp:48
armarx::StateDialog::getProxyName
QString getProxyName() const
Definition: StateDialog.cpp:283
DynamicLibrary.h
armarx::StateDialog
Definition: StateDialog.h:51
armarx::statechartmodel::EventList
QList< EventPtr > EventList
Definition: XmlWriter.h:47
armarx::StatechartProfilePtr
std::shared_ptr< class StatechartProfile > StatechartProfilePtr
Definition: StatechartContext.h:51
armarx::statechartmodel::StateInstancePtr
std::shared_ptr< StateInstance > StateInstancePtr
Definition: StateInstance.h:146
IceInternal::Handle<::Ice::Communicator >
armarx::StateDialog::getInputParams
statechartmodel::StateParameterMap getInputParams() const
Definition: StateDialog.cpp:229
armarx::statechartmodel::StateParameterMap
QMap< QString, StateParameterPtr > StateParameterMap
Definition: StateParameter.h:46
StatechartProfiles.h
armarx::StateDialog::~StateDialog
~StateDialog() override
Definition: StateDialog.cpp:223
boost::source
Vertex source(const detail::edge_base< Directed, Vertex > &e, const PCG &)
Definition: point_cloud_graph.h:661
armarx::StateDialog::showEvent
void showEvent(QShowEvent *) override
Definition: StateDialog.cpp:479
armarx::StateDialog::getStateInstanceName
QString getStateInstanceName() const
Definition: StateDialog.cpp:271
armarx::StateDialog::getDescription
QString getDescription() const
Definition: StateDialog.cpp:289
armarx::StatechartEditorParameterEditor
Definition: StatechartEditorParameterEditor.h:58
armarx::StateDialog::getLocalParams
statechartmodel::StateParameterMap getLocalParams() const
Definition: StateDialog.cpp:243
armarx::VariantInfoPtr
std::shared_ptr< VariantInfo > VariantInfoPtr
Definition: VariantInfo.h:39
armarx::StateDialog::getStateName
QString getStateName() const
Definition: StateDialog.cpp:277
armarx::StateDialog::getOutgoingEvents
statechartmodel::EventList getOutgoingEvents() const
Definition: StateDialog.cpp:295
armarx::StateDialog::getOutputParams
statechartmodel::StateParameterMap getOutputParams() const
Definition: StateDialog.cpp:257
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27
VariantInfo.h