ultimatepp/uppsrc/CtrlCore/CocoTop.cpp
cxl 97ed67c5b0 CtrlLib: OSX Main application menu support
git-svn-id: svn://ultimatepp.org/upp/trunk@12341 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-10-07 17:49:53 +00:00

31 lines
400 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()
{
}
END_UPP_NAMESPACE
#endif