WallSegmentItemPrivate.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_WALLSEGMENTITEM_PRIVATE_HH_
19 #define _GAZEBO_GUI_BUILDING_WALLSEGMENTITEM_PRIVATE_HH_
20 
21 #include "gazebo/gui/qt.h"
22 
23 namespace gazebo
24 {
25  namespace gui
26  {
27  class MeasureItem;
28  class WallInspectorDialog;
29 
32  {
34  public: double wallThickness;
35 
37  public: double wallHeight;
38 
40  public: MeasureItem *measure;
41 
43  public: QAction *openInspectorAct;
44 
46  public: QAction *deleteItemAct;
47 
50  };
51  }
52 }
53 #endif
MeasureItem * measure
This wall segment's measure item.
Definition: WallSegmentItemPrivate.hh:40
Private data for the WallSegmentItem class.
Definition: WallSegmentItemPrivate.hh:31
double wallHeight
Height of the wall segment in meters.
Definition: WallSegmentItemPrivate.hh:37
Measurement lines and values.
Definition: MeasureItem.hh:40
QAction * deleteItemAct
Qt action for deleting the wall segment item.
Definition: WallSegmentItemPrivate.hh:46
double wallThickness
Thickness of the wall segment in the 2d view, in pixels.
Definition: WallSegmentItemPrivate.hh:34
WallInspectorDialog * inspector
Inspector for configuring the wall segment item.
Definition: WallSegmentItemPrivate.hh:49
Dialog for configuring a wall item.
Definition: WallInspectorDialog.hh:41
QAction * openInspectorAct
Qt action for opening the inspector.
Definition: WallSegmentItemPrivate.hh:43