X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=7e34c5947a7c7f4e0f93822eac08707c0ba3f104;hb=ae62c05fe97d341c4f219656cdce7aadf321991b;hp=3123db41bccd2dc6036a7fd89a1facfdea593e06;hpb=aba0416fb73e17d068b30ff163c2fedcb0254da2;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index 3123db4..7e34c59 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -1,22 +1,21 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007 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 "image.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,252 +24,241 @@ using namespace std; namespace Msp { namespace GLtk { -Panel::Panel(const Resources &r): - Widget(r), - pointer_focus(0), - pointer_grab(0), - input_focus(0) +Panel::Panel(): + layout(0) { - update_style(); + input_type = INPUT_NAVIGATION; } Panel::~Panel() { - while(!children.empty()) - delete children.front(); + delete layout; + layout = 0; } -void Panel::add(Widget &wdg) +void Panel::set_layout(Layout *l) { - set_parent(wdg, this); - children.push_back(&wdg); + l->set_container(*this); + delete layout; + layout = l; } -void Panel::remove(Widget &wdg) +void Panel::autosize_special(const Part &part, Geometry &ageom) const { - list::iterator i=find(children.begin(), children.end(), &wdg); - if(i==children.end()) - throw InvalidState("That Widget is not in this Panel"); - - if(&wdg==pointer_focus) - set_pointer_focus(0, 0); - if(&wdg==input_focus) - set_input_focus(0); - - set_parent(wdg, 0); - children.erase(i); + if(part.get_name()=="children" && layout) + layout->autosize(ageom); } -void Panel::raise(Widget &wdg) +void Panel::render_special(const Part &part, GL::Renderer &renderer) const { - list::iterator i=find(children.begin(), children.end(), &wdg); - if(i==children.end()) - throw InvalidState("That Widget is not in this Panel"); - - children.erase(i); - children.push_back(&wdg); -} - -void Panel::button_press(int x, int y, unsigned btn) -{ - if(pointer_grab>0) + if(part.get_name()=="children") { - const Geometry &cgeom=pointer_focus->get_geometry(); - pointer_focus->button_press(x-cgeom.x, y-cgeom.y, btn); - } - else if(geom.is_inside_relative(x, y)) - { - if(Widget *wdg=get_child_at(x, y)) - { - set_pointer_focus(wdg, btn); - set_input_focus(wdg); - - const Geometry &cgeom=wdg->get_geometry(); - wdg->button_press(x-cgeom.x, y-cgeom.y, btn); - } + for(list::const_iterator i=children.begin(); i!=children.end(); ++i) + if((*i)->widget->is_visible()) + (*i)->widget->render(renderer); } } -void Panel::button_release(int x, int y, unsigned btn) +bool Panel::navigate(Navigation nav) { - if(pointer_grab>0) - { - const Geometry &cgeom=pointer_focus->get_geometry(); - pointer_focus->button_release(x-cgeom.x, y-cgeom.y, btn); + if(Container::navigate(nav)) + return true; - if(btn==pointer_grab) - set_pointer_focus(get_child_at(x, y), 0); - } - else if(geom.is_inside_relative(x, y)) + if(nav==NAV_UP || nav==NAV_DOWN || nav==NAV_LEFT || nav==NAV_RIGHT) { - if(Widget *wdg=get_child_at(x, y)) + int x = geom.w/2; + int y = geom.h/2; + if(input_focus) { - const Geometry &cgeom=wdg->get_geometry(); - wdg->button_release(x-cgeom.x, y-cgeom.y, btn); + const Geometry &fgeom = input_focus->get_geometry(); + x = fgeom.x+fgeom.w/2; + y = fgeom.y+fgeom.h/2; + } + else if(nav==NAV_UP) + y = 0; + else if(nav==NAV_DOWN) + y = geom.h; + else if(nav==NAV_RIGHT) + x = 0; + else if(nav==NAV_LEFT) + x = geom.w; + + Widget *sibling = 0; + int best_score = 0; + for(list::const_iterator i=children.begin(); i!=children.end(); ++i) + { + if((*i)->widget==input_focus || !(*i)->widget->is_focusable()) + continue; + + const Geometry &cgeom = (*i)->widget->get_geometry(); + int dx = cgeom.x+cgeom.w/2-x; + int dy = cgeom.y+cgeom.h/2-y; + + int score = -1; + if(nav==NAV_UP && dy>0) + score = dy+abs(dx)*4; + else if(nav==NAV_DOWN && dy<0) + score = -dy+abs(dx)*4; + else if(nav==NAV_RIGHT && dx>0) + score = dx+abs(dy)*4; + else if(nav==NAV_LEFT && dx<0) + score = -dx+abs(dy)*4; + + if(score>0 && (!sibling || scorewidget; + best_score = score; + } } - } -} -void Panel::pointer_motion(int x, int y) -{ - if(pointer_grab>0) - { - const Geometry &cgeom=pointer_focus->get_geometry(); - pointer_focus->pointer_motion(x-cgeom.x, y-cgeom.y); - } - else if(geom.is_inside_relative(x, y)) - { - Widget *wdg=get_child_at(x, y); - set_pointer_focus(wdg, 0); - if(wdg) + if(sibling) { - const Geometry &cgeom=wdg->get_geometry(); - wdg->pointer_motion(x-cgeom.x, y-cgeom.y); + set_input_focus(sibling); + if(Panel *panel = dynamic_cast(sibling)) + panel->navigate(nav); + return true; } } + + return false; } -void Panel::pointer_leave() +void Panel::on_geometry_change() { - set_pointer_focus(0, 0); + if(layout) + layout->update(); } -void Panel::key_press(unsigned key, unsigned mod, wchar_t ch) +void Panel::on_child_added(Widget &wdg) { - if(input_focus) - input_focus->key_press(key, mod, ch); + if(layout) + { + layout->add_widget(wdg); + signal_autosize_changed.emit(); + } } -void Panel::key_release(unsigned key, unsigned mod) +void Panel::on_child_removed(Widget &wdg) { - if(input_focus) - input_focus->key_release(key, mod); + if(layout) + { + layout->remove_widget(wdg); + signal_autosize_changed.emit(); + } } -void Panel::focus_out() + +Panel::Loader::Loader(Panel &p, map &m): + DataFile::DerivedObjectLoader(p), + wdg_map(m), + last_widget(0) { - set_input_focus(0); + add("button", &Loader::child