more window types

This commit is contained in:
Adam D. Ruppe 2025-03-24 14:56:09 -04:00
parent e18822c432
commit d1cb09bdaa
1 changed files with 59 additions and 29 deletions

View File

@ -1599,6 +1599,10 @@ enum WindowFlags : int {
+/ +/
managesChildWindowFocus = 128, managesChildWindowFocus = 128,
/++
+/
overrideRedirect = 256,
dontAutoShow = 0x1000_0000, /// Don't automatically show window after creation; you will have to call `show()` manually. dontAutoShow = 0x1000_0000, /// Don't automatically show window after creation; you will have to call `show()` manually.
} }
@ -1628,12 +1632,19 @@ enum WindowTypes : int {
/// A popup bubble notification /// A popup bubble notification
notification, notification,
/* /*
menu, /// a tearable menu bar menu, /// a tearable menu bar (not override-redirect - contrast to popups)
toolbar, /// a tearable menu bar (not override-redirect)
splashScreen, /// a loading splash screen for your application splashScreen, /// a loading splash screen for your application
tooltip, /// A tiny window showing temporary help text or something. desktop, ///
comboBoxDropdown, dockOrPanel, /// think taskbar
toolbar utility, /// a palette or something
*/ */
/// A tiny window showing temporary help text or something.
tooltip,
/// only supported on X; will assert fail elsewhere
dnd,
/// can also be used for other auto-complete presentations
comboBoxDropdown,
/// a dialog box of some sort /// a dialog box of some sort
dialog, dialog,
/// a child nested inside the parent. You must pass a parent window to the ctor /// a child nested inside the parent. You must pass a parent window to the ctor
@ -2540,7 +2551,7 @@ class SimpleWindow : CapableOfHandlingNativeEvent, CapableOfBeingDrawnUpon {
case normal, undecorated, eventOnly: case normal, undecorated, eventOnly:
case nestedChild, minimallyWrapped: case nestedChild, minimallyWrapped:
return (customizationFlags & WindowFlags.transient) ? true : false; return (customizationFlags & WindowFlags.transient) ? true : false;
case dropdownMenu, popupMenu, notification, dialog: case dropdownMenu, popupMenu, notification, dialog, tooltip, dnd, comboBoxDropdown:
return true; return true;
} }
} }
@ -7047,7 +7058,7 @@ version(X11) {
import core.stdc.stdio; import core.stdc.stdio;
char[265] buffer; char[265] buffer;
XGetErrorText(dpy, evt.error_code, buffer.ptr, cast(int) buffer.length); XGetErrorText(dpy, evt.error_code, buffer.ptr, cast(int) buffer.length);
debug printf("X Error %d: %s / Serial: %lld, Opcode: %d.%d, XID: 0x%llx\n", evt.error_code, buffer.ptr, evt.serial, evt.request_code, evt.minor_code, evt.resourceid); debug printf("X Error %d: %s / Serial: %lld, Opcode: %d.%d, XID: 0x%llx\n", evt.error_code, buffer.ptr, cast(long) evt.serial, evt.request_code, evt.minor_code, cast(long) evt.resourceid);
errorHappened = true; errorHappened = true;
return 0; return 0;
} }
@ -12525,6 +12536,9 @@ version(Windows) {
case WindowTypes.eventOnly: case WindowTypes.eventOnly:
_hidden = true; _hidden = true;
break; break;
case WindowTypes.tooltip:
case WindowTypes.dnd:
case WindowTypes.comboBoxDropdown:
case WindowTypes.dropdownMenu: case WindowTypes.dropdownMenu:
case WindowTypes.popupMenu: case WindowTypes.popupMenu:
case WindowTypes.notification: case WindowTypes.notification:
@ -13434,7 +13448,7 @@ version(X11) {
} }
version(with_xft) { version(with_xft) {
if(xftFont is null || xftDraw is null) if(xftDraw is null)
return; return;
XftDrawSetClip(xftDraw, null); XftDrawSetClip(xftDraw, null);
} }
@ -13447,7 +13461,7 @@ version(X11) {
XRenderSetPictureClipRectangles(display, xrenderPicturePainter, 0, 0, rects.ptr, cast(int) rects.length); XRenderSetPictureClipRectangles(display, xrenderPicturePainter, 0, 0, rects.ptr, cast(int) rects.length);
version(with_xft) { version(with_xft) {
if(xftFont is null || xftDraw is null) if(xftDraw is null)
return; return;
XftDrawSetClipRectangles(xftDraw, 0, 0, rects.ptr, 1); XftDrawSetClipRectangles(xftDraw, 0, 0, rects.ptr, 1);
} }
@ -13477,16 +13491,7 @@ version(X11) {
} }
} }
private OperatingSystemFont _activeFont; void enableXftDraw() {
void setFont(OperatingSystemFont font) {
_activeFont = font;
version(with_xft) {
if(font && font.isXft && font.xftFont)
this.xftFont = font.xftFont;
else
this.xftFont = null;
if(this.xftFont) {
if(xftDraw is null) { if(xftDraw is null) {
xftDraw = XftDrawCreate( xftDraw = XftDrawCreate(
display, display,
@ -13497,7 +13502,19 @@ version(X11) {
updateXftColor(); updateXftColor();
} }
}
private OperatingSystemFont _activeFont;
void setFont(OperatingSystemFont font) {
_activeFont = font;
version(with_xft) {
if(font && font.isXft && font.xftFont)
this.xftFont = font.xftFont;
else
this.xftFont = null;
if(this.xftFont) {
enableXftDraw();
return; return;
} }
} }
@ -15519,7 +15536,14 @@ mixin DynamicLoad!(XRandr, "Xrandr", 2, XRandrLibrarySuccessfullyLoaded) XRandrL
auto screen = DefaultScreen(display); auto screen = DefaultScreen(display);
bool overrideRedirect = false; bool overrideRedirect = false;
if(windowType == WindowTypes.dropdownMenu || windowType == WindowTypes.popupMenu || windowType == WindowTypes.notification)// || windowType == WindowTypes.nestedChild) if(
windowType == WindowTypes.dropdownMenu || windowType == WindowTypes.popupMenu ||
windowType == WindowTypes.tooltip ||
windowType == WindowTypes.notification ||
windowType == WindowTypes.dnd ||
windowType == WindowTypes.comboBoxDropdown ||
(customizationFlags & WindowFlags.overrideRedirect)
)// || windowType == WindowTypes.nestedChild)
overrideRedirect = true; overrideRedirect = true;
version(without_opengl) {} version(without_opengl) {}
@ -15733,6 +15757,21 @@ mixin DynamicLoad!(XRandr, "Xrandr", 2, XRandrLibrarySuccessfullyLoaded) XRandrL
case WindowTypes.dialog: case WindowTypes.dialog:
setNetWMWindowType(GetAtom!"_NET_WM_WINDOW_TYPE_DIALOG"(display)); setNetWMWindowType(GetAtom!"_NET_WM_WINDOW_TYPE_DIALOG"(display));
break; break;
case WindowTypes.comboBoxDropdown:
motifHideDecorations();
setNetWMWindowType(GetAtom!"_NET_WM_WINDOW_TYPE_COMBO"(display));
customizationFlags |= WindowFlags.skipTaskbar | WindowFlags.alwaysOnTop;
break;
case WindowTypes.tooltip:
motifHideDecorations();
setNetWMWindowType(GetAtom!"_NET_WM_WINDOW_TYPE_TOOLTIP"(display));
customizationFlags |= WindowFlags.skipTaskbar | WindowFlags.alwaysOnTop;
break;
case WindowTypes.dnd:
motifHideDecorations();
setNetWMWindowType(GetAtom!"_NET_WM_WINDOW_TYPE_DND"(display));
customizationFlags |= WindowFlags.skipTaskbar | WindowFlags.alwaysOnTop;
break;
/+ /+
case WindowTypes.menu: case WindowTypes.menu:
atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_MENU"(display); atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_MENU"(display);
@ -15756,18 +15795,9 @@ mixin DynamicLoad!(XRandr, "Xrandr", 2, XRandrLibrarySuccessfullyLoaded) XRandrL
case WindowTypes.splash: case WindowTypes.splash:
atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_SPLASH"(display); atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_SPLASH"(display);
break; break;
case WindowTypes.tooltip:
atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_TOOLTIP"(display);
break;
case WindowTypes.notification: case WindowTypes.notification:
atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_NOTIFICATION"(display); atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_NOTIFICATION"(display);
break; break;
case WindowTypes.combo:
atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_COMBO"(display);
break;
case WindowTypes.dnd:
atoms[0] = GetAtom!"_NET_WM_WINDOW_TYPE_DND"(display);
break;
+/ +/
} }
catch(Exception e) { catch(Exception e) {