X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=836d991eb73e3b226d859b5c2c4a2da7acf5037a;hb=31e9ee682f8a9cd77c97ed9dc142283559ddaacc;hp=4d7e1a9df3d0aa814aa225c9dc47038d58fc3f68;hpb=75a16eae9eb2714f8112d46fa5b8f7908b6d2487;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index 4d7e1a9..836d991 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -1,22 +1,20 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007-2009 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #include +#include #include #include "button.h" +#include "column.h" +#include "draghandle.h" #include "dropdown.h" #include "entry.h" +#include "grid.h" #include "hslider.h" #include "indicator.h" #include "label.h" #include "list.h" #include "panel.h" #include "part.h" -#include "table.h" +#include "row.h" +#include "stack.h" #include "toggle.h" #include "vslider.h" @@ -25,244 +23,174 @@ using namespace std; namespace Msp { namespace GLtk { -Panel::Panel(const Resources &r): - Widget(r), - Container(r), - pointer_focus(0), - pointer_grabbed(false), - input_focus(0) -{ - update_style(); -} +Panel::Panel(): + layout(0) +{ } -void Panel::raise(Widget &wdg) +Panel::~Panel() { - for(list::iterator i=children.begin(); i!=children.end(); ++i) - if((*i)->widget==&wdg) - { - children.splice(children.end(), children, i); - return; - } - - throw InvalidState("That Widget is not in this Panel"); + delete layout; + layout = 0; } -Widget *Panel::get_final_input_focus() const +void Panel::set_layout(Layout *l) { - if(Panel *panel=dynamic_cast(input_focus)) - { - Widget *focus=panel->get_final_input_focus(); - if(focus) - return focus; - } - return input_focus; + l->set_container(*this); + delete layout; + layout = l; } -void Panel::button_press(int x, int y, unsigned btn) +void Panel::autosize_special(const Part &part, Geometry &ageom) { - if(pointer_grabbed) - { - const Geometry &cgeom=pointer_focus->get_geometry(); - pointer_focus->button_press(x-cgeom.x, y-cgeom.y, btn); - } - else - { - if(Widget *wdg=get_child_at(x, y)) - { - set_pointer_focus(wdg); - if(wdg->is_focusable()) - set_input_focus(wdg); - } - Container::button_press(x, y, btn); - } -} - -void Panel::button_release(int x, int y, unsigned btn) -{ - if(pointer_grabbed) - { - const Geometry &cgeom=pointer_focus->get_geometry(); - pointer_focus->button_release(x-cgeom.x, y-cgeom.y, btn); - } - else - Container::button_release(x, y, btn); + if(part.get_name()=="children" && layout) + layout->autosize(ageom); } -void Panel::pointer_motion(int x, int y) -{ - if(pointer_grabbed) - { - const Geometry &cgeom=pointer_focus->get_geometry(); - pointer_focus->pointer_motion(x-cgeom.x, y-cgeom.y); - } - else - { - set_pointer_focus(get_child_at(x, y)); - Container::pointer_motion(x, y); - } -} - -void Panel::pointer_leave() -{ - Container::pointer_leave(); - set_pointer_focus(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::render_special(const Part &part) const +void Panel::render_special(const Part &part, GL::Renderer &renderer) const { if(part.get_name()=="children") { for(list::const_iterator i=children.begin(); i!=children.end(); ++i) if((*i)->widget->is_visible()) - (*i)->widget->render(); + (*i)->widget->render(renderer); } } -Panel::Child *Panel::create_child(Widget *wdg) +void Panel::on_geometry_change() { - return new Child(*this, wdg); + if(layout) + layout->update(); } -void Panel::set_pointer_focus(Widget *wdg) +void Panel::on_child_added(Widget &wdg) { - if(wdg!=pointer_focus) + if(layout) { - if(pointer_focus) - pointer_focus->pointer_leave(); - - pointer_focus=wdg; - - if(pointer_focus) - pointer_focus->pointer_enter(); + layout->add_widget(wdg); + signal_autosize_changed.emit(); } } -void Panel::set_input_focus(Widget *wdg) +void Panel::on_child_removed(Widget &wdg) { - if(wdg!=input_focus) + if(layout) { - if(input_focus) - input_focus->focus_out(); - - input_focus=wdg; - - if(input_focus) - { - raise(*wdg); - input_focus->focus_in(); - } + layout->remove_widget(wdg); + signal_autosize_changed.emit(); } } Panel::Loader::Loader(Panel &p, map &m): - Widget::Loader(p), - pnl(p), - wdg_map(m) + DataFile::DerivedObjectLoader(p), + wdg_map(m), + last_widget(0) { add("button", &Loader::child