All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RenderTypes.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2012 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 _RENDERTYPES_HH_
18 #define _RENDERTYPES_HH_
19 
20 #include <boost/shared_ptr.hpp>
21 
24 #define GZ_VISIBILITY_ALL 0x0FFFFFFF
25 
28 #define GZ_VISIBILITY_SELECTION 0x10000000
29 
32 #define GZ_VISIBILITY_GUI 0x00000001
33 
36 #define GZ_VISIBILITY_NOT_SELECTABLE 0x00000002
37 
38 namespace gazebo
39 {
40  namespace rendering
41  {
42  class Scene;
43  class Light;
44  class Camera;
45  class UserCamera;
46  class DepthCamera;
47  class GpuLaser;
48  class DynamicLines;
49  class Visual;
50  class LaserVisual;
51  class SonarVisual;
52  class WrenchVisual;
53  class CameraVisual;
54  class JointVisual;
55  class AxisVisual;
56  class ArrowVisual;
57  class ContactVisual;
58  class COMVisual;
59  class RFIDVisual;
60  class RFIDTagVisual;
61  class WindowManager;
62 
65  typedef boost::shared_ptr<Scene> ScenePtr;
66 
69  typedef boost::shared_ptr<Light> LightPtr;
70 
73  typedef boost::shared_ptr<Camera> CameraPtr;
74 
77  typedef boost::shared_ptr<UserCamera> UserCameraPtr;
78 
81  typedef boost::shared_ptr<DepthCamera> DepthCameraPtr;
82 
85  typedef boost::shared_ptr<GpuLaser> GpuLaserPtr;
86 
89  typedef boost::shared_ptr<DynamicLines> DynamicLinesPtr;
90 
93  typedef boost::shared_ptr<Visual> VisualPtr;
94 
97  typedef boost::shared_ptr<LaserVisual> LaserVisualPtr;
98 
101  typedef boost::shared_ptr<SonarVisual> SonarVisualPtr;
102 
105  typedef boost::shared_ptr<WrenchVisual> WrenchVisualPtr;
106 
109  typedef boost::shared_ptr<CameraVisual> CameraVisualPtr;
110 
113  typedef boost::shared_ptr<JointVisual> JointVisualPtr;
114 
117  typedef boost::shared_ptr<ContactVisual> ContactVisualPtr;
118 
121  typedef boost::shared_ptr<ArrowVisual> ArrowVisualPtr;
122 
125  typedef boost::shared_ptr<AxisVisual> AxisVisualPtr;
126 
129  typedef boost::shared_ptr<COMVisual> COMVisualPtr;
130 
133  typedef boost::shared_ptr<RFIDVisual> RFIDVisualPtr;
134 
137  typedef boost::shared_ptr<RFIDTagVisual> RFIDTagVisualPtr;
138 
141  typedef boost::shared_ptr<WindowManager> WindowManagerPtr;
142 
146  {
149 
152 
156 
159 
163 
167 
170  };
171  }
172 }
173 #endif