All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
WindowManager.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-2014 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 _WINDOWMANAGER_HH_
18 #define _WINDOWMANAGER_HH_
19 
20 #include <string>
21 #include <vector>
22 
24 #include "gazebo/util/system.hh"
25 
26 namespace Ogre
27 {
28  class RenderWindow;
29 }
30 
31 namespace gazebo
32 {
33  namespace rendering
34  {
37 
41  {
43  public: WindowManager();
44 
46  public: virtual ~WindowManager();
47 
49  public: void Fini();
50 
55  public: int CreateWindow(const std::string &_ogreHandle,
56  uint32_t _width,
57  uint32_t _height);
58 
62  public: void SetCamera(int _windowId, CameraPtr _camera);
63 
68  public: void Resize(uint32_t _id, int _width, int _height);
69 
72  public: void Moved(uint32_t _id);
73 
77  public: float GetAvgFPS(uint32_t _id);
78 
82  public: uint32_t GetTriangleCount(uint32_t _id);
83 
87  public: Ogre::RenderWindow *GetWindow(uint32_t _id);
88 
90  private: std::vector<Ogre::RenderWindow *> windows;
91 
93  private: static uint32_t windowCounter;
94  };
96  }
97 }
98 #endif
99 
100 
Class to mangage render windows.
Definition: WindowManager.hh:40
boost::shared_ptr< Camera > CameraPtr
Definition: RenderTypes.hh:80
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:48