]> git.tdb.fi Git - libs/gltk.git/blob - source/part.h
Improve widget part caching
[libs/gltk.git] / source / part.h
1 #ifndef MSP_GLTK_PART_H_
2 #define MSP_GLTK_PART_H_
3
4 #include <string>
5 #include <msp/datafile/objectloader.h>
6 #include "geometry.h"
7 #include "state.h"
8
9 namespace Msp {
10 namespace GLtk {
11
12 class Graphic;
13 class PartCache;
14 class Resources;
15
16 /**
17 Defines a single graphical element of a widget style.
18 */
19 class Part
20 {
21 public:
22         class Loader: public DataFile::CollectionObjectLoader<Part>
23         {
24         public:
25                 Loader(Part &, Resources &);
26                 ~Loader();
27         private:
28                 void graphic(State, const std::string &);
29                 void align(float, float);
30                 void fill(float, float);
31                 void margin();
32                 void size(unsigned, unsigned);
33         };
34
35 private:
36         std::string name;
37         const Graphic *graphic[N_STATES_];
38         Geometry geom;
39         Sides margin;
40         Alignment align;
41
42 public:
43         Part(const std::string &);
44         const std::string &get_name() const { return name; }
45         const Graphic *get_graphic(State) const;
46         const Geometry &get_geometry() const { return geom; }
47         const Sides &get_margin() const { return margin; }
48         const Alignment &get_alignment() const { return align; }
49         void build(const Geometry &, State, PartCache &) const;
50 };
51
52 } // namespace GLtk
53 } // namespace Msp
54
55 #endif