StairsItemPrivate.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_BUILDING_STAIRSITEM_PRIVATE_HH_
19 #define _GAZEBO_GUI_BUILDING_STAIRSITEM_PRIVATE_HH_
20 
21 #include "gazebo/gui/qt.h"
22 
23 namespace gazebo
24 {
25  namespace gui
26  {
27  class StairsInspectorDialog;
28 
31  {
33  public: double stairsDepth;
34 
36  public: double stairsHeight;
37 
39  public: double stairsWidth;
40 
42  public: QPointF stairsPos;
43 
45  public: double stairsElevation;
46 
48  public: int stairsSteps;
49 
52  };
53  }
54 }
55 #endif
double stairsHeight
Height of staircase item in pixels.
Definition: StairsItemPrivate.hh:36
int stairsSteps
Number of steps in the staircase item.
Definition: StairsItemPrivate.hh:48
StairsInspectorDialog * inspector
Inspector for configuring the staircase item.
Definition: StairsItemPrivate.hh:51
double stairsWidth
Width of staircase item in pixels.
Definition: StairsItemPrivate.hh:39
double stairsDepth
Depth of staircase item in pixels.
Definition: StairsItemPrivate.hh:33
QPointF stairsPos
Scene position of staircase item in pixel coordinates.
Definition: StairsItemPrivate.hh:42
Private data for the StairsItem class.
Definition: StairsItemPrivate.hh:30
Dialog for configuring a staircase item.
Definition: StairsInspectorDialog.hh:41
double stairsElevation
Elevation of staircase item in pixels.
Definition: StairsItemPrivate.hh:45