summaryrefslogtreecommitdiff
path: root/src/examples/popup_example_03.c
Commit message (Collapse)AuthorAgeFilesLines
* Popup Example: Fix size calculation issue in popupAditya Raj2015-11-241-1/+1
| | | | | | | | | | | | | | | | | Summary: The function evas_object_resize(win, 480, 800) was being called after evas_object_show(popup) so size calculations of popup were going wrong(height was 0). It should be called before creating popup as win is parent of popup, This fix needs to be done only here as in other cases window is already present before creating popup but here both are being created for exmaple purposes. Signed-off-by: Aditya Raj <aditya1.raj@samsung.com> Reviewers: singh.amitesh, raster Subscribers: jpeg, tanwar.umesh07, sachin.dev Differential Revision: https://phab.enlightenment.org/D3360
* elm: Remove unnecessary elm_shutdown() while using ELM_MAIN().Daniel Juyung Seo2014-11-141-1/+0
| | | | | elm_shutdown() is automatically called when you use ELM_MAIN() since elementary 1.12.
* examples: refactoring. use elm_win_util_standard_add() for normal cases. ↵Daniel Juyung Seo2013-06-261-8/+3
| | | | season 3.
* elm popup_example_03.c: Fixed wrong string.Daniel Juyung Seo2012-09-211-1/+1
| | | | SVN revision: 76925
* Elementary: fix deprecated functions on elm examplesDaniel Willmann2012-06-271-1/+1
| | | | | | | | | | | | It seems that the elementary examples still use some deprecated functions, most notably elm_icon_* that has been replaced by elm_image_*. This patch fixes that. Patch by: Daniel Willmann <d.willmann@samsung.com> SVN revision: 72958
* elm examples: Removed macro for data dir. Used elm_app_info_set and ↵Daniel Juyung Seo2012-03-301-2/+2
| | | | | | elm_app_data_dir_get instead. SVN revision: 69783
* elm examples: Adjust directory names.Daniel Juyung Seo2012-03-281-2/+2
| | | | SVN revision: 69699
* elm examples: I removed __UNUSED__ and config header inclusion. This code is ↵Daniel Juyung Seo2012-03-281-10/+5
| | | | | | an example for other developers so we don't need that extra macros. But how can I ignore this warning while building elementary? SVN revision: 69698
* elm examples: Use standard way of elementary applications. EAPI_MAIN, ↵Daniel Juyung Seo2012-03-281-0/+1
| | | | | | elm_shutdown, ELM_MAIN() SVN revision: 69690
* Fixing bugs in examples.João Paulo Fernandes Ventura2012-03-191-1/+2
| | | | | | Patch by: João Paulo Fernandes Ventura<ventura@profusion.mobi> SVN revision: 69507
* From: Rajeev Ranjan <rajeev.r@samsung.com>Rajeev Ranjan2012-03-051-0/+102
Subject: [E-devel] [Patch] Elementary: New custom widget Popup Hi All, Attached to the mail is the patch for a new custom elementary widget elm_popup for your review. Change description: New custom widget Popup added. elm_popup is an enhancement over elm_notify widget with widely used parts such as Title, Content and Action Buttons. Items are supported as well and they are put inside the content area which can have either an Evas Object/Set of items/Description text. SVN revision: 68747