projects
/
framework
/
uifw
/
elementary.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Elementary: eps doesn't support transparency.
[framework/uifw/elementary.git]
/
doc
/
widget_preview_tmpl_head.c
1
#include <Elementary.h>
2
3
EAPI int
4
elm_main(int argc, char **argv)
5
{
6
Evas_Object *win, *bg;
7
Evas_Coord w, h;
8
9
w = atoi(argv[1]);
10
h = atoi(argv[2]);
11
12
win = elm_win_add(NULL, "main", ELM_WIN_BASIC);
13
bg = elm_bg_add(win);
14
elm_win_resize_object_add(win, bg);
15
evas_object_show(bg);