2025-09-30 17:47:03 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
#include <Mw/Milsko.h>
|
|
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
|
MwWidget window = MwVaCreateWidget(MwWindowClass, "window", NULL, 0, 0, 500, 500,
|
|
|
|
|
MwNtitle, "image button",
|
|
|
|
|
NULL);
|
|
|
|
|
MwWidget button = MwCreateWidget(MwButtonClass, "button", window, 50, 50, 400, 400);
|
2025-09-30 21:58:05 +00:00
|
|
|
MwLLPixmap px = MwLoadImage(window, "examples/picture.png");
|
2025-09-30 17:47:03 +00:00
|
|
|
|
2025-09-30 22:23:54 +00:00
|
|
|
MwVaApply(window,
|
|
|
|
|
MwNiconPixmap, px,
|
|
|
|
|
NULL);
|
|
|
|
|
|
2025-09-30 17:47:03 +00:00
|
|
|
MwVaApply(button,
|
|
|
|
|
MwNpixmap, px,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
MwLoop(window);
|
|
|
|
|
}
|