Line | |
---|
1 | /*! |
---|
2 | * @file resource_font.h |
---|
3 | * @brief Contains the ResourceFont class, that handles the Resource-specific loading part of the Font. |
---|
4 | * |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef _RESOURCE_FONT_H |
---|
8 | #define _RESOURCE_FONT_H |
---|
9 | |
---|
10 | #include "util/loading/resource.h" |
---|
11 | #include "font.h" |
---|
12 | |
---|
13 | |
---|
14 | class ResourceFont : public Font, public Resources::Resource |
---|
15 | { |
---|
16 | public: |
---|
17 | ResourceFont(const std::string& fontName, unsigned int renderSize, const Resources::KeepLevel& keepLevel = Resources::KeepLevel()); |
---|
18 | static ResourceFont createFromString(const std::string& loadString, const Resources::KeepLevel& keepLevel = Resources::KeepLevel()); |
---|
19 | |
---|
20 | private: |
---|
21 | class FontResourcePointer : public Resources::StorePointer |
---|
22 | { |
---|
23 | public: |
---|
24 | FontResourcePointer(const std::string& loadString, const Resources::KeepLevel& keepLevel, const FontData::Pointer& data); |
---|
25 | inline const FontData::Pointer& ptr() const { return pointer; } |
---|
26 | virtual bool last() const { return pointer.count() == 1; } |
---|
27 | private: |
---|
28 | FontData::Pointer pointer; |
---|
29 | }; |
---|
30 | |
---|
31 | private: |
---|
32 | static Resources::tType<ResourceFont> type; |
---|
33 | }; |
---|
34 | |
---|
35 | |
---|
36 | #endif /* _RESOURCE_FONT_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.