summaryrefslogtreecommitdiff
path: root/src/examples/calendar_cxx_example_01.cc
blob: 9014b5cb51adaaf909590bfea67c00cd26550182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <Elementary.hh>

EAPI_MAIN int
elm_main (int argc, char *argv[])
{
   elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_HIDDEN);
   ::elm::win_standard win;
   win.title_set("Calendar Creation Example");
   win.autohide_set(true);

   ::elm::calendar cal(efl::eo::parent = win);
   cal.size_hint_weight_set(EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
   win.resize_object_add(cal);
   cal.visible_set(true);

   win.visible_set(true);

   elm_run();
   return 0;
}
ELM_MAIN()