XenevaOS
Loading...
Searching...
No Matches
button.h
Go to the documentation of this file.
1
32#ifndef __BUTTON_H__
33#define __BUTTON_H__
34
35#include "window.h"
36#include "base.h"
37#include <_xeneva.h>
38
39#ifdef __cplusplus
41#endif
42
43
44 typedef struct _CHButton_ {
46 char* title;
48
57 XE_EXPORT ChButton* ChCreateButton(int x, int y, int w, int h, char *text);
58
59#ifdef __cplusplus
60}
61#endif
62
63#endif
struct _CHButton_ ChButton
XE_EXPORT ChButton * ChCreateButton(int x, int y, int w, int h, char *text)
ChCreateButton – Create a button widget.
Definition button.cpp:217
#define XE_EXPORT
Definition _xeneva.h:46
#define XE_EXTERN
Definition _xeneva.h:50
Definition button.h:44
char * title
Definition button.h:46
ChWidget base
Definition button.h:45
Definition window.h:114