Merge pull request #9515 from marcelofg55/master

Implemented borderless window functions on Linux.
This commit is contained in:
Rémi Verschelde 2017-07-08 11:02:29 +02:00 committed by GitHub
commit 79992a4a72
2 changed files with 29 additions and 0 deletions

View File

@ -278,6 +278,13 @@ void OS_X11::initialize(const VideoMode &p_desired, int p_video_driver, int p_au
xev.xclient.data.l[2] = 0;
XSendEvent(x11_display, DefaultRootWindow(x11_display), False, SubstructureNotifyMask, &xev);
} else if (current_videomode.borderless_window) {
Hints hints;
Atom property;
hints.flags = 2;
hints.decorations = 0;
property = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True);
XChangeProperty(x11_display, x11_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);
}
// disable resizable window
@ -1018,6 +1025,25 @@ bool OS_X11::is_window_maximized() const {
return false;
}
void OS_X11::set_borderless_window(int p_borderless) {
if (current_videomode.borderless_window == p_borderless)
return;
current_videomode.borderless_window = p_borderless;
Hints hints;
Atom property;
hints.flags = 2;
hints.decorations = current_videomode.borderless_window ? 0 : 1;
property = XInternAtom(x11_display, "_MOTIF_WM_HINTS", True);
XChangeProperty(x11_display, x11_window, property, property, 32, PropModeReplace, (unsigned char *)&hints, 5);
}
bool OS_X11::get_borderless_window() {
return current_videomode.borderless_window;
}
void OS_X11::request_attention() {
// Using EWMH -- Extended Window Manager Hints
//

View File

@ -251,6 +251,9 @@ public:
virtual bool is_window_maximized() const;
virtual void request_attention();
virtual void set_borderless_window(int p_borderless);
virtual bool get_borderless_window();
virtual void move_window_to_foreground();
virtual void alert(const String &p_alert, const String &p_title = "ALERT!");