Commit Graph

742 Commits

Author SHA1 Message Date
Bruno Dilly 11487fbdb5 Fix elm_toolbar usage on several projects
SVN revision: 53896
2010-10-26 10:34:07 +00:00
titan c589ea128f Make sure to leave fullscreen mode when exiting the slideshow.
SVN revision: 53838
2010-10-24 19:10:20 +00:00
Tiago Rezende Campos Falcao 801c22f21c Force focus to scroller in flow mode.
The back action can be did with keybindings.

SVN revision: 53737
2010-10-21 19:21:15 +00:00
Tiago Rezende Campos Falcao 99aa09f9db Remove focus hard management.
Delay windows show to after criation and show of sub-objects. So, when
show windows, it give focus correctly.

SVN revision: 53736
2010-10-21 19:21:13 +00:00
Sebastian Dransfeld a1fddb6891 Only check hash if it exists
SVN revision: 53692
2010-10-20 20:46:53 +00:00
Tiago Rezende Campos Falcao 40b9a71963 Fix focus in flow mode.
You only can give focus to visible objects, hidden objects are
unfocusable.

SVN revision: 53655
2010-10-20 12:08:42 +00:00
Tiago Rezende Campos Falcao 3e1a7b64eb Do nothing when used cancel button
SVN revision: 53654
2010-10-20 12:08:39 +00:00
Lucas De Marchi ab56887638 Fix typo
opt needs some love though



SVN revision: 53465
2010-10-15 18:12:29 +00:00
Leandro Pereira efe017db8b [Ephoto] Update toolbar stuff to suit recent API changes
SVN revision: 53464
2010-10-15 17:54:28 +00:00
Tiago Rezende Campos Falcao ef5dd761e0 Elm_Layout isn't broken
SVN revision: 53463
2010-10-15 17:40:07 +00:00
Tiago Rezende Campos Falcao 0072df5d63 If use Ethumb_Client, include it
SVN revision: 53462
2010-10-15 17:40:03 +00:00
Gustavo Sverzut Barbieri 73a50e088b use elm goodies!
use elm_layout_box_append() + elm_fileselector_entry_add() to choose
directories!



SVN revision: 53386
2010-10-14 02:37:37 +00:00
Gustavo Sverzut Barbieri 8679562a81 and work nicely with empty directories
SVN revision: 53381
2010-10-13 22:32:41 +00:00
Gustavo Sverzut Barbieri 4802d3e2ef queue items to process from animators, save cpu and less flickering.
just add items from an animator so we give time to have a good queue
and do the insert in a batch. It will change the grid population less
often, and will trigger the grid recalc less often as well.



SVN revision: 53380
2010-10-13 22:28:23 +00:00
Gustavo Sverzut Barbieri c847e90429 init eio, as we use it
SVN revision: 53343
2010-10-13 06:15:16 +00:00
Gustavo Sverzut Barbieri dae342bc7d damn async things, they're always more complex than what you want.
in few cases we could quickly change directories and views would still
be populating, then they could access dt->entry
(ephoto_directory_thumb.c), so we need notifiers to know it is gone
and not mess with it any further.

Then ephoto_entry_free_listener_add() is born, added it to
flow_browser and slideshow for the sake of it... it shouldn't be
needed.



SVN revision: 53341
2010-10-13 06:11:06 +00:00
Gustavo Sverzut Barbieri 8756234b66 comment this as it seems to not play well with threads.
probably this is an eina issue with last optimizations from cedric,
but I'm commenting these out for now. (if efreet_mime is no-go from
threads, must remove it from enjoy as well).



SVN revision: 53339
2010-10-13 05:23:31 +00:00
Gustavo Sverzut Barbieri b4f63379b5 do not show up when we're at /
SVN revision: 53338
2010-10-13 05:21:45 +00:00
Gustavo Sverzut Barbieri 8bd148fa72 eio_file_cancel() is async and will run on future main loop iteration.
damn beast hard to find, but i guess ephoto is now ready (/me hides...)



SVN revision: 53337
2010-10-13 05:06:18 +00:00
Gustavo Sverzut Barbieri feba790912 some less valgrind errors.
I guess I've spotted the main problem with eio usage, will commit in
another revision.



SVN revision: 53335
2010-10-13 03:24:22 +00:00
Gustavo Sverzut Barbieri f5e062c676 handle no parameter without previous directory.
SVN revision: 53321
2010-10-12 23:46:36 +00:00
Gustavo Sverzut Barbieri 81d47b1344 ephoto is mostly ready again!
Well, at least that was what I had time and stamina to do. Please join
the development with your ideas and requirements.

The toolbar is now placed on top, because default.edc (from
elementary) says so. We better use elementary's profile to define the
theme to use, and a theme could have it at the bottom (mobiles?).

I've added all options to toolbar, which makes it very wide on single
image viewer. We'll later introduce toolbar item "visibility priority"
to auto-hide items and add a "More" menu if the elementary's profile
says so, other options will be to make it scrollable (as it is now).

EXIF rotation support is not right in my opinion. We're using map to
rotate, but it is not doing fine, as I said in another bug. We should
have code to request evas to load the image rotated, then we re-load
the image and it should work better (need to check how that would work
with region load from JPEG, used by elm_photocam).

Preferences are out as I ran out of time.



SVN revision: 53319
2010-10-12 22:54:20 +00:00
Gustavo Sverzut Barbieri ad73446df7 support more exif orientation modes.
Raster, this exposes some problems with map as well. At least flipping
seems to not work properly sometimes. In my case I just use Shift+[ to
flip horizontally and it does not work.



SVN revision: 53312
2010-10-12 18:16:42 +00:00
Gustavo Sverzut Barbieri d74d0ff7c9 alt-up for thumb browser, make orient get visible outside.
I tried to apply the orient rotation using map on the elm_photo, but
it does not work :-( If you know how to fix it, take a look.



SVN revision: 53311
2010-10-12 17:26:23 +00:00
Gustavo Sverzut Barbieri 3b4f4d0f25 remove error message, fix message and add debug.
SVN revision: 53294
2010-10-12 05:19:56 +00:00
Gustavo Sverzut Barbieri 717c438a0e ephoto autotools overhaul.
* added Vincent recommended warnings (ie: -Wshadow) and also -Wextra;
 * uses ac_attribute.m4 to define __UNUSED__;
 * uses -Wl,--as-needed
 * uses -fvisibility=hidden by default, if supported
 * uses -ffunction-sections -fdata-sections + -Wl,--gc-sections
 * added gettext (not tested yet, but should work)
 * added quicklaunch support (not tested yet, but should work)
 * make it pass make distcheck

with the optimization flags, on my 32bits machine ephoto is amazingly
44Kb binary! Of course it loads super-fast even without quicklaunch,
amazing what we can do with 44kb binary + 188kb theme (mostly about
images I'm shipping in 128x128 + 256x256 + 512x512 and other images
that should be in elementary's theme).



SVN revision: 53293
2010-10-12 04:58:04 +00:00
Gustavo Sverzut Barbieri 5064e7bf6e remember_directory is not an option anymore.
useless to have it as an option as user may already override with
command line what to show.



SVN revision: 53283
2010-10-12 03:44:17 +00:00
Gustavo Sverzut Barbieri 770baf199e slideshow is back.
toolbars still missing, will return them back tomorrow.



SVN revision: 53281
2010-10-12 03:40:14 +00:00
Gustavo Sverzut Barbieri e5c722abb2 insert thumbnails sorted.
SVN revision: 53255
2010-10-11 02:54:49 +00:00
Gustavo Sverzut Barbieri c0537216c5 load orient from jpeg, remove former code that was ifdef'ed.
maybe the code is complaining is complaining too loud of lack of exif,
we can change that later if required.

remove the rotation animation as the case 270->0 is too confusing! it
would need some logic to rotate 270->360 then make it 0.



SVN revision: 53254
2010-10-11 02:30:51 +00:00
Gustavo Sverzut Barbieri b44a686b53 one more day of work on ephoto, still not complete.
flow browser (why that name?!) is back, with the my traditional
combination of 255,0 in rgb colored buttons in edje.

tomorrow will work on slideshow and make it work.

NOTE: ProFUSION team will work on a solution to have elm_toolbar +
elm_menu to be good and provide what we have in eve/enjoy in a more
generic way without thousand lines of macros in EDC. The goal is to
have configurable implementation that would provide some UI on desktop
and another on embedded, also showing buttons as we have space, and
hidding them with an automatic "more" entry if there is no space for
all items. That should improve eve, enjoy, ephoto and possibly others.



SVN revision: 53250
2010-10-11 01:10:27 +00:00
Gustavo Sverzut Barbieri 47da8cd526 zoom actions, still barebones.
I was about to move to efenniht theme, but it will be some work I'd
not be able to finish in time... given that we'll have enjoy, eve,
envision and ephoto using the same things, it is time to consider a
better replicable solution.




SVN revision: 53240
2010-10-10 18:57:48 +00:00
Gustavo Sverzut Barbieri 9652a108bf ouch, refactor part 2 -- less is more, so get nothing ;-)
okay, still yet another partial code, it's far from ready, don't even
checkout until you're ready to code.

preferences, flow_browser, slideshow are temporarily gone.

still no toolbar in main window, layout redone using EXTERNAL... when
it go back, it will be in the same form as eve/enjoy.



SVN revision: 53238
2010-10-10 01:13:53 +00:00
Gustavo Sverzut Barbieri e21422bf65 ephoto core simplification - part 1 (UNFINISHED!!!!)
I'm rewriting parts of ephoto to simplify it, one of the things is to
avoid lots of nesting of layouts to get a simple preview
image.

So far just the thumb directory is done to the point it shows the
contents of a directory, it will do nothing on selection and
clicks. There is no toolbar either, as this is going to be replaced
later on.

EFL bugs so far:
 * eio_file_cancel() is not playing nice with ecore_pipe, with errors like: "ecore_pipe.c:517 _ecore_pipe_read() An unhandled error (ret: -1 errno: 9)occurred while reading from the pipe the length"

 * evas/edje map is broken WRT clipping! if I have map { on: 1;
   rotation.z: 10;} and this part is clipped to some other part, the
   clipper will be ignored!

Sorry, but I couldn't finish it now, trying to do it later today and
tomorrow. I still need to add the elm_genlist_item_prepend(),
elm_genlist_item_insert_before() and elm_genlist_item_insert_after()
to get the sorted insert to work.



SVN revision: 53237
2010-10-09 19:13:35 +00:00
Gustavo Sverzut Barbieri 73d91bfa90 usual paradigm is vertical scroll, let's stick to it.
SVN revision: 53226
2010-10-09 01:45:32 +00:00
Gustavo Sverzut Barbieri 20df19562f use noframe style... yeah! get ride of that annoying border inside the border!
SVN revision: 53222
2010-10-08 23:18:41 +00:00
Gustavo Sverzut Barbieri 840b2e8574 faster and better: png or jpeg, crop.
if source file is a jpeg, then speed up and generate thumbnails in
format "JPEG" that are smaller and faster to load.

also define the aspect to be cropped rather than keep aspect as we're
showing the images in a fixed square. The aspect one would be good if
we did not use a grid, rather a flow layout.



SVN revision: 53218
2010-10-08 23:03:22 +00:00
Gustavo Sverzut Barbieri e3a1481bb9 what about generating thumbnails that match the expected view size?
now generating thumbnails at 128, 256 and 512, the generation is
delayed to avoid unnecessary work for ethumbd.



SVN revision: 53217
2010-10-08 22:48:12 +00:00
Gustavo Sverzut Barbieri 2fd24ddbac hack not needed anymore.
SVN revision: 53213
2010-10-08 21:47:40 +00:00
Gustavo Sverzut Barbieri e434b9aaee refactor, improve sizing of icons.
use super-duper-nice edje features to choose image based on the
current object size and provide icons at 128, 256 and 512 so we're
always high quality.



SVN revision: 53212
2010-10-08 21:43:57 +00:00
Gustavo Sverzut Barbieri dc2f3c47c9 avoid directories starting with '.' and faster check for directory.
SVN revision: 53210
2010-10-08 20:31:04 +00:00
Gustavo Sverzut Barbieri ccaa92a949 better min/max values.
SVN revision: 53209
2010-10-08 20:25:18 +00:00
Gustavo Sverzut Barbieri 50c67f7ad6 simplify, move thumb count to theme, min limit to contents.
If we used such a large border with small item sizes, the content size
would be zero and thus icons did turn invisible. Limit that to 16x16.

"thumbs" in group will say how many thumbnails are desired, instead of
hardcoding it to 3.

countless code simplifications.



SVN revision: 53207
2010-10-08 20:21:29 +00:00
Gustavo Sverzut Barbieri 5637a4879f oops, remaining shutdowns that should die.
SVN revision: 53201
2010-10-08 19:48:32 +00:00
Gustavo Sverzut Barbieri 2e88dacb27 whitespace cleanup, log domain to lowercase.
SVN revision: 53200
2010-10-08 19:04:34 +00:00
Gustavo Sverzut Barbieri 844d8b6529 simplify, just init efreet_mime once, etc.
make code simpler, just init efreet_mime at startup, just need ethumb
once as well.



SVN revision: 53199
2010-10-08 19:03:21 +00:00
Gustavo Sverzut Barbieri cc899e3325 couple of minor improvements to ephoto.
* fix a bit of coding style (damn, it's totally off with SVN coding style!)

 * save basename to avoid calculating it over and over again.

 * ignore hidden files and folders (those that start with ".")

 * rename "top" to "Up" as we just go one level.

 * add TODO that requires adding eio_file_ls_direct()... the current
   version is not that useful, we really could use dirent, basename
   and lengths while filtering.

 * add TODO to speed up matches of JPG, PNG, and like... these will
   account for most of the files we browse, thus they should be fast
   and not rely on efreet (which may not be that good to use from
   threads... if it is, then it's more expensive as we need to lock)



SVN revision: 53198
2010-10-08 18:51:19 +00:00
Nicolas Aguirre f83df173c9 Add missing file
SVN revision: 52999
2010-10-03 14:45:53 +00:00
Nicolas Aguirre 53a83a021f Apply Otavio Pontes patch about displaying directories and modify it to display thumbnails when photos are present into this directory.
Author: Otavio Pontes <otavio@profusion.mobi>
Date:   Mon Sep 27 15:26:55 2010 -0300

    Displaying directories in thumb browser
    
    It is possible also to open an directory to see images in it.




SVN revision: 52994
2010-10-03 09:50:00 +00:00
Viktor Kojouharov 1a73a71d36 add an option to sort the images before displaying them.
SVN revision: 52989
2010-10-03 00:13:02 +00:00
Nicolas Aguirre 1c512b83f8 Avoid photocam zoom effect on picture load.
SVN revision: 52956
2010-10-01 18:06:05 +00:00
Cedric BAIL 7a3e11d737 * ephoto: call exif only on jpeg file.
SVN revision: 52927
2010-09-30 16:23:54 +00:00
Nicolas Aguirre 153e9d89d6 commit c0d355a3438ba4e9c731d190fa292c0eb9acde23
Author: Otavio Pontes <otavio@profusion.mobi>
Date:   Mon Sep 27 11:32:34 2010 -0300

    Fixing some bugs in image exibition.
    
    Using photocan to show png files in flow browser and using elm_image
    instead of elm_bg to display thumbs in thumb_browser. elm_bg was
    creating a strange border in images with white(or transparent)
    background.



SVN revision: 52902
2010-09-29 17:57:43 +00:00
Otavio Pontes ad063ce60e From: Otavio Pontes <otavio@profusion.mobi>
Date: Thu, 23 Sep 2010 16:39:58 -0300
Subject: [PATCH 4/5] Adding new keyboard shortcuts to ephoto.
To: otavio@profusion.mobi

Also adds:
 - zoom in/out function to flow_browser and buttons in toolbar
for zoom and rotation.
 - Fullscreen mode to slideshow.



SVN revision: 52899
2010-09-29 17:34:35 +00:00
Nicolas Aguirre 4da0ca1b85 The second patch fixes on bug related to an invalid memory access that was
causing segmentation fault in my computer (valgrind was complaining
about it too).

patch from Otávio Pontes.



SVN revision: 52898
2010-09-29 17:09:42 +00:00
Nicolas Aguirre 7e44cd9256 First patch fixes one warning about integer comparison.
patch from Otávio Pontes



SVN revision: 52897
2010-09-29 17:06:32 +00:00
Viktor Kojouharov d9c7cfd80e add the external editor support (currently by pressing "e" in the flow browser)
SVN revision: 52820
2010-09-27 22:02:10 +00:00
Viktor Kojouharov 5d473ea800 fix a few segfaults that happened on a specific computer
SVN revision: 52483
2010-09-20 09:06:53 +00:00
titan e2fed73485 Fix toolbar items.
SVN revision: 52481
2010-09-19 22:32:56 +00:00
titan e5cee3de65 Don't swallow the toolbar twice.
SVN revision: 52479
2010-09-19 21:59:05 +00:00
titan 19243a1ae1 Swallow the toolbar in the correct place.
SVN revision: 52478
2010-09-19 21:54:58 +00:00
Viktor Kojouharov ca05627df0 Preferences dialog. Users can change the slideshow parameters, and tell ephoto to start from the last remembered dir, if it was started with no arguments
SVN revision: 52464
2010-09-19 15:30:36 +00:00
titan 574483bb47 Remove a lot of warnings.
SVN revision: 52424
2010-09-18 20:18:43 +00:00
Viktor Kojouharov 35c4b294bd optional libexif support.
initial rotation support with edje map (the swallow still needs to be refitted in the available space after the rotation)



SVN revision: 52238
2010-09-14 08:35:42 +00:00
Viktor Kojouharov 1dcf8aef39 always save the config on exit
SVN revision: 52236
2010-09-14 07:02:04 +00:00
Viktor Kojouharov cbdc82096b limit thumb scrolling to the horizontal axis, since it doesn't overflow vertically
SVN revision: 52202
2010-09-13 22:27:00 +00:00
Viktor Kojouharov cdb8b51c3f eet configuration. only stores the slider value for now. eina log domain macros
SVN revision: 52201
2010-09-13 22:24:59 +00:00
Nicolas Aguirre 368ed28cce remove debug messages and formatting
SVN revision: 52194
2010-09-13 17:36:16 +00:00
Nicolas Aguirre bd1ed51ead Add a callback when a new directory is selected : "directory,changed".
SVN revision: 52193
2010-09-13 17:02:32 +00:00
Nicolas Aguirre ea18ee503b Use evas_smart objects for flow and thumb browsers, we can now use them as regular evas smart objects with evas_object_show/del/hide ...
SVN revision: 52192
2010-09-13 16:40:33 +00:00
Nicolas Aguirre a13304ff1d Change ephoto to use an edje layout instead of elm boxes.
SVN revision: 52191
2010-09-13 16:29:39 +00:00
Cedric BAIL fc3497295d * ephoto: no need to destroy window at that point.
SVN revision: 52137
2010-09-10 12:30:59 +00:00
Cedric BAIL 11ee1079e1 * ephoto: some cleanup.
SVN revision: 51943
2010-09-07 13:12:08 +00:00
Cedric BAIL 24c98b891b * ephoto: fix use of unitialized data.
SVN revision: 51659
2010-08-26 13:42:38 +00:00
titan a8a45932f3 Move the toolbar to the bottom for consistency and fix segv when clicking View Large while no pictures are populated.
SVN revision: 51649
2010-08-26 00:40:31 +00:00
Lucas De Marchi 182fd84af4 Convert (hopefully) all comparisons to NULL
Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;


other cases:

a == NULL                         !a
a != NULL                         a




SVN revision: 51487
2010-08-21 13:52:25 +00:00
Lucas De Marchi c3a6049d53 Fix wrong usages of malloc, calloc and E_NEW
Patch by bad-alloc.cocci


SVN revision: 50828
2010-08-05 00:50:43 +00:00
titan 133c3b83e0 Whoops. Fix for real.
SVN revision: 50776
2010-08-03 17:57:10 +00:00
titan 98bb42c6a2 Make changes to match api changes in eio.
SVN revision: 50772
2010-08-03 17:14:54 +00:00
titan 82f69119b6 Add slideshow to ephoto.. It uses elm_slideshow, and this is likely temporary, because in the f uture I am going to do some more extensive slideshow stuff. I'm not happy with this, it seems pretty slow on transitions(I'll take a look at speeding things up), but it will do for now.
SVN revision: 50569
2010-07-28 02:06:03 +00:00
Cedric BAIL 7f75caca3a * eio: Add an error callback, some docs and a small README.
SVN revision: 50446
2010-07-23 11:00:44 +00:00
Cedric BAIL e2c35a285b * ephoto: use eio to simplify and make a small nice example.
SVN revision: 50432
2010-07-22 16:15:16 +00:00
Cedric BAIL a1af3e8605 * ephoto: simplify code and make it easy to add new keys.
SVN revision: 50430
2010-07-22 16:09:31 +00:00
titan a6e087843a Allow you to browse through the large images using arrow keys, left and right.
SVN revision: 50423
2010-07-21 23:40:49 +00:00
titan 56d4da9fd3 Fix ephoto's gengrid theme so photos show again.
SVN revision: 50261
2010-07-14 23:23:54 +00:00
titan f1a200c4c3 Add the ability to specify a directory or file to run ephoto with.
SVN revision: 50176
2010-07-10 21:52:14 +00:00
titan f4d5a08859 Decided I did not like the expandable file selector.
SVN revision: 50134
2010-07-08 22:26:45 +00:00
titan 6e63b962bd Better use of the stringshare_replace function. Once again gracias k-s.
SVN revision: 50130
2010-07-08 18:53:18 +00:00
titan 0459ed3022 eina_stringshare_replace as suggested by k-s.
SVN revision: 50129
2010-07-08 18:45:27 +00:00
titan 47bd2c282e Use structures in eina_hash. Per k-s's suggestion/request ;) Props to Mike Blumenkrantz for teaching the ways of eina like Yoda taught Luke the ways of the force.
SVN revision: 50121
2010-07-08 04:25:28 +00:00
titan 4b9816830d Use eina_stringshare where plausible.
SVN revision: 50119
2010-07-08 03:39:52 +00:00
titan 97b5b3ad0f Add change directory functionality... some of the eina stuff may be wrong, if it is please let me know. Still getting use to eina.
SVN revision: 50116
2010-07-08 02:37:45 +00:00
titan 9e69452b80 Allow ephoto's large view to show all image types, not just jpeg... bit of a hack I know.. better ideas, let me know.
SVN revision: 50057
2010-07-06 03:16:21 +00:00
titan fa09a70bf8 Add the ability to show the selected image if view large is pressed and an image is selected and add the ability to double click an image to view it large. Also formatting.
SVN revision: 50051
2010-07-05 22:58:16 +00:00
titan e73f692de2 Fix elementary warning that was getting thrown.
SVN revision: 50049
2010-07-05 21:29:14 +00:00
titan c334b2ab20 Add a flow browser. It can be accessed by clicking View Large from the toolbar. It is functional for viewing your images at high resolutions.
SVN revision: 50048
2010-07-05 21:07:53 +00:00
Mike Blumenkrantz c5efd33775 efreet_mime_{init,shutdown} are important apparently?
SVN revision: 50043
2010-07-05 06:19:15 +00:00
Mike Blumenkrantz 93959279ca not checking for null values?? BAD CEDRIC! NO COOKIE!
SVN revision: 50042
2010-07-05 05:56:46 +00:00
titan 12c68013d8 Remove ephoto_thumb.c and use elm_bg.
SVN revision: 50012
2010-07-03 17:00:58 +00:00
titan 83b038d947 eina_stringshare instead of strdup. Slider now works for thumb size!
SVN revision: 50008
2010-07-03 04:42:22 +00:00
titan 6926304983 Use elm_layout for the images. Use a hash to keep a match of files and their corresponding thumb_path.
SVN revision: 50005
2010-07-02 21:35:51 +00:00
Cedric BAIL 0f3b22a98a * eina: rename ecore_file_ls_iterator to eina_file_ls.
SVN revision: 50002
2010-07-02 17:23:05 +00:00
Cedric BAIL 7ca8bbb593 * ephoto: use cleaner ecore_file_ls_iterator API.
SVN revision: 49998
2010-07-02 15:27:09 +00:00
Cedric BAIL 32b4c39995 * ephoto: use ecore_long_run instead of idler to do async blocking IO.
SVN revision: 49995
2010-07-02 11:17:59 +00:00
titan 1218856b51 This is a rework of ephoto using mostly elementary. It is very basic and doesn't have much functionality at all, but that will come soon enough. Feel free to install it and run it in a directory of photos/images to get an idea of the direction and provide feedback/ideas.
SVN revision: 49973
2010-07-01 18:49:22 +00:00
titan f07fc8b156 Remove old ephoto
SVN revision: 49972
2010-07-01 18:38:05 +00:00
Sebastian Dransfeld 88b61eed2c remove swap files from svn
SVN revision: 47793
2010-04-06 18:36:15 +00:00
Cedric BAIL c3a1174a41 * ephoto: properly remove Ecore_Data.
SVN revision: 47494
2010-03-26 16:09:24 +00:00
titan 25827bc1c3 Whoops. Free the opts.
SVN revision: 43086
2009-10-14 21:18:31 +00:00
titan c50aa91d93 Add ecore_getopt to support options for ephoto. Thanks to PrinceAMD for the patch.
SVN revision: 43085
2009-10-14 21:17:34 +00:00
titan d5285b049e Fix slideshow to work properly.
SVN revision: 43068
2009-10-14 04:03:22 +00:00
titan 4e6e38a200 Add slideshow functionality, still needs some work.
SVN revision: 43064
2009-10-13 23:46:47 +00:00
titan 69c9bca326 Whoops! Fix typo!
SVN revision: 43029
2009-10-11 23:11:01 +00:00
titan bbdb4b78cf Remove debug printfs.
SVN revision: 43028
2009-10-11 23:09:21 +00:00
titan a8a0794777 Add fullscreen support.
SVN revision: 42985
2009-10-09 21:04:04 +00:00
titan 8bf716e895 Fix flow image bug.
SVN revision: 42973
2009-10-08 21:19:48 +00:00
titan a96b8a2813 Whoops, little typo, fix changing pages.
SVN revision: 42969
2009-10-08 21:08:52 +00:00
titan 9c7fb20968 Fix seg when window is resized too small.
SVN revision: 42968
2009-10-08 20:38:00 +00:00
titan ded2e589e6 Fix resizing.
SVN revision: 42967
2009-10-08 20:15:35 +00:00
titan b05ae06991 Fix maximize completely.
SVN revision: 42881
2009-10-05 00:38:45 +00:00
titan 4b8e6cd326 Get maximize working.
SVN revision: 42880
2009-10-04 23:31:31 +00:00
titan 14c1ecfdd6 More reverts.
SVN revision: 42848
2009-10-01 22:44:19 +00:00
titan d5a8240854 Bah just digging a deeper hole. going to revert and give myself some time to think about this.
SVN revision: 42847
2009-10-01 22:41:37 +00:00
titan 8e54bffad6 More calculation fixes. jeeze.
SVN revision: 42845
2009-10-01 22:08:22 +00:00
titan 377e2b5e9e Calculate padding.
SVN revision: 42844
2009-10-01 21:54:35 +00:00
titan 2f9546e05c Minor fixes.
SVN revision: 42843
2009-10-01 21:27:27 +00:00
titan aeaad2c5e7 More calculation fixes.
SVN revision: 42841
2009-10-01 18:34:45 +00:00
titan 1788c2bb88 Whoops, messed up some calculations.
SVN revision: 42840
2009-10-01 18:14:58 +00:00
titan d858890c57 Minor cleanups.
SVN revision: 42839
2009-10-01 18:04:55 +00:00
titan 9236d613b9 Fix a bug on resizing.
SVN revision: 42838
2009-10-01 17:45:35 +00:00
titan ca69fd3fe2 add a flow browser
SVN revision: 42827
2009-10-01 04:54:48 +00:00
titan 5d48a202c4 Fix thumbnailing!
SVN revision: 42812
2009-09-30 02:45:58 +00:00
titan ee201f4712 Get aspect working.
SVN revision: 42809
2009-09-30 02:16:53 +00:00
titan af1af349f7 Thumbnail discovery on an idler.
SVN revision: 42741
2009-09-27 16:51:59 +00:00
titan b6e4815e66 Evas/Edje Ephoto. Needs a lot of work. Run it in a directory where there are images to see the small amount of progress. Good things to come!
SVN revision: 42723
2009-09-26 18:11:38 +00:00
titan e972923902 Remove old ephoto.
SVN revision: 42722
2009-09-26 18:04:22 +00:00
titan 13dd86ebb3 Some autofoo changes.
SVN revision: 39128
2009-02-21 22:37:25 +00:00
titan 15f560a446 Small bug fix.
SVN revision: 39084
2009-02-18 22:06:40 +00:00
titan be2160abfc Remove .deps folder, thanks vtorri
SVN revision: 39083
2009-02-18 19:02:07 +00:00
titan cce80b4802 Free image_data that is lying around after effects have been applied.
SVN revision: 39082
2009-02-18 18:57:06 +00:00
titan 31d7877a11 Change the sepia formula a bit.
SVN revision: 39067
2009-02-18 00:29:44 +00:00
titan 55caff88a1 Changes, especially to the single view
SVN revision: 39065
2009-02-18 00:10:56 +00:00
titan 5bc5e2d729 Add a function to check if an image has exif data.
SVN revision: 39064
2009-02-17 22:12:07 +00:00
titan a48f17a75e Whoops, add the data directory.
SVN revision: 39040
2009-02-16 18:00:23 +00:00
titan b71d5906a1 Put in the rewritten code. A lot of things still needing to be done, but
its a good start.


SVN revision: 39034
2009-02-16 03:26:10 +00:00
titan 560f86f207 Remove the old ephoto in order to get ready for some rewriting to take
its place


SVN revision: 39033
2009-02-16 03:22:23 +00:00
titan 02fb9b3ace Fix advanced window to show its buttons.
SVN revision: 36346
2008-09-30 08:22:20 +00:00
titan 00320aef4c Add many changes, some functional, some not. Added back a file system
image viewing tab, done various cleanups/work. I basically wanted to get
what I had into the repository and keep up the work on the new stuff and
get the changes going.


SVN revision: 36339
2008-09-30 05:39:25 +00:00
titan 20edb14dbe Change from Freebox to Freebox_mvc.. update to work with fill policy changes
SVN revision: 34826
2008-06-14 21:35:01 +00:00
titan 8dcd10673c Fix compile error
SVN revision: 34358
2008-04-24 02:21:08 +00:00
titan a6630fbe25 Allow zooming in on the single view image further than proportional fit.
SVN revision: 34356
2008-04-23 21:28:10 +00:00
titan 2b27e4decd Use labels instead of text for this..
SVN revision: 34241
2008-04-10 20:47:24 +00:00
titan 579fc529c3 Text/Labels should not be shrunk.
SVN revision: 34240
2008-04-10 20:40:50 +00:00
titan 0e8deec487 Fix a segfault
SVN revision: 34232
2008-04-10 00:53:39 +00:00
titan 168510994b get rid of highlighting
SVN revision: 34231
2008-04-10 00:46:29 +00:00
titan fe6a9ee87c Bug fix for when albums are clicked
SVN revision: 34230
2008-04-10 00:31:33 +00:00
titan d0b4c063e7 Added some images, bumped up the version.
SVN revision: 34229
2008-04-09 19:47:39 +00:00
titan c7e5687565 A lot of fixes and changes.. still needs a bit of work.. got some bugs to fixes. Wanted to get what I have in to cvs.
SVN revision: 34222
2008-04-08 22:39:00 +00:00
Jaime Thomas 76085bea4c Update ephoto to current api.
SVN revision: 33140
2007-12-14 22:43:08 +00:00
Eric Schuele 0fd9b2ff93 warnings--
SVN revision: 32317
2007-11-03 03:02:40 +00:00
titan e5b8c1cea9 More cleanups and work. Also the About window now looks much better thanks to an image from tokyo.
SVN revision: 31715
2007-09-14 18:23:38 +00:00
titan 369fd1a164 Several cleanups, changes. The browser is now in its own window.
SVN revision: 31714
2007-09-14 18:02:27 +00:00
titan 2f9dec93e6 I'm back! Lets not error on warnings. Still expose them, just not
error.


SVN revision: 31665
2007-09-09 19:31:27 +00:00
Peter Wehrfritz 32f813ff0d *API BREAK* see the discussion in the mailing list. misc and e_modules will follow
SVN revision: 30970
2007-07-25 17:01:04 +00:00
titan aaab7ef651 Fix the alpha issues with grayscale and sepia conversions, thanks
rasties and rephorm


SVN revision: 30357
2007-06-17 03:21:51 +00:00
titan 6bdde18103 Add more width to the slider.
SVN revision: 30340
2007-06-16 06:46:28 +00:00
titan 41637e6b7a Black background for slideshows! Probably one of the most requested features.
SVN revision: 30307
2007-06-10 21:46:36 +00:00
titan a9aea24c95 Make the slider fixed size, and aligned to the right.
SVN revision: 30306
2007-06-10 21:11:29 +00:00
titan b04e087457 Fix the slider when dealing with albums.
SVN revision: 30287
2007-06-09 16:04:10 +00:00
titan 82d1aff4ea Various cleanups and fixes.
SVN revision: 30188
2007-06-01 21:46:19 +00:00
titan e7b86f6890 Whoops, your going to need this to make the thumb seeker work!
SVN revision: 30172
2007-05-31 07:15:52 +00:00
titan d2b277f884 Add a slider for resizing the thumbnails!
SVN revision: 30171
2007-05-31 07:11:28 +00:00
titan dc54fae6a0 Add a new file that separates out dialogs. This is cleaner. Cleanup some code.
Ephoto will now open with its file system in the current working directory!


SVN revision: 30170
2007-05-31 06:02:36 +00:00
titan 2d80b374c2 Small button fill/alignment fix for the exif button.
SVN revision: 30086
2007-05-27 03:22:16 +00:00
titan e3bdce12ea Change the size of the tango icons we use, make the .. directory have a different image and redo a few of the images.
SVN revision: 30079
2007-05-26 00:15:17 +00:00
titan 267def29ac Sepia speedups and fixes. Sepia is tons better now.
SVN revision: 30075
2007-05-25 20:55:53 +00:00
titan 2515a4b4ba Work on sepia a little more.
SVN revision: 30072
2007-05-24 22:43:03 +00:00
titan 66031123a5 Sepia works pretty well now, I do believe. Added a contrast formula based on
imlib2, and soon to add a brightness one.


SVN revision: 30068
2007-05-24 19:27:07 +00:00
titan 046f7d8274 Fix black and white conversion with alpha.
Add the beginnings of sepia conversion, it does not work quite right yet
though, need to work on constrast and brightness functions to get it
working perfectly.


SVN revision: 30060
2007-05-23 22:02:56 +00:00
titan 3997b3374c Ephoto can now convert images to black and white. The filter is under
the
advanced tools in the edit view.


SVN revision: 30055
2007-05-22 23:04:02 +00:00
titan b294b27b58 Patch from Marcus Huwe to fix ephoto warnings with scanf.
SVN revision: 30038
2007-05-20 03:44:11 +00:00
titan 96ac239a6d Cleanup
SVN revision: 30033
2007-05-19 16:59:09 +00:00
titan d7dfb6fc11 Remove printf.
SVN revision: 30026
2007-05-18 21:47:24 +00:00
titan fac0f67dfc That was a stupid way to do it. Silly ifs.
SVN revision: 30025
2007-05-18 21:46:00 +00:00
titan 90185635e0 Convert the save dialog to use one slider.
SVN revision: 30021
2007-05-18 21:16:41 +00:00
titan 895288a97c Formatting++
SVN revision: 30000
2007-05-15 17:09:26 +00:00
titan 612cbd31ad Cleanups. Fix slideshow segv.
SVN revision: 29999
2007-05-15 16:44:07 +00:00
titan 3cf5b00d0d Fix the error images for blur and sharpen buttons.
SVN revision: 29997
2007-05-14 21:54:05 +00:00
titan c358e3546f Clean it up for translators.
SVN revision: 29995
2007-05-14 17:05:29 +00:00
titan cd77e7fcf7 Add blur/sharpen options to ephoto!!!!!
SVN revision: 29955
2007-05-11 22:49:31 +00:00
titan 6b65a43b86 Fix a flag typo for saving
SVN revision: 29900
2007-05-07 02:17:05 +00:00
titan 88061e3b04 Add saving images. This works now, but not extensively. *WARNING* Does not carry over exif yet.
SVN revision: 29899
2007-05-07 02:12:27 +00:00
titan 50aeff8dc1 Fix some of the dialogs.
SVN revision: 29754
2007-04-28 18:24:45 +00:00
titan 17eec468f4 Cleanups, move exif button out of edit view and into toolbar, start album work.
SVN revision: 29745
2007-04-28 04:12:24 +00:00
titan 9cebf1809d Small changes, including sizes, etc. Also now we can switch the images when the tabs on the browser switch.
SVN revision: 29737
2007-04-27 05:55:37 +00:00
titan 611ec831e0 COMPLETELY center the image.
SVN revision: 29735
2007-04-27 04:37:40 +00:00
titan 7ab6d84021 Cleanup warnings.
SVN revision: 29730
2007-04-25 21:54:53 +00:00
titan b2a63778ed Fix the edit view arrows.
SVN revision: 29718
2007-04-24 21:38:10 +00:00
titan 762cfa402c When these are clicked the main notebook page needs to be made visible.
SVN revision: 29669
2007-04-22 19:09:02 +00:00
titan 479802437d Keep the toolbar when switching to edit view.
SVN revision: 29668
2007-04-22 18:58:52 +00:00
titan a880bc840e Minor changes, make the list from file system images a dlist, and better align the image seek buttons on single view.
SVN revision: 29609
2007-04-19 23:31:19 +00:00
titan bbc54e284e Add functionality to go to single view when an image from normal view or list view is clicked.
Also add functionality to keep the current image when moving to edit view.


SVN revision: 29594
2007-04-19 04:09:15 +00:00
titan 4fbb26010d Add some more stuff to ephoto including directory viewing now.
The old edit view has become single view, and there is a completely
new edit view that is much more editing specific.


SVN revision: 29592
2007-04-19 03:17:11 +00:00
titan 077cfd531f Make her compile again due to ewl changes.
SVN revision: 29328
2007-04-03 20:12:01 +00:00
titan bb4d112681 Add edit tools back. I really need a better design.
SVN revision: 29235
2007-03-30 02:47:16 +00:00
titan 9c788c1691 More abstraction. This makes things easier and faster.
SVN revision: 29234
2007-03-30 00:45:12 +00:00
titan 8dc67a437d Tone things down a bit. Clicking a image in normal view or list view now
lets you view that image in the single view. Exif has been temporarily
moved.


SVN revision: 29218
2007-03-29 00:24:16 +00:00
titan af70959233 Misplaced #endif
SVN revision: 29216
2007-03-28 20:22:48 +00:00
titan 51308346e4 Update ephoto to api changes and shuffle some code.
SVN revision: 29214
2007-03-28 17:50:49 +00:00
titan 919ec3382a Make my make maintainer-clean work better.
SVN revision: 28979
2007-03-23 23:50:51 +00:00
titan 59c934ac54 Update ephoto to the api breakage for ewl mvc widgets.
SVN revision: 28978
2007-03-23 23:10:28 +00:00
titan 9b6d776f59 Update ephoto to tilman's pkg-config changes.
SVN revision: 28948
2007-03-23 02:06:31 +00:00
titan ea1e0cfdb6 Remove unused pointer from the structure, and it doesn't need to be freed anymore.
SVN revision: 28848
2007-03-21 10:43:23 +00:00
titan 68212d2937 Update ephoto to the new api changes.
SVN revision: 28847
2007-03-21 10:40:27 +00:00
titan c9cebaec10 Add cvsignores!
SVN revision: 28770
2007-03-16 06:20:54 +00:00
titan e48a36fe1c This file shouldn't be in cvs.
SVN revision: 28768
2007-03-16 06:04:55 +00:00
titan cc66b2d254 Add cflags.
SVN revision: 28767
2007-03-16 06:01:44 +00:00
titan 6c3c399d8d Rework some of the autofoo that goes along with making exif optional.
SVN revision: 28766
2007-03-16 05:56:00 +00:00
titan 594787580b Make libexif an optional requirement now. You do not have to have it to use ephoto.
SVN revision: 28763
2007-03-16 04:34:22 +00:00
titan a7ced3b637 This should not be freed. Fixes several problems.
SVN revision: 28722
2007-03-14 21:55:39 +00:00
titan 34cf1d26e4 Slideshow now works.
SVN revision: 28686
2007-03-13 07:35:09 +00:00
titan f435afdb47 Make thumbnails larger.
SVN revision: 28676
2007-03-13 00:52:16 +00:00
titan ee9c58e627 Check to make sure img points at something.
SVN revision: 28658
2007-03-11 14:13:11 +00:00
titan 6ccba8cb7d Check to make sure img is pointing to somethin
SVN revision: 28657
2007-03-11 14:10:42 +00:00
titan ba0a27c3ea Change my mind on how I wanted to initialize the lists.
SVN revision: 28655
2007-03-11 09:19:53 +00:00
titan 0ca324cbbf Set these lists to null first as well.
SVN revision: 28654
2007-03-11 09:10:42 +00:00
titan 2385a27752 Set the lists to Null first.
SVN revision: 28653
2007-03-11 09:08:16 +00:00
titan 6309d5623d Make some changes to layout to make it seem more modular. Also change the toolbar to use image buttons.
SVN revision: 28648
2007-03-11 01:14:47 +00:00
titan dd4729e88a Add the blue back into the label
SVN revision: 28472
2007-02-25 04:47:38 +00:00
titan e069912a1c Some cleanup and preparation for additions of dialogs, and text styles.
SVN revision: 28471
2007-02-25 04:30:57 +00:00
titan 78d88227c1 More cleanups, ephoto now compiles with -Wall and -Werror.
SVN revision: 28465
2007-02-24 23:30:49 +00:00
titan 9ba269c55a Cleanups, nothing special.
SVN revision: 28464
2007-02-24 22:57:09 +00:00
titan 191c7a52f7 Cleanups.. try to use const char * more.
SVN revision: 28431
2007-02-22 04:06:31 +00:00
titan d6430b211d Miscellaneous cleanups, add tooltips, add selecting for list view.
SVN revision: 28419
2007-02-21 07:06:54 +00:00
titan 7da833e9ee For Zgold
SVN revision: 28416
2007-02-21 04:49:09 +00:00
titan 6502da7a5a Miscellaneous cleanups
SVN revision: 28399
2007-02-20 03:45:58 +00:00
titan 868ff52326 Change order of tools a little bit.
SVN revision: 28388
2007-02-18 01:32:10 +00:00
titan 3abc870213 Add editing tools!
SVN revision: 28386
2007-02-18 01:02:43 +00:00
titan cb1030e8e7 Don't cast const char to char
SVN revision: 28385
2007-02-18 00:17:17 +00:00
titan 39a165d7b2 Small exif fix and small edit view fix.
SVN revision: 28375
2007-02-16 05:06:34 +00:00
titan 1c8f5443e9 Fix to make it compile.
SVN revision: 28372
2007-02-15 19:13:48 +00:00
titan c0fd818dbd This is the new ephoto. It has been completely redone from the old one,
looks nothing like the old one, and works nothing like the old one.
It now displays images by using albums, and it focuses much more on
image manipulating/editing/viewing than the other did. Slideshows will
still be available. Exif data can also be viewed now. Currently to add
albums/images or remove them and such you have to use the command line.
Looks at ephoto -h for more information. IF you have a ~/.ephoto directory,
it needs to be rm -rf for the new stuff to work! You can get a idea of the
new ephoto looks like in this ss: www.ecoding.org/files/images/Ephoto_New.png


SVN revision: 28371
2007-02-15 10:20:21 +00:00