Adding uppdev....

git-svn-id: svn://ultimatepp.org/upp/trunk@328 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2008-08-15 08:36:24 +00:00
parent dc9f782ba5
commit 4a1c627474
2823 changed files with 619073 additions and 0 deletions

20
uppdev/testcrash/main.cpp Normal file
View file

@ -0,0 +1,20 @@
#include "testcrash.h"
testcrash::testcrash()
{
CtrlLayout(*this, "Window title");
PostCallback(THISBACK(testing));
}
void testcrash::testing()
{
mList.AddColumn("TEST");
}
GUI_APP_MAIN
{
testcrash().Run();
}

View file

@ -0,0 +1,21 @@
#ifndef _testcrash_testcrash_h
#define _testcrash_testcrash_h
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
#define LAYOUTFILE <testcrash/testcrash.lay>
#include <CtrlCore/lay.h>
class testcrash : public WithtestcrashLayout<TopWindow> {
public:
typedef testcrash CLASSNAME;
testcrash();
void testing();
};
#endif

View file

@ -0,0 +1,4 @@
LAYOUT(testcrashLayout, 344, 292)
ITEM(ArrayCtrl, mList, HSizePosZ(4, 4).VSizePosZ(4, 4))
END_LAYOUT

View file

@ -0,0 +1,11 @@
uses
CtrlLib;
file
testcrash.h,
main.cpp,
testcrash.lay;
mainconfig
"" = "GUI MT";