ultimatepp/uppsrc/CtrlCore/CocoTop.cpp
cxl 52403f0ff7 CtrlCore/CtrlLib: MacOS conditionals fixed to support Turtle
git-svn-id: svn://ultimatepp.org/upp/trunk@15996 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2021-06-15 10:34:04 +00:00

31 lines
395 B
C++

#include <CtrlCore/CtrlCore.h>
#ifdef GUI_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