Fixing bugs in examples.
[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 -o calendar_example_03 calendar_example_03.c -g `pkg-config --cflags --libs elementary`
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    elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
29
30    bg = elm_bg_add(win);
31    elm_win_resize_object_add(win, bg);
32    evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
33    evas_object_show(bg);
34
35    cal = elm_calendar_add(win);
36    elm_win_resize_object_add(win, cal);
37    evas_object_size_hint_weight_set(cal, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
38    elm_calendar_min_max_year_set(cal, 2020, 2022);
39    evas_object_show(cal);
40
41    evas_object_show(win);
42
43    elm_run();
44    return 0;
45 }
46 ELM_MAIN()