]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/part.cpp
Avoid generating events during destruction of a widget
[libs/gltk.git] / source / part.cpp
index 45449932618ec8a692b9b7cd5f20e275e0ad285d..f2797f9058ad66fe8633256c286eb3b794fe8cab 100644 (file)
@@ -1,3 +1,11 @@
+/* $Id$
+
+This file is part of libmspgltk
+Copyright © 2007  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#include <msp/gl/transform.h>
 #include "geometry.h"
 #include "part.h"
 #include "resources.h"
@@ -7,16 +15,11 @@ using namespace std;
 namespace Msp {
 namespace GLtk {
 
-Part::Part(const Resources &r, const string &n):
-       res(r),
-       name(n),
-       width(1),
-       height(1),
-       fill_x(true),
-       fill_y(true)
+Part::Part(const string &n):
+       name(n)
 {
        for(unsigned i=0; i<N_STATES_; ++i)
-               graphic[i]=0;
+               graphic[i] = 0;
 }
 
 const Graphic *Part::get_graphic(State state) const
@@ -27,53 +30,69 @@ const Graphic *Part::get_graphic(State state) const
        return graphic[state];
 }
 
-void Part::render(const Geometry &geom, State state) const
+void Part::render(const Geometry &parent, State state) const
 {
-       unsigned gw=(fill_x ? geom.w : width);
-       unsigned gh=(fill_y ? geom.h : height);
-       align.apply(geom, gw, gh);
-       graphic[state]->render(gw, gh);
+       if(!graphic[state])
+               return;
+
+       Geometry rgeom = geom;
+       align.apply(rgeom, parent, margin);
+       GL::translate(rgeom.x, rgeom.y, 0);
+       graphic[state]->render(rgeom.w, rgeom.h);
 }
 
 
-Part::Loader::Loader(Part &p):
-       part(p)
+Part::Loader::Loader(Part &p, Resources &r):
+       DataFile::CollectionObjectLoader<Part>(p, &r)
 {
        add("graphic", &Loader::graphic);
        add("align",   &Loader::align);
        add("fill",    &Loader::fill);
+       add("margin",  &Loader::margin);
+       add("size",    &Loader::size);
 }
 
 Part::Loader::~Loader()
 {
        for(unsigned i=0; i<N_STATES_; ++i)
-       {
-               if(part.graphic[i])
+               if(obj.graphic[i])
                {
-                       const Sides &shadow=part.graphic[i]->get_shadow();
-                       part.width=max(part.width, part.graphic[i]->get_width()-shadow.left-shadow.right);
-                       part.height=max(part.height, part.graphic[i]->get_height()-shadow.bottom-shadow.top);
+                       const Graphic &grph = *obj.graphic[i];
+                       const Sides &shadow = grph.get_shadow();
+                       obj.geom.w = max(obj.geom.w, grph.get_width()-shadow.left-shadow.right);
+                       obj.geom.h = max(obj.geom.h, grph.get_height()-shadow.bottom-shadow.top);
                }
-               else
-                       part.graphic[i]=part.graphic[NORMAL];
-       }
 }
 
 void Part::Loader::graphic(State s, const string &n)
 {
-       part.graphic[s]=&part.res.get_graphic(n);
+       Graphic *grph = get_collection().get<Graphic>(n);
+       for(int i=0; i<N_STATES_; ++i)
+               if((i&s)==s)
+                       obj.graphic[i] = grph;
+}
+
+void Part::Loader::align(float x, float y)
+{
+       obj.align.x = x;
+       obj.align.y = y;
+}
+
+void Part::Loader::fill(float w, float h)
+{
+       obj.align.w = w;
+       obj.align.h = h;
 }
 
-void Part::Loader::align(int x, int y)
+void Part::Loader::margin()
 {
-       part.align.x=x;
-       part.align.y=y;
+       load_sub(obj.margin);
 }
 
-void Part::Loader::fill(bool x, bool y)
+void Part::Loader::size(unsigned w, unsigned h)
 {
-       part.fill_x=x;
-       part.fill_y=y;
+       obj.geom.w = w;
+       obj.geom.h = h;
 }
 
 } // namespace GLtk