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 typedef struct _CHButton_ {
45 char* title;
47
56 XE_EXPORT ChButton* ChCreateButton(int x, int y, int w, int h, char* text);
57
58#ifdef __cplusplus
59}
60#endif
61
62#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:214
#define XE_EXPORT
Definition _xeneva.h:46
#define XE_EXTERN
Definition _xeneva.h:50
Definition button.h:43
char * title
Definition button.h:45
ChWidget base
Definition button.h:44
Definition window.h:123