mirror of
https://github.com/AxioDL/boo.git
synced 2025-12-14 07:36:26 +00:00
Implement motif window styles
This commit is contained in:
@@ -115,7 +115,7 @@ struct WindowWayland : IWindow
|
||||
|
||||
std::string getTitle()
|
||||
{
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
void setTitle(const std::string& title)
|
||||
@@ -150,12 +150,20 @@ struct WindowWayland : IWindow
|
||||
|
||||
float getVirtualPixelFactor() const
|
||||
{
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void setStyle(EWindowStyle /*style*/)
|
||||
{}
|
||||
|
||||
EWindowStyle getStyle() const
|
||||
{
|
||||
return STYLE_NONE;
|
||||
}
|
||||
|
||||
bool isFullscreen() const
|
||||
{
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void setFullscreen(bool fs)
|
||||
@@ -169,12 +177,12 @@ struct WindowWayland : IWindow
|
||||
|
||||
uintptr_t getPlatformHandle() const
|
||||
{
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
ETouchType getTouchType() const
|
||||
{
|
||||
|
||||
return TOUCH_NONE;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user