X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdropdown.cpp;h=e48303317b809601514ce71db7dded49dffbc068;hb=96df5b14a964da5a592a36e10a23022d5649462a;hp=5d8a547bebae925083fb40222e8dde20f8178ab2;hpb=d7274749cb0e171e59d7dc9d7d1712906a351119;p=libs%2Fgltk.git diff --git a/source/dropdown.cpp b/source/dropdown.cpp index 5d8a547..e483033 100644 --- a/source/dropdown.cpp +++ b/source/dropdown.cpp @@ -1,157 +1,189 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - +#include #include "dropdown.h" #include "list.h" #include "panel.h" #include "part.h" +#include "root.h" +#include "style.h" +#include "text.h" using namespace std; namespace Msp { namespace GLtk { -Dropdown::Dropdown(const Resources &r): - Widget(r), - list(new List(res)), - dropped(false), - list_active(false) +Dropdown::Dropdown() { - list->signal_item_selected.connect(sigc::mem_fun(this, &Dropdown::list_item_selected)); - - update_style(); + init(); } -Dropdown::~Dropdown() +Dropdown::Dropdown(ListData &d): + list(d) { - delete list; + init(); } -void Dropdown::append(const string &item) +void Dropdown::init() { - list->append(item); -} + dropped = false; -void Dropdown::insert(unsigned i, const string &v) -{ - list->insert(i, v); + add(list); + list.set_visible(false); + list.set_view_all(); + list.signal_item_selected.connect(sigc::mem_fun(this, &Dropdown::list_item_selected)); + list.signal_autosize_changed.connect(sigc::mem_fun(this, &Dropdown::list_autosize_changed)); } -void Dropdown::remove(unsigned i) +void Dropdown::autosize_special(const Part &part, Geometry &ageom) const { - list->remove(i); -} + if(part.get_name()=="list") + { + Geometry lgeom; + list.autosize(lgeom); + ageom.w = max(ageom.w, list.get_geometry().w); + } + else if(part.get_name()=="text") + { + const Sides &margin = part.get_margin(); + const GL::Font &font = style->get_font(); + float font_size = style->get_font_size(); -void Dropdown::clear() -{ - list->clear(); + unsigned max_w = 0; + const ListData &data = list.get_data(); + for(unsigned i=0; i(font.get_string_width(data.get_string(i))*font_size); + max_w = max(max_w, w); + } + ageom.w = max(ageom.w, max_w+margin.left+margin.right); + + unsigned line_height = static_cast((font.get_ascent()-font.get_descent())*font_size); + ageom.h = max(ageom.h, line_height+margin.top+margin.bottom); + } } -void Dropdown::set_selected_index(int i) +void Dropdown::set_selected_index(int index) { - list->set_selected_index(i); + list.set_selected_index(index); + if(index<0) + text.set(string()); } -const string &Dropdown::get_selected() const +void Dropdown::rebuild_special(const Part &part) { - return list->get_selected(); + if(part.get_name()=="text") + text.build(part, state, geom, part_cache); + else + Widget::rebuild_special(part); } -int Dropdown::get_selected_index() const +void Dropdown::render_special(const Part &part, GL::Renderer &renderer) const { - return list->get_selected_index(); + if(part.get_name()=="list" && dropped) + list.render(renderer); } void Dropdown::button_press(int x, int y, unsigned btn) { - if(list->get_geometry().is_inside(x, y)) - { - const Geometry &lgeom=list->get_geometry(); - list->button_press(x-lgeom.x, y-lgeom.y, btn); - list_active=true; - } - else if(dropped) + if(dropped) { - dropped=false; - state&=~ACTIVE; - parent->ungrab_pointer(*this); + Container::button_press(x, y, btn); + if(!click_focus) + { + dropped = false; + list.set_visible(false); + clear_state(ACTIVE); + signal_ungrab_pointer.emit(); + } } else if(btn==1) { - dropped=true; - state|=ACTIVE; - - if(parent) - { - parent->raise(*this); - parent->grab_pointer(*this); - } + dropped = true; + list.set_visible(true); + resize_list(); + set_state(ACTIVE); + signal_grab_pointer.emit(); } } -void Dropdown::button_release(int x, int y, unsigned btn) +void Dropdown::on_geometry_change() { - if(list_active) - { - const Geometry &lgeom=list->get_geometry(); - list->button_release(x-lgeom.x, y-lgeom.y, btn); - list_active=false; - } + if(dropped) + resize_list(); } -void Dropdown::pointer_motion(int x, int y) +void Dropdown::on_style_change() { - if(list_active) - { - const Geometry &lgeom=list->get_geometry(); - list->pointer_motion(x-lgeom.x, y-lgeom.y); - } + text.set_style(style); + if(dropped) + resize_list(); } -void Dropdown::render_special(const Part &part) const +void Dropdown::list_autosize_changed() { - if(part.get_name()=="text") - { - if(list->get_selected_index()>=0) - render_text(part, list->get_selected()); - } - else if(part.get_name()=="list" && dropped) - list->render(); + if(dropped) + resize_list(); + signal_autosize_changed.emit(); } -void Dropdown::on_geometry_change() +void Dropdown::resize_list() { - list->set_geometry(Geometry(0, -100, geom.w, 100)); + Geometry lgeom; + list.autosize(lgeom); + lgeom.x = 0; + lgeom.y = -lgeom.h; + lgeom.w = max(geom.w, lgeom.w); + int root_x = geom.x; + int root_y = geom.y; + for(Widget *p=parent; p; p=p->get_parent()) + { + root_x += p->get_geometry().x; + root_y += p->get_geometry().y; + if(Root *root = dynamic_cast(p)) + { + const Geometry &rgeom = root->get_geometry(); + if(lgeom.h*2>rgeom.h) + { + lgeom.h = rgeom.h/2; + lgeom.y = -lgeom.h; + } + if(root_y+lgeom.y<0) + lgeom.y = -root_y; + if(root_y+lgeom.y+lgeom.h>rgeom.h) + lgeom.y = rgeom.h-lgeom.h-root_y; + if(root_x+lgeom.x+lgeom.w>rgeom.w) + lgeom.x = rgeom.w-lgeom.w-root_x; + break; + } + } + list.set_geometry(lgeom); } -void Dropdown::list_item_selected(unsigned index, const std::string &item) +void Dropdown::list_item_selected(unsigned index) { if(dropped) { - list_active=false; - dropped=false; - state&=~ACTIVE; - if(parent) - parent->ungrab_pointer(*this); + dropped = false; + clear_state(ACTIVE); + signal_ungrab_pointer.emit(); } - signal_item_selected.emit(index, item); + text.set(list.get_data().get_string(index)); + + signal_item_selected.emit(index); + rebuild(); } Dropdown::Loader::Loader(Dropdown &d): - Widget::Loader(d) + DataFile::DerivedObjectLoader(d) { add("item", &Loader::item); } -void Dropdown::Loader::item(const string &str) +void Dropdown::Loader::item(const string &v) { - static_cast(wdg).append(str); + dynamic_cast &>(obj.list.get_data()).append(v); } } // namespace GLtk