X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=4ef1b46358fcd18fde457b5051ea89131e02331e;hb=70e7a223a069874cda84673a4ca541aa44b12bf2;hp=2183be6623b5467b0d1431f531a2cea6cb534897;hpb=a122a209782e5b5400b5a70bd23ce4feadc6b36b;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index 2183be6..4ef1b46 100644 --- a/source/widget.cpp +++ b/source/widget.cpp @@ -14,8 +14,9 @@ Widget::Widget(): style(0), state(NORMAL), visible(true), - focusable(true), - parent(0) + input_type(INPUT_NONE), + parent(0), + rebuild_needed(false) { } Widget::~Widget() @@ -39,11 +40,18 @@ void Widget::set_size(unsigned w, unsigned h) } void Widget::autosize() +{ + Geometry ageom; + autosize(ageom); + set_geometry(ageom); +} + +void Widget::autosize(Geometry &ageom) const { if(!style) return; - Geometry ageom; + ageom = Geometry(geom.x, geom.y, 0, 0); const Style::PartSeq &parts = style->get_parts(); for(Style::PartSeq::const_iterator i=parts.begin(); i!=parts.end(); ++i) { @@ -57,8 +65,6 @@ void Widget::autosize() else autosize_special(*i, ageom); } - - set_geometry(ageom); } void Widget::set_geometry(const Geometry &g) @@ -67,9 +73,33 @@ void Widget::set_geometry(const Geometry &g) geom = g; if(size_changed) { - // TODO maybe rename this to on_size_change - on_geometry_change(); - rebuild(); + on_size_change(); + mark_rebuild(); + } +} + +void Widget::map_coords_to_ancestor(int &x, int &y, const Widget &ancestor) const +{ + for(const Widget *w=this; w; w=w->get_parent()) + { + if(w==&ancestor) + return; + + const Geometry &wgeom = w->get_geometry(); + x += wgeom.x; + y += wgeom.y; + } + + throw hierarchy_error("not an ancestor"); +} + +void Widget::map_coords_to_root(int &x, int &y) const +{ + for(const Widget *w=this; w; w=w->get_parent()) + { + const Geometry &wgeom = w->get_geometry(); + x += wgeom.x; + y += wgeom.y; } } @@ -122,7 +152,7 @@ void Widget::update_style() on_style_change(); signal_autosize_changed.emit(); - rebuild(); + mark_rebuild(); } void Widget::set_tooltip(const string &t) @@ -140,11 +170,6 @@ void Widget::set_visible(bool v) signal_visibility_changed.emit(visible); } -void Widget::set_focusable(bool f) -{ - focusable = f; -} - void Widget::set_focus() { if(!parent) @@ -155,10 +180,49 @@ void Widget::set_focus() signal_request_focus.emit(); } +void Widget::set_enabled(bool e) +{ + set_state(DISABLED, (e ? NORMAL : DISABLED)); +} + void Widget::set_state(State mask, State bits) { + State old_state = state; state = (state&~mask)|bits; - rebuild(); + if(style && style->compare_states(old_state, state)) + mark_rebuild(); +} + +void Widget::set_animation_interval(const Time::TimeDelta &iv) +{ + if(ivget_parts(); for(Style::PartSeq::const_iterator i=parts.begin(); i!=parts.end(); ++i) { @@ -187,14 +251,19 @@ void Widget::render(GL::Renderer &renderer) const if(!style) throw logic_error(format("Attempt to render a widget with null style (class=\"%s\", style_name=\"%s\")", get_class(), style_name)); - GL::MatrixStack::Push _pushm(renderer.matrix_stack()); - renderer.matrix_stack() *= GL::Matrix::translation(geom.x, geom.y, 0); + static const GL::Tag texture_tag("ui_tex"); + + GL::Renderer::Push _push(renderer); + int x = 0; + int y = 0; + map_coords_to_root(x, y); + renderer.set_matrix(GL::Matrix::translation(x, y, 0)); const PartCache::PartList &parts = part_cache.get_parts(); for(PartCache::PartList::const_iterator i=parts.begin(); i!=parts.end(); ++i) { if(i->mesh && i->texture) { - renderer.set_texture(i->texture); + renderer.set_texture(texture_tag, i->texture, &style->get_sampler()); i->mesh->draw(renderer); } else if(i->part) @@ -212,6 +281,24 @@ void Widget::pointer_leave() clear_state(HOVER); } +void Widget::touch_press(int x, int y, unsigned finger) +{ + if(finger==0) + button_press(x, y, 1); +} + +void Widget::touch_release(int x, int y, unsigned finger) +{ + if(finger==0) + button_release(x, y, 1); +} + +void Widget::touch_motion(int x, int y, unsigned finger) +{ + if(finger==0) + pointer_motion(x, y); +} + void Widget::focus_in() { set_state(FOCUS);