989f77696ea3d8c5a836d25f181c8112f78115ae
[framework/uifw/elementary.git] / src / examples / calendar_example_03.c
1 /**
2  * Simple Elementary's <b>calendar widget</b> example, illustrating minimum
3  * and maximum years restriction. User will see a calendar of years
4  * 2020, 2021 and 2022.
5  *
6  * See stdout/stderr for output. Compile with:
7  *
8  * @verbatim
9  * gcc -g `pkg-config --cflags --libs elementary` calendar_example_03.c -o calendar_example_03
10  * @endverbatim
11  */
12
13 #include <Elementary.h>
14 #ifdef HAVE_CONFIG_H
15 # include "elementary_config.h"
16 #else
17 # define __UNUSED__
18 #endif
19
20 EAPI_MAIN int
21 elm_main(int argc __UNUSED__, char **argv __UNUSED__)
22 {
23    Evas_Object *win, *bg, *cal;
24
25    win = elm_win_add(NULL, "calendar", ELM_WIN_BASIC);
26    elm_win_title_set(win, "Calendar Min/Max Year Example");
27    elm_win_autodel_set(win, EINA_TRUE);
28
29    bg = elm_bg_add(win);
30    elm_win_resize_object_add(win, bg);
31    evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
32    evas_object_show(bg);
33
34    cal = elm_calendar_add(win);
35    elm_win_resize_object_add(win, cal);
36    evas_object_size_hint_weight_set(cal, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
37    elm_calendar_min_max_year_set(cal, 2020, 2022);
38    evas_object_show(cal);
39
40    evas_object_show(win);
41
42    elm_run();
43    return 0;
44 }
45 ELM_MAIN()