Added some images, bumped up the version.

SVN revision: 34229
This commit is contained in:
titan 2008-04-09 19:47:39 +00:00 committed by titan
parent c7e5687565
commit d0b4c063e7
10 changed files with 27 additions and 20 deletions

View File

@ -6,6 +6,4 @@
________/ /__/ /__/ /__/ /_______/ /_/ /_______/ ________/ /__/ /__/ /__/ /_______/ /_/ /_______/
===Project Manager/Lead Developer=== ===Project Manager/Lead Developer===
Stephen "UnixTitan" Houston <UnixTitan@gmail.com> Stephen "okra" Houston <UnixTitan@gmail.com>
===People That Helped===
boycott tokyo <alberto@cored.org>

6
TODO
View File

@ -10,19 +10,17 @@ TODO-
===Command Line=== ===Command Line===
Get some command line options going! Get some command line options going!
===General=== ===General===
Dialogs For Adding/Removing Albums/Images. Album/Image Removal
DRAG AND DROP IS A MUST! DRAG AND DROP IS A MUST!
Keybindings Keybindings
===Layout=== ===Layout===
Ideas and Changes are welcome! Ideas and Changes are welcome!
===Normal View=== ===Normal View===
- -
===Edit View=== ===Single View===
Add Editing Controls(Zooms/Color Enhancement/Histogram/Cropping/etc..). Add Editing Controls(Zooms/Color Enhancement/Histogram/Cropping/etc..).
Better Saving Ability(This will include looking into editing and saving exif data). Better Saving Ability(This will include looking into editing and saving exif data).
Should we list navigation for other images better?(than using buttons with arrows) Should we list navigation for other images better?(than using buttons with arrows)
===Single View===
Should we list navigation for other images better?(than using buttons with arrwos)
===Slideshow=== ===Slideshow===
Need to Add Configuration to Slideshows.. Need to Add Configuration to Slideshows..

View File

@ -4,7 +4,7 @@ dnl Process this file with autoconf to produce a configure script.
rm -f config.cache rm -f config.cache
AC_INIT(configure.in) AC_INIT(configure.in)
AM_INIT_AUTOMAKE(ephoto, 2.15.0) AM_INIT_AUTOMAKE(ephoto, 3.15.0)
AM_CONFIG_HEADER(src/bin/config.h) AM_CONFIG_HEADER(src/bin/config.h)
AC_ISC_POSIX AC_ISC_POSIX

View File

@ -15,10 +15,12 @@ FILES = add.png \
go-down.png \ go-down.png \
go-next.png \ go-next.png \
image.png \ image.png \
in.png \
list_view.png \ list_view.png \
media-seek-backward.png \ media-seek-backward.png \
media-seek-forward.png \ media-seek-forward.png \
normal_view.png \ normal_view.png \
out.png \
photo_lens.png \ photo_lens.png \
preferences-system.png \ preferences-system.png \
redo.png \ redo.png \

BIN
data/images/in.png Normal file

Binary file not shown.

BIN
data/images/out.png Normal file

Binary file not shown.

Binary file not shown.

View File

@ -44,7 +44,7 @@ add_atree(Ewl_Widget *c)
ewl_mvc_view_set(EWL_MVC(tree), view); ewl_mvc_view_set(EWL_MVC(tree), view);
ewl_mvc_selection_mode_set(EWL_MVC(tree), EWL_SELECTION_MODE_SINGLE); ewl_mvc_selection_mode_set(EWL_MVC(tree), EWL_SELECTION_MODE_SINGLE);
ewl_object_fill_policy_set(EWL_OBJECT(tree), EWL_FLAG_FILL_ALL); ewl_object_fill_policy_set(EWL_OBJECT(tree), EWL_FLAG_FILL_ALL);
ewl_container_child_append(EWL_CONTAINER(c), tree); ewl_container_child_prepend(EWL_CONTAINER(c), tree);
ewl_widget_show(tree); ewl_widget_show(tree);
return tree; return tree;

View File

@ -23,7 +23,7 @@ change_size(Ewl_Widget *w, void *event, void *data)
Ewl_Widget * Ewl_Widget *
add_normal_view(Ewl_Widget *c) add_normal_view(Ewl_Widget *c)
{ {
Ewl_Widget *box, *button, *hbox, *sp, *vbox; Ewl_Widget *avbox, *box, *button, *hbox, *image, *sp, *vbox;
em->fbox_vbox = add_box(c, EWL_ORIENTATION_VERTICAL, 5); em->fbox_vbox = add_box(c, EWL_ORIENTATION_VERTICAL, 5);
ewl_object_fill_policy_set(EWL_OBJECT(em->fbox_vbox), ewl_object_fill_policy_set(EWL_OBJECT(em->fbox_vbox),
@ -36,12 +36,10 @@ add_normal_view(Ewl_Widget *c)
ewl_container_child_append(EWL_CONTAINER(em->fbox_vbox), hbox); ewl_container_child_append(EWL_CONTAINER(em->fbox_vbox), hbox);
ewl_widget_show(hbox); ewl_widget_show(hbox);
vbox = add_box(hbox, EWL_ORIENTATION_VERTICAL, 2); avbox = add_box(hbox, EWL_ORIENTATION_VERTICAL, 2);
ewl_object_fill_policy_set(EWL_OBJECT(vbox), EWL_FLAG_FILL_VFILL); ewl_object_fill_policy_set(EWL_OBJECT(avbox), EWL_FLAG_FILL_VFILL);
show_albums(vbox); box = add_box(avbox, EWL_ORIENTATION_HORIZONTAL, 2);
box = add_box(vbox, EWL_ORIENTATION_HORIZONTAL, 2);
ewl_object_fill_policy_set(EWL_OBJECT(box), EWL_FLAG_FILL_SHRINK); ewl_object_fill_policy_set(EWL_OBJECT(box), EWL_FLAG_FILL_SHRINK);
button = add_button(box, "Import", PACKAGE_DATA_DIR "/images/add.png", button = add_button(box, "Import", PACKAGE_DATA_DIR "/images/add.png",
@ -65,17 +63,28 @@ add_normal_view(Ewl_Widget *c)
ewl_container_child_append(EWL_CONTAINER(sp), em->fbox); ewl_container_child_append(EWL_CONTAINER(sp), em->fbox);
ewl_widget_show(em->fbox); ewl_widget_show(em->fbox);
box = add_box(vbox, EWL_ORIENTATION_HORIZONTAL, 10);
ewl_object_fill_policy_set(EWL_OBJECT(box), EWL_FLAG_FILL_SHRINK);
image = add_image(box, PACKAGE_DATA_DIR "/images/image.png", 0, NULL, NULL);
ewl_image_constrain_set(EWL_IMAGE(image), 20);
em->fthumb_size = ewl_hseeker_new(); em->fthumb_size = ewl_hseeker_new();
ewl_range_minimum_value_set(EWL_RANGE(em->fthumb_size), 16); ewl_range_minimum_value_set(EWL_RANGE(em->fthumb_size), 16);
ewl_range_maximum_value_set(EWL_RANGE(em->fthumb_size), 144); ewl_range_maximum_value_set(EWL_RANGE(em->fthumb_size), 144);
ewl_range_step_set(EWL_RANGE(em->fthumb_size), 16); ewl_range_step_set(EWL_RANGE(em->fthumb_size), 16);
ewl_range_value_set(EWL_RANGE(em->fthumb_size), 80); ewl_range_value_set(EWL_RANGE(em->fthumb_size), 80);
ewl_container_child_append(EWL_CONTAINER(vbox), em->fthumb_size); ewl_container_child_append(EWL_CONTAINER(box), em->fthumb_size);
ewl_callback_append(em->fthumb_size, EWL_CALLBACK_VALUE_CHANGED, ewl_callback_append(em->fthumb_size, EWL_CALLBACK_VALUE_CHANGED,
change_size, NULL); change_size, NULL);
ewl_object_maximum_size_set(EWL_OBJECT(em->fthumb_size), 160, 40); ewl_object_maximum_size_set(EWL_OBJECT(em->fthumb_size), 160, 40);
ewl_widget_show(em->fthumb_size); ewl_widget_show(em->fthumb_size);
show_albums(avbox);
image = add_image(box, PACKAGE_DATA_DIR "/images/image.png", 0, NULL, NULL);
ewl_image_constrain_set(EWL_IMAGE(image), 32);
return em->fbox_vbox; return em->fbox_vbox;
} }

View File

@ -117,12 +117,12 @@ add_standard_edit_tools(Ewl_Widget *c)
{ {
Ewl_Widget *image; Ewl_Widget *image;
image = add_image(c, PACKAGE_DATA_DIR "/images/search.png", 0, zoom_in, image = add_image(c, PACKAGE_DATA_DIR "/images/in.png", 0, zoom_in,
NULL); NULL);
ewl_image_size_set(EWL_IMAGE(image), 25, 25); ewl_image_size_set(EWL_IMAGE(image), 25, 25);
ewl_object_alignment_set(EWL_OBJECT(image), EWL_FLAG_ALIGN_LEFT); ewl_object_alignment_set(EWL_OBJECT(image), EWL_FLAG_ALIGN_LEFT);
image = add_image(c, PACKAGE_DATA_DIR "/images/search.png", 0, zoom_out, image = add_image(c, PACKAGE_DATA_DIR "/images/out.png", 0, zoom_out,
NULL); NULL);
ewl_image_size_set(EWL_IMAGE(image), 25, 25); ewl_image_size_set(EWL_IMAGE(image), 25, 25);
ewl_object_alignment_set(EWL_OBJECT(image), EWL_FLAG_ALIGN_LEFT); ewl_object_alignment_set(EWL_OBJECT(image), EWL_FLAG_ALIGN_LEFT);