Add a slider for resizing the thumbnails!

SVN revision: 30171
This commit is contained in:
titan 2007-05-31 07:11:28 +00:00 committed by titan
parent dc54fae6a0
commit d2b277f884
2 changed files with 32 additions and 2 deletions

View File

@ -297,7 +297,8 @@ void populate_albums(Ewl_Widget *w, void *event, void *data)
{
thumb = add_image(em->fbox, imagef, 1,
freebox_image_clicked, NULL);
ewl_image_constrain_set(EWL_IMAGE(thumb), 81);
ewl_image_constrain_set(EWL_IMAGE(thumb),
ewl_range_value_get(EWL_RANGE(em->fthumb_size)));
ewl_object_alignment_set(EWL_OBJECT(thumb),
EWL_FLAG_ALIGN_CENTER);
ewl_widget_name_set(thumb, imagef);
@ -355,7 +356,9 @@ void populate_directories(Ewl_Widget *w, void *event, void *data)
{
thumb = add_image(em->fbox, imagef, 1,
freebox_image_clicked, NULL);
ewl_image_constrain_set(EWL_IMAGE(thumb), 81);
ewl_image_size_set(EWL_IMAGE(thumb),
ewl_range_value_get(EWL_RANGE(em->fthumb_size)),
ewl_range_value_get(EWL_RANGE(em->fthumb_size)));
ewl_object_alignment_set(EWL_OBJECT(thumb),
EWL_FLAG_ALIGN_CENTER);
ewl_widget_name_set(thumb, imagef);

View File

@ -1,7 +1,25 @@
#include "ephoto.h"
static void change_size(Ewl_Widget *w, void *event, void *data);
static void iterate(char *point2);
/*Change the thumb size*/
static void change_size(Ewl_Widget *w, void *event, void *data)
{
Ewl_Widget *child;
ewl_container_child_iterate_begin(EWL_CONTAINER(em->fbox));
while ((child = ewl_container_child_next(EWL_CONTAINER(em->fbox))))
{
ewl_image_constrain_set(EWL_IMAGE(child),
ewl_range_value_get(EWL_RANGE(em->fthumb_size)));
ewl_widget_reparent(child);
}
return;
}
/*Add the normal view*/
Ewl_Widget *add_normal_view(Ewl_Widget *c)
{
@ -21,6 +39,15 @@ Ewl_Widget *add_normal_view(Ewl_Widget *c)
ewl_container_child_append(EWL_CONTAINER(sp), em->fbox);
ewl_widget_show(em->fbox);
em->fthumb_size = ewl_hseeker_new();
ewl_range_minimum_value_set(EWL_RANGE(em->fthumb_size), 8);
ewl_range_maximum_value_set(EWL_RANGE(em->fthumb_size), 128);
ewl_range_step_set(EWL_RANGE(em->fthumb_size), 8);
ewl_range_value_set(EWL_RANGE(em->fthumb_size), 64);
ewl_container_child_append(EWL_CONTAINER(em->fbox_vbox), em->fthumb_size);
ewl_callback_append(em->fthumb_size, EWL_CALLBACK_VALUE_CHANGED, change_size, NULL);
ewl_widget_show(em->fthumb_size);
return em->fbox_vbox;
}