Cleanup in elf.c with .bss section clean; adm command mounts cdrom instead of floppy...
[ZeXOS.git] / apps / wm / dialog.h
blob86c5a7f5e989be3549937ef0f43e642a19452020
1 /*
2 * ZeX/OS
3 * Copyright (C) 2007 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
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 #define DIALOG_FLAG_DRAG 0x1
25 typedef struct wmdialog_context {
26 struct wmdialog_context *next, *prev;
28 unsigned x;
29 unsigned y;
30 unsigned size_x;
31 unsigned size_y;
32 unsigned char active;
33 unsigned char flags;
34 char *caption;
35 } wmdialog;
37 /* externs */
38 extern wmdialog *dialog_create (unsigned x, unsigned y, unsigned size_x, unsigned size_y, const char *caption);
39 extern unsigned dialog_delete (wmdialog *dialog);
40 extern unsigned dialog_draw (wmdialog *dialog);
41 extern unsigned dialog_draw_all ();
42 extern unsigned init_dialog ();
44 #endif