]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/resources.h
Minor style fixes
[libs/gltk.git] / source / resources.h
index e68d89fc178c16e79f20aaae6c262920077ec8f3..87b8364148053581d142070d274fe24439f1e47c 100644 (file)
@@ -4,6 +4,7 @@
 #include <msp/gl/font.h>
 #include <msp/gl/texture.h>
 #include <msp/datafile/collection.h>
+#include <msp/datafile/directorysource.h>
 #include <msp/fs/path.h>
 #include "graphic.h"
 #include "style.h"
@@ -17,10 +18,6 @@ instance in constructor.
 */
 class Resources: public DataFile::Collection
 {
-private:
-       FS::Path path;
-       GL::Font *default_font;
-
 public:
        class Loader: public Collection::Loader
        {
@@ -34,10 +31,23 @@ public:
                void font(const std::string &);
        };
 
+private:
+       FS::Path path;
+       GL::Font *default_font;
+       DataFile::DirectorySource *dir_src;
+
 public:
        Resources();
+       Resources(const FS::Path &);
+private:
+       void init();
+public:
+       ~Resources();
 
        const GL::Font &get_default_font() const;
+
+private:
+       GL::Texture2D *create_texture(const std::string &);
 };
 
 } // namespace GLtk