Crazy Eddie's GUI System  0.8.4
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Pages
ComponentBase.h
1 /***********************************************************************
2  created: Mon Jul 18 2005
3  author: Paul D Turner <paul@cegui.org.uk>
4 *************************************************************************/
5 /***************************************************************************
6  * Copyright (C) 2004 - 2012 Paul D Turner & The CEGUI Development Team
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining
9  * a copy of this software and associated documentation files (the
10  * "Software"), to deal in the Software without restriction, including
11  * without limitation the rights to use, copy, modify, merge, publish,
12  * distribute, sublicense, and/or sell copies of the Software, and to
13  * permit persons to whom the Software is furnished to do so, subject to
14  * the following conditions:
15  *
16  * The above copyright notice and this permission notice shall be
17  * included in all copies or substantial portions of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25  * OTHER DEALINGS IN THE SOFTWARE.
26  ***************************************************************************/
27 #ifndef _CEGUIFalComponentBase_h_
28 #define _CEGUIFalComponentBase_h_
29 
30 #include "CEGUI/falagard/Dimensions.h"
31 #include "CEGUI/Window.h"
32 #include "CEGUI/ColourRect.h"
33 
34 namespace CEGUI
35 {
37 class CEGUIEXPORT FalagardComponentBase :
38  public AllocatedObject<FalagardComponentBase>
39 {
40 public:
42  virtual ~FalagardComponentBase();
43 
58  void render(Window& srcWindow, const CEGUI::ColourRect* modColours = 0,
59  const Rectf* clipper = 0, bool clipToDisplay = false) const;
60 
79  void render(Window& srcWindow, const Rectf& baseRect,
80  const CEGUI::ColourRect* modColours = 0,
81  const Rectf* clipper = 0, bool clipToDisplay = false) const;
82 
90  const ComponentArea& getComponentArea() const;
91 
99  void setComponentArea(const ComponentArea& area);
100 
109  const ColourRect& getColours() const;
110 
118  void setColours(const ColourRect& cols);
119 
127  void setColoursPropertySource(const String& property);
128 
130  virtual bool handleFontRenderSizeChange(Window& window,
131  const Font* font) const;
132 
133 protected:
143  void initColoursRect(const Window& wnd,
144  const ColourRect* modCols,
145  ColourRect& cr) const;
146 
148  virtual void render_impl(Window& srcWindow, Rectf& destRect,
149  const CEGUI::ColourRect* modColours,
150  const Rectf* clipper, bool clipToDisplay) const = 0;
151 
166  bool writeColoursXML(XMLSerializer& xml_stream) const;
167 
174 };
175 
176 }
177 
178 #endif
179