Ignition Gazebo

API Reference

3.5.0
AlignTool.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2020 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 
18 #ifndef IGNITION_GAZEBO_GUI_ALIGNTOOL_HH_
19 #define IGNITION_GAZEBO_GUI_ALIGNTOOL_HH_
20 
21 #include <memory>
22 
23 #include <ignition/gui/Plugin.hh>
25 #include <ignition/rendering/Node.hh>
26 
27 namespace ignition
28 {
29 namespace gazebo
30 {
32  enum class AlignState
33  {
36  HOVER = 0,
39  RESET = 1,
41  ALIGN = 2,
43  NONE = 3
44  };
45 
47  enum class AlignAxis
48  {
50  ALIGN_X = 0,
52  ALIGN_Y = 1,
54  ALIGN_Z = 2
55  };
56 
57  class AlignToolPrivate;
58 
63  class AlignTool :
65  {
66  Q_OBJECT
67 
69  public: AlignTool();
70 
72  public: ~AlignTool() override;
73 
74  // Documentation inherited
75  public: void LoadConfig(const tinyxml2::XMLElement *_pluginElem) override;
76 
77  // Documentation inherited
78  public: void Update(const UpdateInfo &_info,
79  EntityComponentManager &_ecm) override;
80 
83  public slots: void OnAlignAxis(const QString &_mode);
84 
87  public slots: void OnAlignTarget(const QString &_target);
88 
90  public slots: void OnHoveredEntered();
91 
93  public slots: void OnHoveredExited();
94 
96  public slots: void OnAlign();
97 
100  public: void AddState(const AlignState &_state);
101 
104  public: void MakeTransparent(const rendering::NodePtr &_node);
105 
109  public: void MakeSolid(const rendering::NodePtr &_node);
110 
114  public: void Align();
115 
120  public: rendering::VisualPtr TopLevelVisual(rendering::ScenePtr &_scene,
121  rendering::VisualPtr &_visual) const;
122 
127  public: rendering::NodePtr TopLevelNode(rendering::ScenePtr &_scene,
128  rendering::NodePtr &_node) const;
129 
130  // Documentation inherited
131  protected: bool eventFilter(QObject *_obj, QEvent *_event) override;
132 
135  private: std::unique_ptr<AlignToolPrivate> dataPtr;
136  };
137 }
138 }
139 
140 #endif
Indicates an alignment relative to the x axis.
Indicates an alignment relative to the y axis.
Information passed to systems on the update callback.
Definition: Types.hh:37
AlignState
Enumeration of the states within the Align Tool.
Definition: AlignTool.hh:32
The EntityComponentManager constructs, deletes, and returns components and entities. A component can be of any class which inherits from components::BaseComponent.
Definition: EntityComponentManager.hh:64
Indicates the user is currently hovering the mouse over an align button.
AlignAxis
Enumeration of the axes to be aligned relative to.
Definition: AlignTool.hh:47
Indicates an alignment relative to the z axis.
Indicates the user is currently not utilizing the align tool.
Provides buttons for the align tool.
Definition: AlignTool.hh:63
Indicates a reset of the currently placed nodes, only occurs on a hover exit if the align button has ...
Indicates the user has clicked the align button.
This library is part of the Ignition Robotics project.
Base class for a GUI System.
Definition: GuiSystem.hh:44