mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-30 10:06:35 +03:00
Added platform specific implementation of window management functions, that can be used by any backend passing some basic arguments to handle the operations.
This commit is contained in:
38
src/window/platform/null/cnullimpl.cpp
Normal file
38
src/window/platform/null/cnullimpl.cpp
Normal file
@@ -0,0 +1,38 @@
|
||||
#include "cnullimpl.hpp"
|
||||
|
||||
namespace EE { namespace Window { namespace Platform {
|
||||
|
||||
cNullImpl::cNullImpl( cWindow * window ) :
|
||||
cPlatformImpl( window )
|
||||
{
|
||||
}
|
||||
|
||||
cNullImpl::~cNullImpl() {
|
||||
}
|
||||
|
||||
void cNullImpl::MinimizeWindow() {
|
||||
}
|
||||
|
||||
void cNullImpl::MaximizeWindow() {
|
||||
}
|
||||
|
||||
void cNullImpl::HideWindow() {
|
||||
}
|
||||
|
||||
void cNullImpl::RaiseWindow() {
|
||||
}
|
||||
|
||||
void cNullImpl::ShowWindow() {
|
||||
}
|
||||
|
||||
void cNullImpl::MoveWindow( int left, int top ) {
|
||||
}
|
||||
|
||||
void cNullImpl::SetContext( eeWindowContex Context ) {
|
||||
}
|
||||
|
||||
eeVector2i cNullImpl::Position() {
|
||||
return eeVector2i(0,0);
|
||||
}
|
||||
|
||||
}}}
|
||||
Reference in New Issue
Block a user