X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=ba66c682e85decb9608c084caeaaa6b5763c0318;hb=HEAD;hp=7876120b2ce2e7cea30cecb52fd42aeef2b11185;hpb=5093559790a7d51d288018cfffda32082faf5f27;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index 7876120..ba66c68 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -1,157 +1,178 @@ -#include -#include +#include +#include #include "button.h" +#include "column.h" +#include "draghandle.h" #include "dropdown.h" #include "entry.h" -#include "hslider.h" +#include "grid.h" +#include "image.h" #include "indicator.h" #include "label.h" -#include "layout.h" #include "list.h" #include "panel.h" #include "part.h" -#include "table.h" +#include "progressbar.h" +#include "row.h" +#include "slider.h" +#include "stack.h" #include "toggle.h" -#include "vslider.h" using namespace std; namespace Msp { namespace GLtk { -Panel::Panel(): - layout(0), - pointer_focus(0), - pointer_grabbed(false), - input_focus(0) -{ } +TypeRegistry Panel::widget_registry; +bool Panel::widget_registry_init_done = false; -Panel::~Panel() +Panel::Panel() { - delete layout; - layout = 0; + input_type = INPUT_NAVIGATION; } -void Panel::set_layout(Layout *l) +Layout &Panel::get_or_create_layout() { - l->set_container(*this); - delete layout; - layout = l; -} - -Panel::Child *Panel::create_child(Widget *wdg) -{ - return new Child(*this, wdg); -} - -void Panel::raise(Widget &wdg) -{ - for(list::iterator i=children.begin(); i!=children.end(); ++i) - if((*i)->widget==&wdg) - { - children.splice(children.end(), children, i); - return; - } + if(!layout) + { + layout = make_unique(); + layout->set_container(*this); + } - throw hierarchy_error("widget not in panel"); + return *layout; } -Widget *Panel::get_final_input_focus() const +void Panel::autosize_special(const Part &part, Geometry &ageom) const { - if(Panel *panel = dynamic_cast(input_focus)) - { - Widget *focus = panel->get_final_input_focus(); - if(focus) - return focus; - } - return input_focus; + if(part.get_name()=="children" && layout) + layout->autosize(ageom); } -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(); + for(const unique_ptr &c: children) + if(c->widget->is_visible()) + c->widget->render(renderer); } } -void Panel::button_press(int x, int y, unsigned btn) +bool Panel::navigate(Navigation nav) { - if(pointer_grabbed) + if(Container::navigate(nav)) + return true; + + if(nav==NAV_UP || nav==NAV_DOWN || nav==NAV_LEFT || nav==NAV_RIGHT) { - const Geometry &cgeom = pointer_focus->get_geometry(); - pointer_focus->button_press(x-cgeom.x, y-cgeom.y, btn); + int nav_x = (nav==NAV_RIGHT ? 1 : nav==NAV_LEFT ? -1 : 0); + int nav_y = (nav==NAV_UP ? 1 : nav==NAV_DOWN ? -1 : 0); + + int origin_x, origin_y, origin_dim; + if(input_focus) + { + const Geometry &fgeom = input_focus->get_geometry(); + origin_x = fgeom.x+(nav_x*0.5+0.5)*fgeom.w; + origin_y = fgeom.y+(nav_y*0.5+0.5)*fgeom.h; + origin_dim = abs(nav_x)*fgeom.h+abs(nav_y)*fgeom.w; + } + else + { + origin_x = geom.w*(0.5-nav_x*0.5); + origin_y = geom.h*(0.5-nav_y*0.5); + origin_dim = abs(nav_x)*geom.h+abs(nav_y)*geom.w; + } + + if(pointer_grabbed && pointer_focus==input_focus) + return false; + + Widget *sibling = find_next_child(origin_x, origin_y, origin_dim, nav_x, nav_y); + if(!sibling && input_focus) + { + const Geometry &fgeom = input_focus->get_geometry(); + origin_x -= fgeom.w*(nav_x*0.5); + origin_y -= fgeom.h*(nav_y*0.5); + sibling = find_next_child(origin_x, origin_y, origin_dim, nav_x, nav_y); + } + + if(sibling) + { + set_input_focus(sibling); + if(Panel *panel = dynamic_cast(sibling)) + panel->navigate(nav); + return true; + } } - else + else if(nav==NAV_NEXT || nav==NAV_PREVIOUS) { - if(Widget *wdg = get_child_at(x, y)) + auto i = find(nav_order, input_focus); + + if(nav==NAV_NEXT) { - set_pointer_focus(wdg); - if(wdg->is_focusable()) - set_input_focus(wdg); + if(i!=nav_order.end()) + ++i; + if(i==nav_order.end()) + i = nav_order.begin(); + } + else + { + if(i==nav_order.begin()) + i = nav_order.end(); + --i; } - 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); + set_input_focus(*i); + + return true; } - else - Container::button_release(x, y, btn); + + return false; } -void Panel::pointer_motion(int x, int y) +Widget *Panel::find_next_child(int origin_x, int origin_y, int origin_dim, int nav_x, int nav_y) const { - if(pointer_grabbed) - { - const Geometry &cgeom = pointer_focus->get_geometry(); - pointer_focus->pointer_motion(x-cgeom.x, y-cgeom.y); - } - else + Widget *sibling = nullptr; + int best_score = 0; + for(const unique_ptr &c: children) { - set_pointer_focus(get_child_at(x, y)); - Container::pointer_motion(x, y); - } -} + if(c->widget==input_focus || !c->widget->is_focusable()) + continue; -void Panel::pointer_leave() -{ - Container::pointer_leave(); - set_pointer_focus(0); -} + const Geometry &cgeom = c->widget->get_geometry(); + int dx = compute_delta(cgeom.x, cgeom.w, origin_x, origin_dim, nav_x); + int dy = compute_delta(cgeom.y, cgeom.h, origin_y, origin_dim, nav_y); -void Panel::key_press(unsigned key, unsigned mod) -{ - if(input_focus) - input_focus->key_press(key, mod); -} + int score = -1; + if(nav_y && nav_y*dy>=0) + score = nav_y*dy+abs(dx)*4; + else if(nav_x && nav_x*dx>=0) + score = nav_x*dx+abs(dy)*4; -void Panel::key_release(unsigned key, unsigned mod) -{ - if(input_focus) - input_focus->key_release(key, mod); -} + if(score>=0 && (!sibling || scorewidget; + best_score = score; + } + } -void Panel::character(wchar_t ch) -{ - if(input_focus) - input_focus->character(ch); + return sibling; } -void Panel::focus_out() +int Panel::compute_delta(int pos, int dim, int origin_pos, int origin_dim, int nav) { - set_input_focus(0); - Widget::focus_out(); + if(nav<0) + return pos+dim-origin_pos; + else if(nav>0) + return pos-origin_pos; + else if(pos+dimorigin_pos+origin_dim/2) + return pos-origin_pos-origin_dim/2; + else + return 0; } -void Panel::on_geometry_change() +void Panel::on_size_change() { if(layout) layout->update(); @@ -159,146 +180,133 @@ void Panel::on_geometry_change() void Panel::on_child_added(Widget &wdg) { + if(wdg.get_input_type()!=INPUT_NONE) + nav_order.push_back(&wdg); + if(layout) + { layout->add_widget(wdg); + signal_autosize_changed.emit(); + } } void Panel::on_child_removed(Widget &wdg) { - if(layout) - layout->remove_widget(wdg); -} + auto i = std::remove(nav_order.begin(), nav_order.end(), &wdg); + if(i!=nav_order.end()) + nav_order.erase(i, nav_order.end()); -void Panel::set_pointer_focus(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->remove_widget(wdg); + signal_autosize_changed.emit(); } } -void Panel::set_input_focus(Widget *wdg) + +Panel::Loader::Loader(Panel &p, map &m): + DataFile::DerivedObjectLoader(p), + wdg_map(m), + last_widget(nullptr) { - if(wdg!=input_focus) + if(!widget_registry_init_done) { - if(input_focus) - input_focus->focus_out(); - - input_focus = wdg; - - if(input_focus) - { - raise(*wdg); - input_focus->focus_in(); - } + widget_registry_init_done = true; + register_child_type