nomlib
Loading...
Searching...
No Matches
DecoratorPhotograph.hpp
1/******************************************************************************
2
3 nomlib - C++11 cross-platform game engine
4
5Copyright (c) 2013, 2014 Jeffrey Carpenter <i8degrees@gmail.com>
6All rights reserved.
7
8Redistribution and use in source and binary forms, with or without
9modification, are permitted provided that the following conditions are met:
10
111. Redistributions of source code must retain the above copyright notice, this
12 list of conditions and the following disclaimer.
132. Redistributions in binary form must reproduce the above copyright notice,
14 this list of conditions and the following disclaimer in the documentation
15 and/or other materials provided with the distribution.
16
17THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
21ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28******************************************************************************/
29#ifndef NOMLIB_GUI_DECORATOR_PHOTOGRAPH_HPP
30#define NOMLIB_GUI_DECORATOR_PHOTOGRAPH_HPP
31
32#include <Rocket/Core/Decorator.h>
33
34#include "nomlib/graphics/Texture.hpp"
35
36namespace nom {
37
41class DecoratorPhotograph : public Rocket::Core::Decorator
42{
43 public:
44 virtual ~DecoratorPhotograph();
45
46 bool Initialise(const Rocket::Core::String& image_source, const Rocket::Core::String& image_path);
47
51 virtual Rocket::Core::DecoratorDataHandle GenerateElementData(Rocket::Core::Element* element);
52
55 virtual void ReleaseElementData(Rocket::Core::DecoratorDataHandle element_data);
56
60 virtual void RenderElement(Rocket::Core::Element* element, Rocket::Core::DecoratorDataHandle element_data);
61
62 private:
65
66 // int image_idx;
67 // Point2i pos_;
68 // Size2i dims_;
69 // bool dirty_ = true;
70};
71
72} // namespace nom
73
74#include <Rocket/Core/DecoratorInstancer.h>
75// #include "nomlib/graphics/IDrawable.hpp"
76
77namespace nom {
78
81class DecoratorInstancerPhotograph : public Rocket::Core::DecoratorInstancer
82{
83 public:
84 DecoratorInstancerPhotograph();
85 virtual ~DecoratorInstancerPhotograph();
86
91 Rocket::Core::Decorator* InstanceDecorator(const Rocket::Core::String& name, const Rocket::Core::PropertyDictionary& properties);
92
95 void ReleaseDecorator(Rocket::Core::Decorator* decorator);
96
98 void Release();
99};
100
101} // namespace nom
102
103#endif // include guard
void ReleaseDecorator(Rocket::Core::Decorator *decorator)
void Release()
Releases the instancer.
Rocket::Core::Decorator * InstanceDecorator(const Rocket::Core::String &name, const Rocket::Core::PropertyDictionary &properties)
virtual Rocket::Core::DecoratorDataHandle GenerateElementData(Rocket::Core::Element *element)
virtual void RenderElement(Rocket::Core::Element *element, Rocket::Core::DecoratorDataHandle element_data)
virtual void ReleaseElementData(Rocket::Core::DecoratorDataHandle element_data)