common: redesigned interfaces
[platform/core/graphics/tizenvg.git] / test / testShape.cpp
1 #include <tizenvg.h>
2 #include <Elementary.h>
3
4 using namespace std;
5
6 #define WIDTH 800
7 #define HEIGHT 800
8
9 static uint32_t buffer[WIDTH * HEIGHT];
10
11 void tvgtest()
12 {
13     //Initialize TizenVG Engine
14     tvg::Engine::init();
15
16     //Create a Canvas
17     auto canvas = tvg::SwCanvas::gen();
18     canvas->target(buffer, WIDTH, WIDTH, HEIGHT);
19
20     //Prepare a Shape (Rectangle)
21     auto shape1 = tvg::Shape::gen();
22     shape1->appendRect(100, 100, 400, 400, 0);  //x, y, w, h, cornerRadius
23     shape1->fill(255, 0, 0, 255);               //r, g, b, a
24
25     /* Push the shape into the Canvas drawing list
26        When this shape is into the canvas list, the shape could update & prepare
27        internal data asynchronously for coming rendering.
28        Canvas keeps this shape node unless user call canvas->clear() */
29     canvas->push(move(shape1));
30
31     canvas->draw();
32     canvas->sync();
33
34     //Terminate TizenVG Engine
35     tvg::Engine::term();
36 }
37
38 void
39 win_del(void *data, Evas_Object *o, void *ev)
40 {
41    elm_exit();
42 }
43
44 int main(int argc, char **argv)
45 {
46     tvgtest();
47
48     //Show the result using EFL...
49     elm_init(argc, argv);
50
51     Eo* win = elm_win_util_standard_add(NULL, "TizenVG Test");
52     evas_object_smart_callback_add(win, "delete,request", win_del, 0);
53
54     Eo* img = evas_object_image_filled_add(evas_object_evas_get(win));
55     evas_object_image_size_set(img, WIDTH, HEIGHT);
56     evas_object_image_data_set(img, buffer);
57     evas_object_size_hint_weight_set(img, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
58     evas_object_show(img);
59
60     elm_win_resize_object_add(win, img);
61     evas_object_geometry_set(win, 0, 0, WIDTH, HEIGHT);
62     evas_object_show(win);
63
64     elm_run();
65     elm_shutdown();
66 }