AlignWidgetPrivate.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014-2015 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 _ALIGN_WIDGET_PRIVATE_HH_
18 #define _ALIGN_WIDGET_PRIVATE_HH_
19 
20 #include "gazebo/gui/qt.h"
21 
22 namespace gazebo
23 {
24  namespace gui
25  {
29  {
31  public: QToolBar *xAlignBar;
32 
34  public: QToolBar *yAlignBar;
35 
37  public: QToolBar *zAlignBar;
38 
40  public: QSignalMapper *alignSignalMapper;
41 
43  public: int alignRelativeTarget;
44  };
45  }
46 }
47 #endif
QToolBar * yAlignBar
Toolbar containing y alignment actions.
Definition: AlignWidgetPrivate.hh:34
QToolBar * xAlignBar
Toolbar containing x alignment actions.
Definition: AlignWidgetPrivate.hh:31
Private data for the AlignWidget class.
Definition: AlignWidgetPrivate.hh:28
QSignalMapper * alignSignalMapper
Qt Signal mapper for mapping align actions.
Definition: AlignWidgetPrivate.hh:40
int alignRelativeTarget
Keep track whether to align with first or last selected entity.
Definition: AlignWidgetPrivate.hh:43
QToolBar * zAlignBar
Toolbar containing z alignment actions.
Definition: AlignWidgetPrivate.hh:37