wip subwindow
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-30 08:37:50 +09:00
commit a6adca6696
9 changed files with 105 additions and 9 deletions

View file

@ -52,8 +52,8 @@ static void detect_darktheme(MwLL handle) {
t = dw ? 0 : 1;
if(t && DwmSetWindowAttribute != NULL) {
LPARAM style = GetWindowLongPtr(handle->gdi.hWnd, GWL_STYLE);
if(!(style & WS_CHILD)) MwLLSetDarkTheme(handle, 1);
// LPARAM style = GetWindowLongPtr(handle->gdi.hWnd, GWL_STYLE);
// if(!(style & WS_CHILD)) MwLLSetDarkTheme(handle, 1);
}
MwLLDispatch(handle, dark_theme, &t);

View file

@ -173,12 +173,14 @@ static void lldarkthemehandler(MwLL handle, void* data) {
int s;
if(IsFirstVisible(h) && (shgeti(h->integer, MwNdarkTheme) == -1 || ((s = MwGetInteger(h, MwNdarkThemeAutomatic)) != MwDEFAULT && s))) {
MwVaApply(h,
MwNdarkTheme, *ptr,
MwNdarkThemeAutomatic, 1,
NULL);
if(MwGetInteger(h, MwNmodernLook)){
MwVaApply(h,
MwNdarkTheme, *ptr,
MwNdarkThemeAutomatic, 1,
NULL);
MwDispatchUserHandler(h, MwNdarkThemeHandler, data);
MwDispatchUserHandler(h, MwNdarkThemeHandler, data);
}
}
}

65
src/widget/subwindow.c Normal file
View file

@ -0,0 +1,65 @@
#include <Mw/Milsko.h>
#define TitleHeight 20
static int wcreate(MwWidget handle) {
MwSetDefault(handle);
return 0;
}
static void draw(MwWidget handle) {
MwLLColor c = MwParseColor(handle, MwGetText(handle, MwNbackground));
MwLLColor c2 = MwParseColor(handle, MwGetText(handle, MwNsubBackground));
MwRect r, r2;
r.x = 0;
r.y = 0;
r.width = MwGetInteger(handle, MwNwidth);
r.height = MwGetInteger(handle, MwNheight);
MwDrawFrame(handle, &r, c, 0);
MwDrawRect(handle, &r, c);
r2 = r;
r2.height = TitleHeight;
MwDrawRect(handle, &r2, c2);
r.y += TitleHeight;
r.height -= TitleHeight;
MwDrawFrame(handle, &r, c, 1);
MwLLFreeColor(c2);
MwLLFreeColor(c);
}
static void prop_change(MwWidget handle, const char* key) {
if(strcmp(key, MwNtitle) == 0) MwForceRender(handle);
}
static void func_handler(MwWidget handle, const char* name, void* out, va_list va) {
(void)out;
}
MwClassRec MwSubWindowClassRec = {
wcreate, /* create */
NULL, /* destroy */
draw, /* draw */
NULL, /* click */
NULL, /* parent_resize */
prop_change, /* prop_change */
NULL, /* mouse_move */
NULL, /* mouse_up */
NULL, /* mouse_down */
NULL, /* key */
func_handler, /* execute */
NULL, /* tick */
NULL, /* resize */
NULL, /* children_update */
NULL, /* children_prop_change */
NULL, /* clipboard */
NULL, /* props_change */
NULL,
NULL,
NULL};
MwClass MwSubWindowClass = &MwSubWindowClassRec;