ultimatepp/uppsrc/CtrlCore/CocoTop.cpp
cxl a6fe0681be CtrlCore: Cocoa Minimize, Maximize, Overlap
git-svn-id: svn://ultimatepp.org/upp/trunk@12218 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-08-31 16:41:38 +00:00

35 lines
446 B
C++

#include <CtrlCore/CtrlCore.h>
#ifdef PLATFORM_COCOA
NAMESPACE_UPP
#define LLOG(x) // LOG(x)
TopWindow& TopWindow::FullScreen(bool b)
{
return *this;
}
TopWindow& TopWindow::TopMost(bool b, bool stay_top)
{
GuiLock __;
return *this;
}
bool TopWindow::IsTopMost() const
{
return true;
}
void TopWindow::GuiPlatformConstruct()
{
}
void TopWindow::GuiPlatformDestruct()
{
}
END_UPP_NAMESPACE
#endif