/usr/include/cegui-0.8.7/CEGUI/WindowRenderer.h is in libcegui-mk2-dev 0.8.7-1.3+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | /***********************************************************************
created: Jan 11 2006
author: Tomas Lindquist Olsen
purpose: Defines interface for the WindowRenderer base class
*************************************************************************/
/***************************************************************************
* Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
***************************************************************************/
#ifndef _CEGUIWindowRenderer_h_
#define _CEGUIWindowRenderer_h_
#include "CEGUI/Window.h"
#include "CEGUI/Property.h"
#include <vector>
#include <utility>
#if defined(_MSC_VER)
# pragma warning(push)
# pragma warning(disable : 4251)
#endif
// Start of CEGUI namespace section
namespace CEGUI
{
/*!
\brief
Base-class for the assignable WindowRenderer object
*/
class CEGUIEXPORT WindowRenderer :
public AllocatedObject<WindowRenderer>
{
public:
/*************************************************************************
Constructor / Destructor
**************************************************************************/
/*!
\brief
Constructor
\param name
Factory type name
\param class_name
The name of a widget class that is to be the minimum requirement for
this window renderer.
*/
WindowRenderer(const String& name, const String& class_name="Window");
/*!
\brief
Destructor
*/
virtual ~WindowRenderer();
/*************************************************************************
Public interface
**************************************************************************/
/*!
\brief
Populate render cache.
This method must be implemented by all window renderers and should
perform the rendering operations needed for this widget.
Normally using the Falagard API...
*/
virtual void render() = 0;
/*!
\brief
Returns the factory type name of this window renderer.
*/
const String& getName() const {return d_name;}
/*!
\brief
Get the window this windowrenderer is attached to.
*/
Window* getWindow() const {return d_window;}
/*!
\brief
Get the "minimum" Window class this renderer requires
*/
const String& getClass() const {return d_class;}
/*!
\brief
Get the Look'N'Feel assigned to our window
*/
const WidgetLookFeel& getLookNFeel() const;
/*!
\brief
Get unclipped inner rectangle that our window should return from its
member function with the same name.
*/
virtual Rectf getUnclippedInnerRect() const;
/*!
\brief
Method called to perform extended laying out of the window's attached
child windows.
*/
virtual void performChildWindowLayout() {}
/*!
\brief
update the RenderingContext as needed for our window. This is normally
invoked via our window's member function with the same name.
*/
virtual void getRenderingContext(RenderingContext& ctx) const;
//! perform any time based updates for this WindowRenderer.
virtual void update(float /*elapsed*/) {}
/*!
\brief
Perform any updates needed because the given font's render size has
changed.
/note
This base implementation deals with updates needed for various
definitions in the assigned widget look. If you override, you should
generally always call this base class implementation.
\param font
Pointer to the Font whose render size has changed.
\return
- true if some action was taken.
- false if no action was taken (i.e font is not used here).
*/
virtual bool handleFontRenderSizeChange(const Font* const font);
protected:
/*************************************************************************
Implementation methods
**************************************************************************/
/*!
\brief
Register a property class that will be properly managed by this window
renderer.
\param property
Pointer to a static Property object that will be added to the target
window.
\param ban_from_xml
- true if this property should be added to the 'ban' list so that it is
not written in XML output.
- false if this property is not banned and should appear in XML output.
*/
void registerProperty(Property* property, const bool ban_from_xml);
/*!
\brief
Register a property class that will be properly managed by this window
renderer.
\param property
Pointer to a static Property object that will be added to the target
window.
*/
void registerProperty(Property* property);
/*!
\brief
Handler called when this windowrenderer is attached to a window
*/
virtual void onAttach();
/*!
\brief
Handler called when this windowrenderer is detached from its window
*/
virtual void onDetach();
/*!
\brief
Handler called when a Look'N'Feel is assigned to our window.
*/
virtual void onLookNFeelAssigned() {}
/*!
\brief
Handler called when a Look'N'Feel is removed/unassigned from our window.
*/
virtual void onLookNFeelUnassigned() {}
/*************************************************************************
Implementation data
**************************************************************************/
Window* d_window; //!< Pointer to the window this windowrenderer is assigned to.
const String d_name; //!< Name of the factory type used to create this window renderer.
const String d_class; //!< Name of the widget class that is the "minimum" requirement.
//! type used for entries in the PropertyList.
typedef std::pair<Property*, bool> PropertyEntry;
//! type to use for the property list.
typedef std::vector<PropertyEntry
CEGUI_VECTOR_ALLOC(PropertyEntry)> PropertyList;
PropertyList d_properties; //!< The list of properties that this windowrenderer will be handling.
// Window is friend so it can manipulate our 'd_window' member directly.
// We don't want users fiddling with this so no public interface.
friend class Window;
private:
WindowRenderer& operator=(const WindowRenderer&) { return *this; }
};
/*!
\brief
Base-class for WindowRendererFactory
*/
class CEGUIEXPORT WindowRendererFactory
{
public:
/*!
\brief
Contructor
\param name
Type name for this window renderer factory
*/
WindowRendererFactory(const String& name) : d_factoryName(name) {}
/*!
\brief
Destructor
*/
virtual ~WindowRendererFactory() {}
/*!
\brief
Returns the type name of this window renderer factory.
*/
const String& getName() const {return d_factoryName;}
/*!
\brief
Creates and returns a new window renderer object.
*/
virtual WindowRenderer* create() = 0;
/*!
\brief
Destroys a window renderer object previously created by us.
*/
virtual void destroy(WindowRenderer* wr) = 0;
protected:
String d_factoryName; //!< Our factory type name.
};
} // End of CEGUI namespace
#if defined(_MSC_VER)
# pragma warning(pop)
#endif
#endif // _CEGUIWindowRenderer_h_
|