]> git.tdb.fi Git - libs/gltk.git/blob - source/dropdown.cpp
ddf5c9268500479655796caecf9bad0a1ec71e20
[libs/gltk.git] / source / dropdown.cpp
1 #include <msp/gl/font.h>
2 #include "dropdown.h"
3 #include "list.h"
4 #include "panel.h"
5 #include "part.h"
6 #include "root.h"
7 #include "style.h"
8 #include "text.h"
9
10 using namespace std;
11
12 namespace Msp {
13 namespace GLtk {
14
15 Dropdown::Dropdown()
16 {
17         init();
18 }
19
20 Dropdown::Dropdown(ListData &d):
21         list(d)
22 {
23         init();
24 }
25
26 void Dropdown::init()
27 {
28         dropped = false;
29
30         add(list);
31         list.signal_item_selected.connect(sigc::mem_fun(this, &Dropdown::list_item_selected));
32         list.signal_autosize_changed.connect(sigc::mem_fun(this, &Dropdown::list_autosize_changed));
33 }
34
35 void Dropdown::autosize()
36 {
37         if(!style)
38                 return;
39
40         Widget::autosize();
41         list.autosize_all();
42         geom.w = max(geom.w, list.get_geometry().w);
43
44         if(const Part *text_part = style->get_part("text"))
45         {
46                 const Sides &margin = text_part->get_margin();
47                 const GL::Font &font = style->get_font();
48                 float font_size = style->get_font_size();
49
50                 unsigned max_w = 0;
51                 const ListData &data = list.get_data();
52                 for(unsigned i=0; i<data.size(); ++i)
53                 {
54                         unsigned w = static_cast<unsigned>(font.get_string_width(data.get_string(i))*font_size);
55                         max_w = max(max_w, w);
56                 }
57                 geom.w = max(geom.w, max_w+margin.left+margin.right);
58
59                 unsigned line_height = static_cast<unsigned>((font.get_ascent()-font.get_descent())*font_size);
60                 geom.h = max(geom.h, line_height+margin.top+margin.bottom);
61         }
62
63         rebuild();
64 }
65
66 void Dropdown::set_selected_index(int index)
67 {
68         list.set_selected_index(index);
69         if(index<0)
70                 text.set(string());
71 }
72
73 void Dropdown::rebuild_special(const Part &part)
74 {
75         if(part.get_name()=="text")
76                 text.build(part, geom, part_cache);
77         else
78                 Widget::rebuild_special(part);
79 }
80
81 void Dropdown::render_special(const Part &part, GL::Renderer &renderer) const
82 {
83         if(part.get_name()=="list" && dropped)
84                 list.render(renderer);
85 }
86
87 void Dropdown::button_press(int x, int y, unsigned btn)
88 {
89         if(dropped)
90         {
91                 Container::button_press(x, y, btn);
92                 if(!click_focus)
93                 {
94                         dropped = false;
95                         clear_state(ACTIVE);
96                         signal_ungrab_pointer.emit();
97                 }
98         }
99         else if(btn==1)
100         {
101                 dropped = true;
102                 set_state(ACTIVE);
103                 signal_grab_pointer.emit();
104         }
105 }
106
107 void Dropdown::on_geometry_change()
108 {
109         resize_list();
110 }
111
112 void Dropdown::on_style_change()
113 {
114         text.set_style(style);
115         resize_list();
116 }
117
118 void Dropdown::list_autosize_changed()
119 {
120         resize_list();
121         signal_autosize_changed.emit();
122 }
123
124 void Dropdown::resize_list()
125 {
126         list.autosize_all();
127         Geometry lgeom = list.get_geometry();
128         lgeom.x = 0;
129         lgeom.y = -lgeom.h;
130         lgeom.w = max(geom.w, lgeom.w);
131         int root_x = geom.x;
132         int root_y = geom.y;
133         for(Widget *p=parent; p; p=p->get_parent())
134         {
135                 root_x += p->get_geometry().x;
136                 root_y += p->get_geometry().y;
137                 if(Root *root = dynamic_cast<Root *>(p))
138                 {
139                         const Geometry &rgeom = root->get_geometry();
140                         if(lgeom.h*2>rgeom.h)
141                                 lgeom.h = rgeom.h/2;
142                         if(root_y+lgeom.y<0)
143                                 lgeom.y = -root_y;
144                         if(root_y+lgeom.y+lgeom.h>rgeom.h)
145                                 lgeom.y = rgeom.h-lgeom.h-root_y;
146                         if(root_x+lgeom.x+lgeom.w>rgeom.w)
147                                 lgeom.x = rgeom.w-lgeom.w-root_x;
148                         break;
149                 }
150         }
151         list.set_geometry(lgeom);
152 }
153
154 void Dropdown::list_item_selected(unsigned index)
155 {
156         if(dropped)
157         {
158                 dropped = false;
159                 clear_state(ACTIVE);
160                 signal_ungrab_pointer.emit();
161         }
162
163         text.set(list.get_data().get_string(index));
164
165         signal_item_selected.emit(index);
166         rebuild();
167 }
168
169
170 Dropdown::Loader::Loader(Dropdown &d):
171         DataFile::DerivedObjectLoader<Dropdown, Widget::Loader>(d)
172 {
173         add("item", &Loader::item);
174 }
175
176 void Dropdown::Loader::item(const string &v)
177 {
178         dynamic_cast<BasicListData<string> &>(obj.list.get_data()).append(v);
179 }
180
181 } // namespace GLtk
182 } // namespace Msp