ZDE improvements - global zbitmap_t structure added, added native support for buttons...
[ZeXOS.git] / apps / zde / button.h
blob600aad7fb10b01afb607f094ad1e54a6182d09d1
1 /*
2 * ZeX/OS
3 * Copyright (C) 2008 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
4 * Copyright (C) 2010 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef _BUTTON_H
22 #define _BUTTON_H
24 #include "window.h"
26 typedef struct zde_btn_context {
27 struct zde_btn_context *next, *prev;
29 unsigned short x;
30 unsigned short y;
31 unsigned short *bitmap;
32 unsigned short name_len;
33 char *name;
34 void *(*entry) (void *);
35 void *arg;
36 void *object;
37 } zde_btn_t;
39 extern zde_btn_t *create_button_window (char *name, int type, void *(*entry) (void *), void *arg, zde_win_t *window);
40 extern unsigned destroy_button_window (zde_win_t *window);
41 extern int draw_button_window (zde_win_t *window);
42 extern int init_button ();
44 #endif