Tizen 2.1 base
[framework/uifw/elementary.git] / src / examples / efl_thread_2.c
1 //Compile with:
2 //gcc -o efl_thread_2 efl_thread_2.c -g `pkg-config --cflags --libs elementary`
3 #include <Elementary.h>
4 #include <pthread.h>
5
6 static Evas_Object *win = NULL;
7 static Evas_Object *rect = NULL;
8
9 struct info
10 {
11    double x, y;
12 };
13
14 static void *my_thread_mainloop_code(void *data);
15
16 static pthread_t thread_id;
17
18 // BEGIN - code running in my custom pthread instance
19 //
20 static void *
21 my_thread_run(void *arg)
22 {
23    double t = 0.0;
24
25    for (;;)
26      {
27         struct info *inf = malloc(sizeof(struct info));
28
29         if (inf)
30           {
31              inf->x = 200 + (200 * sin(t));
32              inf->y = 200 + (200 * cos(t));
33              ecore_main_loop_thread_safe_call_sync
34                 (my_thread_mainloop_code, inf);
35           }
36         // and sleep and loop
37         usleep(1000);
38         t += 0.02;
39      }
40    return NULL;
41 }
42 //
43 // END - code running in my custom pthread instance
44 static void
45 my_thread_new(void)
46 {
47    pthread_attr_t attr;
48
49    if (pthread_attr_init(&attr) != 0)
50       perror("pthread_attr_init");
51    if (pthread_create(&thread_id, &attr, my_thread_run, NULL) != 0)
52       perror("pthread_create");
53 }
54
55 static void *
56 my_thread_mainloop_code(void *data)
57 {
58    struct info *inf = data;
59    evas_object_move(rect, inf->x - 50, inf->y - 50);
60    free(inf);
61    return NULL;
62 }
63
64 EAPI_MAIN int
65 elm_main(int argc, char **argv)
66 {
67    Evas_Object *o, *bg;
68
69    win = elm_win_add(NULL, "efl-thread-2", ELM_WIN_BASIC);
70    elm_win_title_set(win, "EFL Thread 2");
71    elm_win_autodel_set(win, EINA_TRUE);
72    elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED);
73    evas_object_resize(win, 400, 400);
74    evas_object_show(win);
75
76    bg = elm_bg_add(win);
77    evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
78    elm_win_resize_object_add(win, bg);
79    evas_object_show(bg);
80
81    o = evas_object_rectangle_add(evas_object_evas_get(win));
82    evas_object_color_set(o, 50, 80, 180, 255);
83    evas_object_resize(o, 100, 100);
84    evas_object_show(o);
85    rect = o;
86
87    // create custom thread to do some "work on the side"
88    my_thread_new();
89
90    elm_run();
91    elm_shutdown();
92
93    return 0;
94 }
95 ELM_MAIN()