]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/panel.cpp
Refactor filling from Part to Alignment
[libs/gltk.git] / source / panel.cpp
index b029057de9f7799dc64d36d86ea919dc2925eb7c..91562cea2b5d7df9a108128d8e31e2927e83ae1a 100644 (file)
+/* $Id$
+
+This file is part of libmspgltk
+Copyright © 2007  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#include <msp/core/refptr.h>
+#include "button.h"
+#include "entry.h"
+#include "hslider.h"
+#include "label.h"
 #include "panel.h"
 #include "part.h"
+#include "vslider.h"
+
+using namespace std;
 
 namespace Msp {
 namespace GLtk {
 
 Panel::Panel(const Resources &r):
-       Widget(r)
+       Widget(r),
+       pointer_focus(0),
+       pointer_grab(0),
+       input_focus(0)
 {
        update_style();
 }
 
 Panel::~Panel()
 {
-       for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i)
-               delete *i;
+       while(!children.empty())
+               delete children.front();
 }
 
 void Panel::add(Widget &wdg)
 {
+       set_parent(wdg, this);
        children.push_back(&wdg);
 }
 
-void Panel::render_part(const Part &part) const
+void Panel::remove(Widget &wdg)
+{
+       ChildSeq::iterator i=find(children.begin(), children.end(), &wdg);
+       if(i!=children.end())
+       {
+               set_parent(wdg, 0);
+               children.erase(i);
+       }
+}
+
+void Panel::button_press(int x, int y, unsigned btn)
+{
+       if(pointer_grab>0)
+               pointer_focus->button_press(x-geom.x, y-geom.y, btn);
+       else if(geom.is_inside(x, y))
+       {
+               if(Widget *wdg=get_child_at(x, y))
+               {
+                       set_pointer_focus(wdg, btn);
+                       set_input_focus(wdg);
+
+                       wdg->button_press(x-geom.x, y-geom.y, btn);
+               }
+       }
+}
+
+void Panel::button_release(int x, int y, unsigned btn)
+{
+       if(pointer_grab>0)
+       {
+               pointer_focus->button_release(x-geom.x, y-geom.y, btn);
+
+               if(btn==pointer_grab)
+                       set_pointer_focus(get_child_at(x, y), 0);
+       }
+       else if(geom.is_inside(x, y))
+       {
+               if(Widget *wdg=get_child_at(x, y))
+                       wdg->button_release(x-geom.x, y-geom.y, btn);
+       }
+}
+
+void Panel::pointer_motion(int x, int y)
+{
+       if(pointer_grab>0)
+               pointer_focus->pointer_motion(x-geom.x, y-geom.y);
+       else if(geom.is_inside(x, y))
+       {
+               Widget *wdg=get_child_at(x, y);
+               set_pointer_focus(wdg, 0);
+               if(wdg)
+                       wdg->pointer_motion(x-geom.x, y-geom.y);
+       }
+}
+
+void Panel::pointer_leave()
+{
+       set_pointer_focus(0, 0);
+}
+
+void Panel::key_press(unsigned key, unsigned mod, wchar_t ch)
+{
+       if(input_focus)
+               input_focus->key_press(key, mod, ch);
+}
+
+void Panel::key_release(unsigned key, unsigned mod)
+{
+       if(input_focus)
+               input_focus->key_release(key, mod);
+}
+
+void Panel::focus_out()
+{
+       set_input_focus(0);
+}
+
+void Panel::child_hidden(Widget &wdg)
+{
+       if(&wdg==pointer_focus)
+               set_pointer_focus(0, 0);
+}
+
+void Panel::render_special(const Part &part) const
 {
        if(part.get_name()=="children")
        {
                for(ChildSeq::const_iterator i=children.begin(); i!=children.end(); ++i)
-                       (*i)->render();
+                       if((*i)->is_visible())
+                               (*i)->render();
+       }
+}
+
+void Panel::set_pointer_focus(Widget *wdg, int grab)
+{
+       if(grab>0 && !wdg)
+               throw InvalidParameterValue("Can't grab on null widget");
+
+       if(wdg!=pointer_focus)
+       {
+               if(pointer_focus)
+                       pointer_focus->pointer_leave();
+
+               pointer_focus=wdg;
+
+               if(pointer_focus)
+                       pointer_focus->pointer_enter();
        }
-       else
-               Widget::render_part(part);
+
+       pointer_grab=grab;
+}
+
+void Panel::set_input_focus(Widget *wdg)
+{
+       if(wdg!=input_focus)
+       {
+               if(input_focus)
+                       input_focus->focus_out();
+
+               input_focus=wdg;
+
+               if(input_focus)
+                       input_focus->focus_in();
+       }
+}
+
+Widget *Panel::get_child_at(int x, int y)
+{
+       for(ChildSeq::reverse_iterator i=children.rbegin(); i!=children.rend(); ++i)
+               if((*i)->is_visible() && (*i)->get_geometry().is_inside(x-geom.x, y-geom.y))
+                       return *i;
+
+       return 0;
+}
+
+
+Panel::Loader::Loader(Panel &p, map<string, Widget *> &m):
+       Widget::Loader(p),
+       pnl(p),
+       wdg_map(m)
+{
+       add("button", &Loader::child<Button>);
+       add("entry",  &Loader::child<Entry>);
+       add("hslider", &Loader::child<HSlider>);
+       add("label",  &Loader::child<Label>);
+       add("panel",  &Loader::panel);
+       add("vslider", &Loader::child<VSlider>);
 }
 
-void Panel::on_button_press(int x, int y, unsigned btn)
+template<typename T>
+void Panel::Loader::child(const string &n)
 {
-       for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i)
-               (*i)->button_press(x-geom.x, y-geom.y, btn);
+       RefPtr<T> chl=new T(pnl.res);
+       load_sub(*chl);
+       pnl.add(*chl.get());
+       wdg_map[n]=chl.release();
 }
 
-void Panel::on_button_release(int x, int y, unsigned btn)
+void Panel::Loader::panel(const string &n)
 {
-       for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i)
-               (*i)->button_release(x-geom.x, y-geom.y, btn);
+       RefPtr<Panel> p=new Panel(pnl.res);
+       load_sub(*p, wdg_map);
+       pnl.add(*p.get());
+       wdg_map[n]=p.release();
 }
 
 } // namespace GLtk