Commit Graph

2856 Commits

Author SHA1 Message Date
Gustavo Lima Chaves f6047df5a4 [elementary] Example for top level functions.
SVN revision: 60595
2011-06-22 14:52:05 +00:00
Gustavo Lima Chaves 60214462de [elementary] Documenting the general, top-level
functions.



SVN revision: 60594
2011-06-22 14:51:55 +00:00
Tom Hacohen 13fbc620f4 Elm check+radio: Fix alignment of text to be according of text direction.
SVN revision: 60575
2011-06-22 07:05:13 +00:00
ChunEon Park 179eced103 elementary/transit - removed DEPRECATED APIs.
SVN revision: 60572
2011-06-22 05:37:24 +00:00
ChunEon Park fd3ae33eac elementary/animator - * DEPRECATED.
SVN revision: 60571
2011-06-22 05:32:50 +00:00
ChunEon Park 2b172f87be elementary/diskselector - fixed typos (lenght -> length)
SVN revision: 60570
2011-06-22 05:30:49 +00:00
Gustavo Lima Chaves 8c42e26ca5 [elementary] Let's gather our example texts together,
eh?



SVN revision: 60558
2011-06-21 18:14:26 +00:00
Massimo Maiurana 1a69cdefaf updating dutch translations
SVN revision: 60555
2011-06-21 15:56:20 +00:00
Rafael Antognolli be34baeb44 elementary/transit: improve current documentation.
Fix the description of some API, and add/change some content of the
detailed description for the entire group.



SVN revision: 60552
2011-06-21 14:28:40 +00:00
Rafael Antognolli eb9c6090b8 elementary/transit: add some examples.
SVN revision: 60551
2011-06-21 14:28:32 +00:00
Rafael Antognolli bb2fcad665 elementary/transit: fix effects memory leak.
Now it matches the documentation, which says: "end_cb - The function to
free the context data, it will be called at the end of the effect."



SVN revision: 60550
2011-06-21 14:14:05 +00:00
Jonas M. Gastal 03c7068c6d Elementary: Adding screenshots to examples.
SVN revision: 60534
2011-06-20 19:45:32 +00:00
Rafael Antognolli 110c2a49fa elementary/bg: fix example doc generation by updating the example code.
This line should be just after elm_bg_add as explained in the example
page.



SVN revision: 60527
2011-06-20 16:15:59 +00:00
Carsten Haitzler be21f7e4ea Upon reviewing the elm_glview, I've realized a few issues and mistakes that i've
made originally so I've made some changes/ updates to elm_glview

1.)  GL Resource Deletion in ELM_GLView

In order to delete GL resources, the current approach simply registered a
delete callback to the GLView object and handled resource deletion there.
Unfortunately, using the delete callback did not guarantee the glview context to be
current.  In order to guarantee that the current context was the glview context,
the make_current call needs to be called explicitly.  Since we were hiding all the
make current details in elm_glview, i've decided to add an API that registers a
delete callback function. I know that this may seem redundant since there is already
a delete callback that you can register with glview objects. Unfortunately, this is the
only option that we have apart from exposing make_current, which is something that
went again what we are trying to do with elm_glview.

Since adding delete callback alone seemed a little out of place, i've taken the liberty
to add other callback functions to make it seem consistent.

void elm_glview_init_func_set(Evas_Object *obj, Elm_GLView_Func func);
void elm_glview_del_func_set(Evas_Object *obj, Elm_GLView_Func func);
void elm_glview_resize_func_set(Evas_Object *obj, Elm_GLView_Func func);

resize callback can be controversial as well but I want to argue that adding this callback
makes the render function a lot cleaner.  To handle resize differently, the user in
render function needs to manually compare and see if the size has changed, and
then handle the cases.  Doing all of this internally once makes the developers life
a lot easier in my opinion.

these callback functions do make the render function a lot cleaner. You can check
out the updated test_glview.c or newly added test_glview_simple.

2.) Minor bug fixes/changes

elm_glview_scale_policy_set() was supposed to be elm_glview_resize_policy_set()
but it somehow evaded our reviews.  That has been fixed.

Also, in _glview_resize, after updating the surface, it was explicitly calling the
render function.  It is actually unnecessary here and calling it here will cause
problems if resize gets called before everything else is setup properly.  So that has
been commented out.

3.) test_glview & test_glview_simple

elementary_test case for glview has been updated to reflect the api changes.
when you run the elmentary_test, you need to make sure that you set
ELM_ENGINE=gl as glview currently only runs on gl backend.

test_glview runs the gears example.  For testing purposes I've included a simple
glview test case that renders a triangle and changing background color.

             


SVN revision: 60517
2011-06-20 10:55:02 +00:00
Jaehwan Kim 43954a560d From: Jaehwan Kim <jae.hwan.kim@samsung.com>
Subject: [E-devel]  [patch] els_scroller simple bug

els_scroller in elementary has a simple bug.

In the function "_smart_scrollto_x", it makes the animator
'sd->scrollto.x.animator', if the animator does not exist. But 
"_smart_anim_start" before ecore_animator_add can make 2 animators. 
If the function which be called by _smart_anim_start call
"elm_scroller_region_bring_in", "_smart_scrollto_x" be called again and make 
the animator. After the function which be called by _smart_snim_start ends,
the next line will make the animtor again. Despite the code checks the
animator, it can make 2 animators. So we have to change the order of the code
like patch file.



SVN revision: 60507
2011-06-20 07:20:31 +00:00
Hyoyoung Chang 51566cf3fc From: Hyoyoung Chang <hyoyoung.chang@samsung.com>
* remove pasteimages vars (not used)
* missing text handling custom handler. added.



SVN revision: 60503
2011-06-20 07:13:50 +00:00
Daniel Juyung Seo 724cdbbd32 elm notify: Removed 'unused parameter' warngin.
SVN revision: 60497
2011-06-20 01:19:51 +00:00
ChunEon Park 47c8be3464 hermet - just changed my email address.
SVN revision: 60477
2011-06-18 16:16:28 +00:00
WooHyun Jung d2e1bb54ea Elementary elm_widget.c: fixed a bug in elm_widget_sub_object_del
Original code did nothing for sd->child_can_focus, So fixed it.


SVN revision: 60470
2011-06-18 05:47:57 +00:00
Vincent Torri 41566eda22 Elementary : use binary mode for fopen()
SVN revision: 60462
2011-06-17 21:41:17 +00:00
Rafael Antognolli 4538b5e3ad elementary/build - removed scrolled_entry from POTFILES.in
SVN revision: 60455
2011-06-17 19:35:50 +00:00
Iván Briano 80cc2fb9ca don't reference dead scrolled_entry in externals module
SVN revision: 60454
2011-06-17 18:22:15 +00:00
Jonas M. Gastal d52c0cfdda Elementary: adding image for latex docs.
SVN revision: 60453
2011-06-17 14:45:19 +00:00
ChunEon Park ac76b4f223 elementary/notify - added restack callback
SVN revision: 60451
2011-06-17 13:36:05 +00:00
ChunEon Park b8dc8e9a64 elementary/notify - fixed wrongs.
SVN revision: 60450
2011-06-17 12:51:12 +00:00
ChunEon Park 90aa074a21 elementary/notify - too much copy and pastes. fixed a logic error.
SVN revision: 60449
2011-06-17 12:42:57 +00:00
Carsten Haitzler e9f04a172e allow you to set and get table pack position/size in cells.
SVN revision: 60448
2011-06-17 11:36:08 +00:00
Michael BOUCHAUD b6f81adf23 elementary: fix clip in the progressbar theme
SVN revision: 60444
2011-06-17 11:05:20 +00:00
Carsten Haitzler c44f45485f big move forward. scrolled entry and entry merge into entry. entry now
can be scrollable or not. scrolled entry now just calls entry calls
and is marked as dperecated to be killed off in the future so no need
to document it etc. edje external also goes.



SVN revision: 60438
2011-06-17 09:44:31 +00:00
Daniel Juyung Seo 72f17cb4d7 elm examples: Fixed 'unused parameter' warnings. Added __UNUSED__
macro when config is not defined.


SVN revision: 60433
2011-06-17 09:15:29 +00:00
Carsten Haitzler 4d150c4644 warn--
SVN revision: 60432
2011-06-17 09:06:09 +00:00
Carsten Haitzler ad5dff0d1d quick 3d test for people to know what the perspective and rotate
params do



SVN revision: 60424
2011-06-17 06:58:35 +00:00
Mike McCormack 71a7513a86 Update .gitignore files
SVN revision: 60416
2011-06-17 01:59:49 +00:00
ChunEon Park 5e00fcb19c elementary - just updated AUTHORS
SVN revision: 60414
2011-06-17 00:17:02 +00:00
Iván Briano f6fcb0be9d Documentatation and example for the twins anchorblock and anchorview
SVN revision: 60411
2011-06-16 21:28:02 +00:00
Iván Briano 59f8a18725 Ignore attributes when generating documentation
SVN revision: 60410
2011-06-16 21:27:08 +00:00
Rafael Antognolli d1ceedffd3 elementary: add make rule to generate screenshots of the examples.
SVN revision: 60408
2011-06-16 21:08:05 +00:00
Michael Jennings f4df2cb79d Since the SVN revision is now included in %{version}, it's redundant
to have it in %{release} also.  So let's just tag the package as ours
and try to make sure it doesn't interfere with vendor releases.



SVN revision: 60407
2011-06-16 20:36:43 +00:00
Rafael Antognolli 0d9d40a029 elementary: fix check of examples build and install.
This check should be before AC_OUTPUT in configure.ac.



SVN revision: 60406
2011-06-16 18:58:44 +00:00
Jonas M. Gastal 718cca963c Elementary: elm_animator documentation and example.
SVN revision: 60405
2011-06-16 18:13:03 +00:00
Daniel Juyung Seo a4cb2b2f0e elm examples: Fixed 'unused parameter' warnings.
SVN revision: 60404
2011-06-16 17:55:31 +00:00
Rafael Antognolli 61adc05180 elementary: fix examples DSO build.
SVN revision: 60401
2011-06-16 17:06:37 +00:00
Rafael Antognolli c8e506d9ed elementary: add some examples and a better explanation to elm_bg.
The example code was copied from elementary_test, but now there are 3
pages (one for each example) explaining its usage.



SVN revision: 60394
2011-06-16 14:10:23 +00:00
ChunEon Park a4ca4f5757 elementary/transit - just modified to use evas_map_util_rotate.
SVN revision: 60378
2011-06-16 08:20:48 +00:00
Tom Hacohen 156d94de65 Elm scrollend_entry: Fix group of elm_scrolled_entry_is_empty.
Patch by Jihoon Kim.

SVN revision: 60373
2011-06-16 06:19:15 +00:00
Daniel Juyung Seo cf4f776b95 elm Elementary.h.in: Fixed documentation.
SVN revision: 60368
2011-06-16 00:59:22 +00:00
Jonas M. Gastal 0a19a833d1 Elementary: Actionslider example and accompaning documentation.
SVN revision: 60351
2011-06-15 14:22:11 +00:00
Jonas M. Gastal f7793072ce Elementary: actionslider documentation.
SVN revision: 60349
2011-06-15 14:13:58 +00:00
Jonas M. Gastal 6a8ecdb450 elementary: Add acknowledgment of Samsung's patronage to
documentation project.



SVN revision: 60348
2011-06-15 14:13:45 +00:00
Michael BOUCHAUD 35c22c2d63 elementary: fix tooltip segfaults with gengrid (cedric thanks)
SVN revision: 60347
2011-06-15 14:07:28 +00:00