source/Platform/Unix: stub implementation
This commit is contained in:
parent
4d69ff3a18
commit
6464838159
20 changed files with 498 additions and 2 deletions
56
source/Platform/Unix/X11Display.cpp
Normal file
56
source/Platform/Unix/X11Display.cpp
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
|
||||
#include "X11Display.h"
|
||||
|
||||
namespace sp {
|
||||
|
||||
bool X11Display::create(DisplayDescription description)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
void X11Display::destroy()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool X11Display::isValid()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
void* X11Display::getHandle() const
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void X11Display::setSize(unsigned int width, unsigned int height)
|
||||
{
|
||||
m_size = Vector2u(width, height);
|
||||
}
|
||||
|
||||
Vector2u X11Display::getSize() const
|
||||
{
|
||||
return m_size;
|
||||
}
|
||||
|
||||
void X11Display::setPosition(unsigned int x, unsigned int y)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void X11Display::setCaption(const std::string& caption)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void X11Display::setIcon(const std::string& icon)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void X11Display::showCursor(bool value)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
} // namespace sp
|
||||
Loading…
Add table
Add a link
Reference in a new issue