summaryrefslogtreecommitdiff
path: root/src/examples/popup_cxx_example_01.cc
blob: a678533114df803856a3c4520f4c32729b07ff57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#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("Popup");
   win.autohide_set(true);

   ::elm::popup popup(efl::eo::parent = win);
   popup.timeout_set(3.0);
   popup.text_set(nullptr, "Title");
   popup.visible_set(true);

   auto popup_hide = std::bind ( [&] ()
                     {
                        popup.visible_set(false);
                     });

   popup.callback_timeout_add(popup_hide);
   popup.callback_block_clicked_add(popup_hide);
   win.size_set(480, 800);
   win.visible_set(true);

   elm_run();
   return 0;
}
ELM_MAIN()