Version 0.6.7: Added support for hostname - hostname_get (), hostname_set (); Hostnam...
[ZeXOS.git] / apps / zde / dialog.h
blob7c0835de49a6792982a757315895028accab63f6
1 /*
2 * ZeX/OS
3 * Copyright (C) 2009 Tomas 'ZeXx86' Jedrzejek (zexx86@gmail.com)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _DIALOG_H
21 #define _DIALOG_H
23 #include "window.h"
25 #define ZDE_DOBJ_TYPE_TEXT 0x0
26 #define ZDE_DOBJ_TYPE_APPCL 0x1
28 typedef struct {
29 char *data;
30 unsigned len;
31 unsigned short sizex;
32 unsigned short sizey;
33 } zde_dobj_text_t;
35 typedef struct {
36 unsigned state;
37 unsigned short x;
38 unsigned short y;
39 unsigned short sizex;
40 unsigned short sizey;
41 short mousex;
42 short mousey;
43 unsigned char kbd;
44 int fd;
45 } __attribute__ ((__packed__)) zde_dobj_appcl_t;
47 typedef struct zde_dobj_context {
48 struct zde_dobj_context *next, *prev;
50 unsigned short x;
51 unsigned short y;
52 unsigned type;
53 void *arg;
54 void *(*entry) (void *);
55 void *object;
56 } zde_dobj_t;
58 extern zde_dobj_t *create_dialog_object (int type, void *arg, unsigned x, unsigned y, zde_win_t *window);
59 extern unsigned destroy_dialog_object (zde_win_t *window);
60 extern int draw_dialog_object (zde_win_t *window);
61 extern int init_dialog ();
63 #endif