sphair / ClanLib

ClanLib is a cross platform C++ toolkit library.
Other
344 stars 76 forks source link

Property DisplayWindowDescription.is_topmost() does not work on Mac OS #112

Open kapulkin opened 4 years ago

kapulkin commented 4 years ago

The code below creates window, which is not always on top

`

// Set the window description
clan::DisplayWindowDescription desc_window;
desc_window.set_title("Motion Learning");
desc_window.set_topmost();
desc_window.set_popup_window();
desc_window.set_allow_resize(false);
desc_window.set_layered(true);
desc_window.show_caption(false);
desc_window.set_size(clan::Size(1792, 828), false);

// Open the windows
window = clan::DisplayWindow(desc_window);

`

kapulkin commented 4 years ago

There is a discussion on Stackoverflow, how to implement the topmost feature for X11: https://stackoverflow.com/questions/4345224/x11-xlib-window-always-on-top

rombust commented 4 years ago

Unfortunately, currently no developers are working on the MacOS at the moment