ultimatepp/uppsrc/Turtle/Ctrl.cpp
cxl 77da65c2a7 Turtle: Fixed issue with focus on WndDestroy #682
git-svn-id: svn://ultimatepp.org/upp/trunk@6890 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2014-02-09 17:13:19 +00:00

73 lines
917 B
C++

#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