#include "Local.h" #ifdef GUI_TURTLE #define LLOG(x) // DLOG(x) NAMESPACE_UPP void Ctrl::GuiPlatformConstruct() { } void Ctrl::GuiPlatformRemove() { } void Ctrl::GuiPlatformGetTopRect(Rect& r) const { } bool Ctrl::GuiPlatformRefreshFrameSpecial(const Rect& r) { return false; } bool Ctrl::GuiPlatformSetFullRefreshSpecial() { return false; } void Ctrl::PaintCaret(SystemDraw& w) { } String GuiPlatformGetKeyDesc(dword key) { return Null; } void Ctrl::GuiPlatformSelection(PasteClip&) { } void GuiPlatformAdjustDragImage(ImageBuffer&) { } bool GuiPlatformHasSizeGrip() { return true; } void GuiPlatformGripResize(TopWindow *q) { q->GripResize(); } Color GuiPlatformGetScreenPixel(int x, int y) { return Null; } void GuiPlatformAfterMenuPopUp() { } String Ctrl::Name() const { return Name0(); } END_UPP_NAMESPACE #endif