milsko/examples/basic/scrollbar.c

20 lines
386 B
C
Raw Normal View History

#include <Mw/Milsko.h>
int main() {
MwWidget window;
2025-12-15 12:26:15 +09:00
int i;
MwLibraryInit();
window = MwVaCreateWidget(MwWindowClass, "main", NULL, MwDEFAULT, MwDEFAULT, 500, 500,
2025-12-15 12:26:15 +09:00
MwNtitle, "main",
NULL);
for(i = 0; i < 500 / 16; i++) {
MwVaCreateWidget(MwScrollBarClass, "scroll", window, 16 * i, 0, 16, 500,
MwNorientation, MwVERTICAL,
NULL);
}
MwLoop(window);
}