Change boilerplate of test code
[framework/web/webkit-efl.git] / Tools / tizen-webview-test / src / main.cpp
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  *     * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *     * Redistributions in binary form must reproduce the above
11  * copyright notice, this list of conditions and the following disclaimer
12  * in the documentation and/or other materials provided with the
13  * distribution.
14  *     * Neither the name of Google Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30
31 #include <appcore-efl.h>
32 #include <Elementary.h>
33 #include <bundle.h>
34 #include "test.h"
35
36 static int app_create(void *data)
37 {
38     printf("app create\n");
39     elm_config_preferred_engine_set("software_x11");
40     // if you use opengl evas, use the following env variables
41     //setenv("COREGL_FASTPATH", "1", 1);
42     //setenv("CAIRO_GL_COMPOSITOR", "msaa", 1);
43     //setenv("CAIRO_GL_LAZY_FLUSHING", "yes", 1);
44     return 0;
45 }
46
47 static int app_reset(bundle *b, void *data)
48 {
49     int ret;
50     const char *name;
51     const char *secured;
52
53     printf("app reset\n");
54     render_init((const char*) data);
55     render_start();
56     return 0;
57 }
58
59 static int app_pause(void *data)
60 {
61     return 0;
62 }
63
64 static int app_resume(void *data)
65 {
66     return 0;
67 }
68
69 static int app_terminate(void *data)
70 {
71     render_stop();
72     render_deinit();
73     return 0;
74 }
75
76 int main (int argc, char *argv[])
77 {
78     int ret;
79         struct appcore_ops ops;
80     ops.create = app_create;
81     ops.terminate = app_terminate;
82     ops.pause = app_pause;
83     ops.resume = app_resume;
84     ops.reset = app_reset;
85
86     if (argc > 1)
87         ops.data = strdup(argv[1]);
88     setenv("ELM_IMAGE_CACHE", "0", 1);
89
90         ret = appcore_efl_main("web-launchpad", &argc, &argv, &ops);
91     return ret;
92 }