Description
The X11BypassWindowManagerHint
field is a member of the Editor.WindowFlags
enumeration. It is used to specify a window flag that instructs the X11 window manager to bypass its normal window management operations for the window. This can be useful for creating windows that need to behave differently from standard managed windows, such as pop-ups or tooltips that should not be managed by the window manager.
Usage
To use the X11BypassWindowManagerHint
flag, you can combine it with other WindowFlags
using a bitwise OR operation. This allows you to customize the behavior of a window in the editor environment.
Example
// Example of using X11BypassWindowManagerHint
WindowFlags flags = WindowFlags.Window | WindowFlags.X11BypassWindowManagerHint;
// Apply the flags to a window
EditorWindow myWindow = new EditorWindow();
myWindow.SetWindowFlags(flags);
myWindow.Show();