RemoteGui.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  * @author Fabian Reister ( fabian dot reister at kit dot edu )
17  * @date 2021
18  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
19  * GNU General Public License
20  */
21 
22 #pragma once
23 
24 #include <mutex>
25 #include <string>
26 
27 #include <Eigen/Core>
28 #include <Eigen/Geometry>
29 
31 
32 #include <ArmarXGui/interface/RemoteGuiInterface.h>
36 
38 {
39  class Component;
40 
41  class RemoteGui
42  {
43  public:
44  RemoteGui(const RemoteGuiInterfacePrx& remoteGui, Component& navigator);
45 
46  ~RemoteGui();
47 
48  void shutdown();
49 
50  void enable();
51  void disable();
52 
53  void reset();
54 
55  private:
56  std::mutex mtx;
57 
58  std::mutex handleEventsMtx;
59  RemoteGuiInterfacePrx remoteGui;
60 
62 
63  Component& navigator;
64 
66 
67  void createRemoteGuiTab();
68 
69  // thread function
70  void run();
71 
72  void handleEvents(armarx::RemoteGui::TabProxy& tab);
73 
74  const std::string REMOTE_GUI_TAB_MAME = "Navigator";
75 
76  struct RemoteGuiTab : armarx::RemoteGui::Client::Tab
77  {
79 
80  struct
81  {
83 
90  } targetPoseGroup;
91 
92  struct
93  {
95 
97 
98  // Control buttons for this navigator client
101  armarx::RemoteGui::Client::Button continueButton;
103 
104  } controlGroup;
105  };
106 
107  RemoteGuiTab tab;
108  };
109 
110 } // namespace armarx::navigation::components::navigator
armarx::navigation::components::navigator::RemoteGui::~RemoteGui
~RemoteGui()
Definition: RemoteGui.cpp:48
armarx::navigation::components::navigator::RemoteGui::shutdown
void shutdown()
Definition: RemoteGui.cpp:328
armarx::RemoteGui::Client::Tab
Definition: Tab.h:15
armarx::navigation::components::navigator::RemoteGui::reset
void reset()
Definition: RemoteGui.cpp:373
RunningTask.h
armarx::navigation::components::navigator::Component
Definition: Component.h:87
Tab.h
armarx::RemoteGui::TabProxy
Definition: WidgetProxy.h:17
armarx::RemoteGui::Client::GroupBox
Definition: Widgets.h:193
armarx::navigation::components::navigator::RemoteGui::RemoteGui
RemoteGui(const RemoteGuiInterfacePrx &remoteGui, Component &navigator)
Definition: RemoteGui.cpp:36
armarx::navigation::components::navigator::RemoteGui::disable
void disable()
Definition: RemoteGui.cpp:355
WidgetProxy.h
armarx::navigation::components::navigator::RemoteGui
Definition: RemoteGui.h:41
armarx::RemoteGui::Client::HBoxLayout
Definition: Widgets.h:160
armarx::navigation::components::navigator::RemoteGui::enable
void enable()
Definition: RemoteGui.cpp:342
IceUtil::Handle
Definition: forward_declarations.h:30
Widgets.h
armarx::RemoteGui::Client::Button
Definition: Widgets.h:120
armarx::RemoteGui::Client::FloatSpinBox
Definition: Widgets.h:93
armarx::navigation::components::navigator
This file is part of ArmarX.
Definition: Component.cpp:83