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