2025-09-29 00:06:16 +00:00
|
|
|
/* $Id$ */
|
2025-09-30 13:04:40 +00:00
|
|
|
/*!
|
|
|
|
|
* %file Mw/Default.h
|
|
|
|
|
* %brief Default properties
|
|
|
|
|
*/
|
2025-09-29 00:06:16 +00:00
|
|
|
#ifndef __MW_DEFAULT_H__
|
|
|
|
|
#define __MW_DEFAULT_H__
|
|
|
|
|
|
|
|
|
|
#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 13:04:40 +00:00
|
|
|
/*!
|
|
|
|
|
* %brief Default background color
|
|
|
|
|
*/
|
2025-09-29 00:06:16 +00:00
|
|
|
MWDECL const char* MwDefaultBackground;
|
2025-09-30 13:04:40 +00:00
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* %brief Default foreground color
|
|
|
|
|
*/
|
2025-09-29 02:54:08 +00:00
|
|
|
MWDECL const char* MwDefaultForeground;
|
2025-09-29 00:06:16 +00:00
|
|
|
|
2025-10-04 21:21:31 +00:00
|
|
|
/*!
|
|
|
|
|
* %brief Default border width
|
|
|
|
|
*/
|
|
|
|
|
MWDECL const int MwDefaultBorderWidth;
|
|
|
|
|
|
2025-09-29 00:19:49 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-09-29 00:06:16 +00:00
|
|
|
#endif
|