ultimatepp/uppdev/Transparent/main.cpp
cxl 351994a6cc Adding uppdev....
git-svn-id: svn://ultimatepp.org/upp/trunk@328 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-08-15 08:36:24 +00:00

30 lines
544 B
C++

#include "Transparent.h"
App::App()
{
CtrlLayout(*this);
list.HeaderObject().Absolute().Track();
const int fx = 10;
const int fy = 50;
for (int i = 0; i < fx; i++)
list.AddColumn("Column " + AsString(i), 100).HeaderTab().Min(50);
for (int i = 0; i < fx; i++)
for (int j = 0; j < fy; j++)
list.Set(j, i, "Value " + AsString(j) + ":" + AsString(i));
Sizeable().Zoomable();
// static PaintRect pr(ColorDisplay(), White());
// Background(pr);
}
GUI_APP_MAIN
{
App().Run();
}