WallInspectorDialogPrivate.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 #ifndef _GAZEBO_GUI_BUILDING_WALLINSPECTORDIALOGPRIVATE_HH_
18 #define _GAZEBO_GUI_BUILDING_WALLINSPECTORDIALOGPRIVATE_HH_
19 
20 #include "gazebo/gui/qt.h"
21 
22 namespace gazebo
23 {
24  namespace gui
25  {
29  {
32  public: QDoubleSpinBox *startXSpinBox;
33 
36  public: QDoubleSpinBox *startYSpinBox;
37 
40  public: QDoubleSpinBox *endXSpinBox;
41 
44  public: QDoubleSpinBox *endYSpinBox;
45 
47  public: QDoubleSpinBox *heightSpinBox;
48 
50  public: QDoubleSpinBox *thicknessSpinBox;
51 
53  public: QDoubleSpinBox *lengthSpinBox;
54 
56  public: QLabel *wallNameLabel;
57  };
58  }
59 }
60 #endif
QDoubleSpinBox * endYSpinBox
Spin box for configuring the Y end position of the wall segment.
Definition: WallInspectorDialogPrivate.hh:44
QDoubleSpinBox * startYSpinBox
Spin box for configuring the Y start position of the wall segment.
Definition: WallInspectorDialogPrivate.hh:36
QDoubleSpinBox * thicknessSpinBox
Spin box for configuring the thickness of the wall.
Definition: WallInspectorDialogPrivate.hh:50
QDoubleSpinBox * heightSpinBox
Spin box for configuring the height of the wall.
Definition: WallInspectorDialogPrivate.hh:47
QDoubleSpinBox * endXSpinBox
Spin box for configuring the X end position of the wall segment.
Definition: WallInspectorDialogPrivate.hh:40
QDoubleSpinBox * startXSpinBox
Spin box for configuring the X start position of the wall segment.
Definition: WallInspectorDialogPrivate.hh:32
QDoubleSpinBox * lengthSpinBox
Spin box for configuring the length of the wall segment.
Definition: WallInspectorDialogPrivate.hh:53
QLabel * wallNameLabel
Label that holds the name of the wall.
Definition: WallInspectorDialogPrivate.hh:56
Definition: WallInspectorDialogPrivate.hh:28