summaryrefslogtreecommitdiff
path: root/Template/Tizen Platform/EFL Application/hello_efl/project/src/main.c
blob: 3bb3de097c46e6d4f323472e66e00740b91cf9d4 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
 * Copyright (c) 2013 Samsung Electronics Co., Ltd All Rights Reserved
 *
 * Licensed under the Apache License, Version 2.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an AS IS BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License. 
 */

#include <app.h>
#include <Elementary.h>
#include <assert.h>

struct _appdata {
	const char *name;
	Evas_Object *win;
	Evas_Object *lbl;
};

static Evas_Object *_add_win(const char *name)
{
	Evas_Object *win;

	win = elm_win_util_standard_add(name, "$(projectName)");
	if (!win)
		return NULL;

	evas_object_show(win);

	return win;
}

static Evas_Object *_add_lable(Evas_Object *win)
{
	Evas_Object *lbl;

	assert(win);

	lbl = elm_label_add(win);
	if (!lbl)
		return NULL;

	elm_object_text_set(lbl, _("Hello EFL"));
	elm_object_style_set(lbl, "marker"); /* add this line show label */
	evas_object_size_hint_weight_set(lbl, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
	elm_win_resize_object_add(win, lbl);
	evas_object_show(lbl);

	return lbl;
}

static bool _create(void *user_data)
{
	struct _appdata *ad;
	Evas_Object *win;
	Evas_Object *lbl;

	if (!user_data)
		return false;

	ad = user_data;

	win = _add_win(ad->name);
	if (!win)
		return false;

	lbl = _add_lable(win);
	if (!lbl) {
		evas_object_del(win);
		return false;
	}

	ad->win = win;
	ad->lbl = lbl;

	return true;
}

static void _terminate(void *user_data)
{
	struct _appdata *ad;

	if (!user_data)
		return;

	ad = user_data;

	if (ad->win)
		evas_object_del(ad->win);
}

static void _pause(void *user_data)
{
}

static void _resume(void *user_data)
{
}

static void _service(service_h service, void *user_data)
{
}

static void _low_memory(void *user_data)
{
}

static void _low_battery(void *user_data)
{
}

static void _dev_orientation_changed(app_device_orientation_e orientation,
		void *user_data)
{
}

static void _lang_changed(void *user_data)
{
}

static void _region_fmt_changed(void *user_data)
{
}

int main(int argc, char **argv)
{
        struct _appdata ad;
        app_event_callback_s cbs = {
                .create = _create,
                .terminate = _terminate,
                .pause = _pause,
                .resume = _resume,
                .service = _service,
                .low_memory = _low_memory,
                .low_battery = _low_battery,
                .device_orientation = _dev_orientation_changed,
                .language_changed = _lang_changed,
                .region_format_changed = _region_fmt_changed,
        };

        memset(&ad, 0x00, sizeof(ad));
        ad.name= PACKAGE;

        app_efl_main(&argc, &argv, &cbs, &ad);

        return 0;
}