1 #include <CtrlCore/CtrlCore.h> 2 3 #ifdef PLATFORM_COCOA 4 5 NAMESPACE_UPP 6 7 #define LLOG(x) // LOG(x) 8 FullScreen(bool b)9TopWindow& TopWindow::FullScreen(bool b) 10 { 11 return *this; 12 } 13 TopMost(bool b,bool stay_top)14TopWindow& TopWindow::TopMost(bool b, bool stay_top) 15 { 16 GuiLock __; 17 return *this; 18 } 19 IsTopMost() const20bool TopWindow::IsTopMost() const 21 { 22 return true; 23 } 24 GuiPlatformConstruct()25void TopWindow::GuiPlatformConstruct() 26 { 27 } 28 29 END_UPP_NAMESPACE 30 31 #endif 32