LinkInspectorPrivate.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015-2016 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 _GAZEBO_GUI_LINK_INSPECTOR_PRIVATE_HH_
19 #define _GAZEBO_GUI_LINK_INSPECTOR_PRIVATE_HH_
20 
21 #include <string>
22 
23 #include "gazebo/gui/qt.h"
24 
25 namespace gazebo
26 {
27  namespace gui
28  {
29  class CollisionConfig;
30  class LinkConfig;
31  class VisualConfig;
32 
35  {
37  public: QTabWidget *tabWidget;
38 
40  public: QLabel *linkNameLabel;
41 
44 
47 
50 
52  public: std::string linkId;
53  };
54  }
55 }
56 #endif
VisualConfig * visualConfig
Widget with configurable visual properties.
Definition: LinkInspectorPrivate.hh:46
QLabel * linkNameLabel
Label that displays the name of the link.
Definition: LinkInspectorPrivate.hh:40
CollisionConfig * collisionConfig
Widget with configurable collision properties.
Definition: LinkInspectorPrivate.hh:49
Private data for the LinkInspector class.
Definition: LinkInspectorPrivate.hh:34
A tab for configuring visual properties of a link.
Definition: VisualConfig.hh:68
LinkConfig * linkConfig
Widget with configurable link properties.
Definition: LinkInspectorPrivate.hh:43
QTabWidget * tabWidget
Main tab widget within the link inspector.
Definition: LinkInspectorPrivate.hh:37
std::string linkId
Unique id for this link.
Definition: LinkInspectorPrivate.hh:52
A tab for configuring properties of a link.
Definition: LinkConfig.hh:39
A tab for configuring collision properties of a link.
Definition: CollisionConfig.hh:68