git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@280 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-10-11 16:38:30 +00:00
parent 3f97e021b2
commit 13cfd8b3ec
2 changed files with 20 additions and 31 deletions

View File

@@ -15,13 +15,23 @@ void spawn2(MwWidget handle, void* user, void* call) {
MwAddUserHandler(MwMessageBoxGetChild(mb, MwMB_BUTTONOK), MwNactivateHandler, ok, mb); MwAddUserHandler(MwMessageBoxGetChild(mb, MwMB_BUTTONOK), MwNactivateHandler, ok, mb);
} }
void spawn3(MwWidget handle, void* user, void* call) {
int i;
for(i = 0; i <= 6; i++) {
MwWidget mb = MwMessageBox(user, "messagebox test", "title", i | MwMB_BUTTONOK);
MwAddUserHandler(MwMessageBoxGetChild(mb, MwMB_BUTTONOK), MwNactivateHandler, ok, mb);
}
}
int main() { int main() {
MwWidget msg = MwVaCreateWidget(MwWindowClass, "test", NULL, MwDEFAULT, MwDEFAULT, 300, 100, MwNtitle, "test", NULL); MwWidget msg = MwVaCreateWidget(MwWindowClass, "test", NULL, MwDEFAULT, MwDEFAULT, 300, 100, MwNtitle, "test", NULL);
MwWidget btn = MwVaCreateWidget(MwButtonClass, "button", msg, 8, 8, 300 - 16, (100 - 16) / 2, MwNtext, "press me!", NULL); MwWidget btn = MwVaCreateWidget(MwButtonClass, "button", msg, 8, 8, 300 - 16, (100 - 16) / 2, MwNtext, "press me!", NULL);
MwWidget btn2 = MwVaCreateWidget(MwButtonClass, "button", msg, 8, 8 + (100 - 16) / 2, 300 - 16, (100 - 16) / 2, MwNtext, "press me!", NULL); MwWidget btn2 = MwVaCreateWidget(MwButtonClass, "button", msg, 8, 8 + (100 - 16) / 2, (300 - 16) / 2, (100 - 16) / 2, MwNtext, "press me!", NULL);
MwWidget btn3 = MwVaCreateWidget(MwButtonClass, "button", msg, 8 + (300 - 16) / 2, 8 + (100 - 16) / 2, (300 - 16) / 2, (100 - 16) / 2, MwNtext, "press me!", NULL);
MwAddUserHandler(btn, MwNactivateHandler, spawn, msg); MwAddUserHandler(btn, MwNactivateHandler, spawn, msg);
MwAddUserHandler(btn2, MwNactivateHandler, spawn2, msg); MwAddUserHandler(btn2, MwNactivateHandler, spawn2, msg);
MwAddUserHandler(btn3, MwNactivateHandler, spawn3, msg);
MwLoop(msg); MwLoop(msg);
} }

View File

@@ -30,7 +30,7 @@ enum MwORIENTATION {
enum MwALIGNMENT { enum MwALIGNMENT {
MwALIGNMENT_CENTER = 0, MwALIGNMENT_CENTER = 0,
MwALIGNMENT_BEGINNING, MwALIGNMENT_BEGINNING,
MwALIGNMENT_END, MwALIGNMENT_END
}; };
/*! /*!
@@ -43,35 +43,14 @@ enum MwALIGNMENT {
*/ */
#define MwMB_ICONMASK 0xf #define MwMB_ICONMASK 0xf
/*! enum MwMB_ICON {
* %brief Warning icon MwMB_ICONWARNING = 0x1,
*/ MwMB_ICONINFO,
#define MwMB_ICONWARNING 0x1 MwMB_ICONNOTE,
MwMB_ICONQUESTION,
/*! MwMB_ICONNEWS,
* %brief Information icon MwMB_ICONERROR
*/ };
#define MwMB_ICONINFO 0x2
/*!
* %brief Note icon
*/
#define MwMB_ICONNOTE 0x3
/*!
* %brief Question icon
*/
#define MwMB_ICONQUESTION 0x4
/*!
* %brief News icon
*/
#define MwMB_ICONNEWS 0x5
/*!
* %brief Error icon
*/
#define MwMB_ICONERROR 0x6
/*! /*!
* %brief Button mask * %brief Button mask