summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* transit: free the map resource.devs/bluezery/genlistChunEon Park2014-11-201-1/+2
| | | | | | @fix Submitted-By-Off: Seung-Wan Woo <s-w.woo@samsung.com>
* genlist: Fix build warning for uninitialized variable.Daniel Juyung Seo2014-11-191-1/+1
| | | | | elm_genlist.c:1916:15: warning: 'eo_it' may be used uninitialized in this function [-Wuninitialized]
* elm: Modify document for APIs.Daniel Juyung Seo2014-11-1921-53/+53
| | | | | Retrieve -> Get as the API says. This is not a critical change but was done due to the consistency.
* Update russian translationIgor Murzov2014-11-151-34/+32
|
* segment_control: Fix shadow declaration build warning.Daniel Juyung Seo2014-11-141-1/+1
| | | | warning: declaration of 'select' shadows a global declaration [-Wshadow]
* bg: Flourish bg documentations and comments.Daniel Juyung Seo2014-11-144-13/+6
|
* panel, segment_control: Use ev->canvas instead of ev->output.Daniel Juyung Seo2014-11-142-5/+5
| | | | | Even they are same it is recommended to use ev->canvas as it was actually intended for that purpose.
* bg.edc: Add bg widget style information.Daniel Juyung Seo2014-11-141-0/+8
|
* elm: Remove unnecessary elm_shutdown() while using ELM_MAIN().Daniel Juyung Seo2014-11-14109-116/+0
| | | | | elm_shutdown() is automatically called when you use ELM_MAIN() since elementary 1.12.
* label: Add more comments for the unclear internal data.Daniel Juyung Seo2014-11-131-2/+2
|
* elm_box: inappropriate size_hint_align value usage fixAndrii Kroitor2014-11-132-8/+7
| | | | | | | | | | | | | | | | | | | | | | Summary: size_hint_align was used instead of evas_box's internal value for aligning of internal items. Because of that layout functions of elm_box and evas_box were incompatable Fixed elm_box, els_box layout and widgets that used this behaviour. @fix Test Plan: Run "elementary_test". All buttons should be left-aligned "elm_box_align_set(tbx2, 0.0, 0.5);" (test.c:332) Reviewers: cedric, Hermet, stefan_schmidt, seoz Reviewed By: seoz Subscribers: shilpasingh, reutskiy.v.v Differential Revision: https://phab.enlightenment.org/D1512
* test: Use ELM_SCALE_SIZE instead of elm_config_scale_get().Daniel Juyung Seo2014-11-135-46/+31
| | | | | Newly introduced macro ELM_SCALE_SIZE at 1.12 makes your app more scalable.
* test_progressbar: Fix weight/align size hints.Daniel Juyung Seo2014-11-131-11/+11
| | | | Also put weight set first. It is easier to understand logically.
* test_progressbar: stop btn callback fixed, unnecessary code deletedwoochan lee2014-11-121-4/+3
| | | | | | | | Reviewers: Hermet, seoz Reviewed By: seoz Differential Revision: https://phab.enlightenment.org/D1664
* Object Items: replace most of del_pre functions with destructor.Daniel Zaoui2014-11-1227-206/+130
| | | | | | | | | This change is not simple because Elementary has not been built from the first day to work with Eo. Code had to be adapted to fit the new design. The del_pre that have not been replaced yet can return FALSE and prevent deletion. For these classes, code modification has to be deeper and will be done later.
* Object Items: remove data variable from widget item.Daniel Zaoui2014-11-1217-114/+93
| | | | | | Now, data is stored in Eo layer via eo_key_data_set/get. Two macros have been added to facilitate access.
* Object Items: Adapt del callback to Eo.Daniel Zaoui2014-11-121-3/+11
| | | | | | | | | | | | | Because of widget item design, it is hard to make it fit to Eo as it should be: - _eo_del_cb should have the callback pointer as data but pre_notify function forces its storage into the item data because we need to be able to call the cb before del is really triggered. - only one cb is supported for an item, meaning replacing it would mean we have to save the function pointer inside the item, delete the callback with the previous function as data and then add the new callback. Instead of it, we just add our own wrapper as Eo callback that will invoke the function pointer stored in the item data.
* Object Items: remove legacy APIs.Daniel Zaoui2014-11-1282-2121/+45
| | | | They are now generated by Eolian.
* Object Items: remove casts that are no more needed.Daniel Zaoui2014-11-1239-441/+442
| | | | | It includes casts to Eo, Elm_Object_Item and to specific items data. This belongs to the cleaning phase of the object items porting to Eo.
* Object Items: remove temporary files used for the porting to Eo.Daniel Zaoui2014-11-1219-23/+2
|
* Object Items: remove old inheritance mechanism.Daniel Zaoui2014-11-126-884/+67
|
* Object Items: Elm_Object_Item becomes EoDaniel Zaoui2014-11-122-6/+1
|
* Object Items: remove last invocations to elm_widget_item_ APIsDaniel Zaoui2014-11-122-4/+4
|
* Elm Popup Item: Migrate to EoDaniel Zaoui2014-11-124-71/+83
|
* Elm DiskSelector Item: Migrate to EoDaniel Zaoui2014-11-125-189/+254
|
* Elm Toolbar Item: Migrate to EoDaniel Zaoui2014-11-125-623/+859
|
* Elm List Item: Migrate to EoDaniel Zaoui2014-11-125-402/+534
|
* Elm Gengrid Item: Migrate to EoDaniel Zaoui2014-11-124-415/+812
|
* Elm Genlist Item: Migrate to EoDaniel Zaoui2014-11-126-849/+1213
|
* Elm Naviframe Item: Migrate to EoDaniel Zaoui2014-11-125-287/+373
|
* Elm Multibuttonentry Item: Migrate to EoDaniel Zaoui2014-11-125-150/+224
|
* Elm Index item: Migrate to EoDaniel Zaoui2014-11-126-135/+210
|
* Elm Ctxpopup item: Migrate to EoDaniel Zaoui2014-11-125-123/+155
|
* Elm Menu Item: Migrate to EoDaniel Zaoui2014-11-127-329/+422
|
* Elm Flipselector Item: Migrate to EoDaniel Zaoui2014-11-125-149/+210
|
* Elm Slideshow Item: Migrate to EoDaniel Zaoui2014-11-125-97/+130
|
* Elm Segment Control Item: Migrate to EoDaniel Zaoui2014-11-125-163/+224
|
* Elm Hoversel Item: Migrate to EoDaniel Zaoui2014-11-126-107/+165
|
* Elm Dayselector Item: Migrate to EoDaniel Zaoui2014-11-124-26/+52
|
* Elm Colorselector Item: Migrate to EoDaniel Zaoui2014-11-125-147/+226
|
* Elm Widget Item: Migrate to EoDaniel Zaoui2014-11-1232-418/+1722
| | | | | Since we want to support legacy inheritance mechanism, code is not finished and will have to be cleaned when all the items are ported.
* build: Remove bzip2 tarballs from distcheckStefan Schmidt2014-11-111-1/+1
| | | | | | | When adding xz as third compression format in May 2014 I mentioned that I'm going to remove bzip2 in favor of xz in 1.12. I heard no complains but I left it in for 1.12. With 1.13 starting its time to remove it. From now on it will be only gz and xz compressed tarballs.
* config font hinting api addedMike Blumenkrantz2014-11-102-0/+36
| | | | | | needed for e's internal use, not sure if worth exposing since there's an env variable @feature
* configure: Switch to dev mode again. Merge window for 1.13 is open now.Stefan Schmidt2014-11-101-1/+1
|
* release: Update NEWS and bump version for 1.12.0 releasev1.12.0Stefan Schmidt2014-11-102-1/+5
|
* example/evasmap3d: change to simpler call.ChunEon Park2014-11-101-2/+1
|
* label: Reset sd->lastw as '-1' in some elm_label APIs for ensure the ↵Youngbok Shin2014-11-102-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | sizing_eval. Summary: In some cases, elm_label doesn't calculate its min size if it is not resized from outside. It is happened when only elm_label used with elm_label_line_wrap_set API. The following APIs can change min size of the widget, so we can't skip the sizing_eval func. elm_label_line_wrap_set elm_label_line_width_set elm_object_text_set -> _elm_label_elm_layout_text_set will be called. @fix Test Plan: I put a change to test_notify.c for test. elementary_test notify -> click "top" button. -> You can't see elm_label without the patch. Reviewers: woohyun, tasn, seoz Reviewed By: seoz Subscribers: herdsman Differential Revision: https://phab.enlightenment.org/D1652
* macro: Fix wrong macro braces.Daniel Juyung Seo2014-11-101-1/+1
| | | | This causes unwanted result. Fit it.
* news: Clean up news file for the release.Daniel Juyung Seo2014-11-091-28/+33
| | | | | - Realign the lines. - Make the description consistent and more meaningful.
* test_box: Add box align test sample.Daniel Juyung Seo2014-11-092-0/+183
| | | | This shows how elm_box_align_set() works.