Commit Graph

456 Commits

Author SHA1 Message Date
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 7f5a6d874f * TODO: update them with some ideas, so that i don't forget them.
SVN revision: 52188
2010-09-13 12:35:52 +00:00
titan de55dbc77a Update todo.
SVN revision: 52148
2010-09-10 21:00:18 +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
Lucas De Marchi 5d39f608a9 Revert and re-apply badnull patch
Revert previous patch generated by badnull.cocci script, and apply the new one.
The main difference is that assert and assert-like functions are not touched
anymore.




SVN revision: 51650
2010-08-26 01:34:13 +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 58778ce189 eina-0 is no more, check for the right package name
SVN revision: 51235
2010-08-17 03:59:29 +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
titan ed33cf32ba Fix formatting.
SVN revision: 50435
2010-07-22 17:31:33 +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
toma f0bc6a0b1b Put the label in a better place
SVN revision: 50120
2010-07-08 03:47:47 +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
Gustavo Lima Chaves 0b7106ce77 Fix build here.
SVN revision: 50093
2010-07-07 03:35:29 +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 652468a6e8 clean up m4 files on maintainer-clean
SVN revision: 50044
2010-07-05 06:24:58 +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 868190405b Add needed images back in.
SVN revision: 49978
2010-07-01 21:23:26 +00:00
titan 99c0647026 Cleanup theme... remove unneeded parts and images... formatting
SVN revision: 49977
2010-07-01 21:22:10 +00:00