2025-09-29 00:06:16 +00:00
|
|
|
/* $Id$ */
|
2025-09-30 11:11:30 +00:00
|
|
|
/*!
|
2025-10-04 16:34:24 +00:00
|
|
|
* %file Mw/Widget/Button.h
|
2025-09-30 11:11:30 +00:00
|
|
|
* %brief Button widget
|
|
|
|
|
*/
|
2025-10-04 16:34:24 +00:00
|
|
|
#ifndef __MW_WIDGET_BUTTON_H__
|
|
|
|
|
#define __MW_WIDGET_BUTTON_H__
|
2025-09-29 00:06:16 +00:00
|
|
|
|
|
|
|
|
#include <Mw/MachDep.h>
|
2025-09-29 02:43:01 +00:00
|
|
|
#include <Mw/TypeDefs.h>
|
2025-09-29 00:06:16 +00:00
|
|
|
|
2025-09-29 00:19:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-09-30 11:11:30 +00:00
|
|
|
/*!
|
2025-09-30 13:04:40 +00:00
|
|
|
* %brief Button widget class
|
2025-09-30 11:11:30 +00:00
|
|
|
*/
|
2025-09-29 00:06:16 +00:00
|
|
|
MWDECL MwClass MwButtonClass;
|
|
|
|
|
|
2025-09-29 00:19:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-09-29 00:06:16 +00:00
|
|
|
#endif
|