-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathegi_objtxt.h
35 lines (26 loc) · 984 Bytes
/
egi_objtxt.h
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
/*----------------------------------------------------------------
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
All EGI OBJ Initializations
Midas Zhou
-----------------------------------------------------------------*/
#ifndef __EGI_OBJTXT_H__
#define __EGI_OBJTXT_H__
#include <stdint.h>
/* ------------ MEMO: txt ebox ----------- */
EGI_EBOX *create_ebox_memo(void);
EGI_EBOX *create_ebox_clock(void);
EGI_EBOX *create_ebox_note(void);
int egi_txtbox_demo(EGI_EBOX *ebox, EGI_TOUCH_DATA * touc_data);
/* -------- egi pattern ----- */
EGI_EBOX *create_ebox_titlebar(
int x0, int y0,
int offx, int offy,
uint16_t bkcolor,
char *title
);
EGI_EBOX *egi_msgbox_create(char *msg, long ms, uint16_t bkcolor);
void egi_msgbox_pvupdate(EGI_EBOX *msgbox, int pv);
void egi_msgbox_destroy(EGI_EBOX *msgbox);
#endif