ultimatepp/reference/iml/image.cpp
mdelfede 263ff5f895 changed svn layout
git-svn-id: svn://ultimatepp.org/upp/trunk@281 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-06-07 22:31:27 +00:00

28 lines
431 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define IMAGEFILE <iml/image.iml>
#define IMAGECLASS MyImg
#include <Draw/iml.h>
struct App : TopWindow {
void Paint(Draw& w)
{
Size sz = GetSize();
w.DrawRect(sz, SGray);
Size isz = MyImg::Smiley().GetSize();
w.DrawImage((sz.cx - isz.cx) / 2, (sz.cy - isz.cy) / 2, MyImg::Smiley());
}
App()
{
Sizeable();
BackPaint();
}
};
GUI_APP_MAIN
{
App().Run();
}