]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/dropdown.cpp
Implement autosize() method for most widgets
[libs/gltk.git] / source / dropdown.cpp
index b00438e54c40ef7bc21dfb887ecd1945229a72bb..801c8a6428cfe81de6b1d82ac5f86154f4d1e3d0 100644 (file)
@@ -10,6 +10,7 @@ Distributed under the LGPL
 #include "list.h"
 #include "panel.h"
 #include "part.h"
+#include "root.h"
 #include "style.h"
 #include "text.h"
 
@@ -25,6 +26,24 @@ Dropdown::Dropdown():
        list.signal_item_selected.connect(sigc::mem_fun(this, &Dropdown::list_item_selected));
 }
 
+void Dropdown::autosize()
+{
+       if(!style)
+               return;
+
+       Widget::autosize();
+       geom.w = max(geom.w, list.get_geometry().w);
+
+       if(const Part *text_part = style->get_part("text"))
+       {
+               const Sides &margin = text_part->get_margin();
+               const GL::Font *font = style->get_font();
+               float font_size = font->get_default_size();
+               unsigned line_height = static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
+               geom.h = max(geom.h, line_height+margin.top+margin.bottom);
+       }
+}
+
 void Dropdown::append(const string &item)
 {
        list.append(item);
@@ -112,9 +131,32 @@ void Dropdown::on_style_change()
 
 void Dropdown::resize_list()
 {
-       list.autosize();
-       const Geometry &lgeom = list.get_geometry();
-       list.set_geometry(Geometry(0, -lgeom.h, max(geom.w, lgeom.w), lgeom.h));
+       list.autosize_all();
+       Geometry lgeom = list.get_geometry();
+       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<Root *>(p))
+               {
+                       const Geometry &rgeom = root->get_geometry();
+                       if(lgeom.h*2>rgeom.h)
+                               lgeom.h = rgeom.h/2;
+                       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)