2025-09-28 13:46:18 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
#ifndef __MILSKO_DRAW_H__
|
|
|
|
|
#define __MILSKO_DRAW_H__
|
|
|
|
|
|
2025-09-29 00:04:04 +00:00
|
|
|
#include <Mw/MachDep.h>
|
|
|
|
|
#include <Mw/TypeDefs.h>
|
|
|
|
|
#include <Mw/LowLevel.h>
|
2025-09-28 13:46:18 +00:00
|
|
|
|
2025-09-29 00:04:04 +00:00
|
|
|
MILSKODECL MwLLColor MwParseColor(MwWidget handle, const char* text);
|
2025-09-28 13:46:18 +00:00
|
|
|
|
2025-09-29 00:04:04 +00:00
|
|
|
MILSKODECL void MwDrawRect(MwWidget handle, MwRect* rect, MwLLColor color);
|
|
|
|
|
MILSKODECL void MwDrawFrame(MwWidget handle, MwRect* rect, MwLLColor color, int invert);
|
2025-09-28 13:46:18 +00:00
|
|
|
|
|
|
|
|
#endif
|