git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@256 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-10 16:53:51 +00:00
parent 9ce8a02181
commit 72ba706b31
8 changed files with 302 additions and 163 deletions

39
include/Mw/Icon.h Normal file
View File

@@ -0,0 +1,39 @@
/* $Id$ */
/*!
* %file Mw/Icon.h
* %brief Icon
*/
#ifndef __MW_ICON_H__
#define __MW_ICON_H__
#include <Mw/MachDep.h>
#ifdef __cplusplus
extern "C" {
#endif
/*!
* %brief Info icon
*/
MWDECL char* MwIconInfo[];
/*!
* %brief Note icon
*/
MWDECL char* MwIconNote[];
/*!
* %brief Question icon
*/
MWDECL char* MwIconQuestion[];
/*!
* %brief Warning icon
*/
MWDECL char* MwIconWarning[];
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -18,6 +18,7 @@
#include <Mw/Cursor.h>
#include <Mw/Constants.h>
#include <Mw/Unicode.h>
#include <Mw/Icon.h>
#include <Mw/Widget/Window.h>
#include <Mw/Widget/Menu.h>