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
|
#ifndef _WINFANG_H_
#define _WINFANG_H_
#define EFL_API_OVERRIDE 1
/* Enable access to unstable EFL API that are still in beta */
#define EFL_BETA_API_SUPPORT 1
/* Enable access to unstable EFL EO API. */
#define EFL_EO_API_SUPPORT 1
#define ARRAY_LENGTH(array) (sizeof(array) / sizeof(*array))
#include <Eo.h>
#include <Eina.h>
#include <Evas.h>
#include <Elementary.h>
#include <EPhysics.h>
#define WF_BACKGROUND "winFang/background"
#define WF_LAYOUT "winFang/layout"
#define WF_UNDERLAY "winFang/underlay"
#define WF_TITLE "winFang/title"
#define WF_BOX "winFang/box"
#define WF_SWALLOW "winFang/content"
typedef struct _widgetSpec
{
char *name;
const Eo_Class *klass;
} widgetSpec;
#define WT_CHECK "check"
#define WT_BOX "box"
#define WT_BUTTON "button"
#define WT_FILES "files"
#define WT_ENTRY "entry"
#define WT_GRID "grid"
#define WT_HOVER "hoversel"
#define WT_IMAGE "image"
#define WT_LABEL "label"
#define WT_LAYOUT "layout"
#define WT_RADIO "radio"
#define WT_RECT "rectangle"
#define WT_TEXT "text"
#define WT_TEXTBOX "textbox"
#define WT_TOOLBAR "toolbar"
typedef struct _winFang
{
Evas *e;
struct _winFang *parent;
Evas_Object *win;
Evas_Object *layout;
Evas_Object *title;
Evas_Object *bg;
Evas_Object *grid;
EPhysics_Body *body;
Eina_Clist widgets;
Eina_Clist winFangs;
char *module;
int x, y, w, h, mw, mh;
Evas_Object *hand[4];
Eina_Clist node;
void *data;
Evas_Smart_Cb on_del;
} winFang;
typedef struct _Widget
{
char magic[8];
char type[16];
Evas_Object *obj;
winFang *win;
char *label, *look, *action, *help;
// foreground / background colour
// thing
// types {}
// skangCoord x, y, w, h
Eina_Clist node;
void *data;
Evas_Smart_Cb on_del;
} Widget;
void HamrTime(void *elm_main, char *domain);
winFang *winFangAdd(winFang *parent, int x, int y, int w, int h, char *title, char *name, EPhysics_World *world);
void winFangHide(winFang *win);
void winFangShow(winFang *win);
void winFangCalcMinSize(winFang *win);
void winFangDel(winFang *win);
Widget *widgetAdd(winFang *win, char *type, char *title, int x, int y, int w, int h);
void widgetDel(Widget *wid);
#endif
|