git-svn-id: svn://ultimatepp.org/upp/trunk@3964 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2011-10-07 09:55:14 +00:00
parent 5748345a90
commit b5db335eae
8 changed files with 55 additions and 12 deletions

View file

@ -1,6 +1,5 @@
uses
CtrlLib,
Web\ctrl;
CtrlLib;
include
gdfgsdfg;

View file

@ -1,5 +1,4 @@
#ifndef _AccessKey_icpp_init_stub
#define _AccessKey_icpp_init_stub
#include "CtrlLib/init"
#include "Web\ctrl/init"
#endif

View file

@ -0,0 +1,9 @@
uses
CtrlLib;
file
main.cpp;
mainconfig
"" = "GUI SSE2";

4
uppdev/PopUpCrash/init Normal file
View file

@ -0,0 +1,4 @@
#ifndef _Crash_icpp_init_stub
#define _Crash_icpp_init_stub
#include "CtrlLib/init"
#endif

View file

@ -0,0 +1,24 @@
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
class TestPopup : public TopWindow
{
StaticRect r;
public:
typedef TestPopup CLASSNAME;
TestPopup();
};
TestPopup::TestPopup()
{
r.Color(Red());
r.SetRect(100, 100, 200, 200);
r.PopUp();
}
GUI_APP_MAIN
{
TestPopup().Run();
}

View file

@ -1,9 +1,10 @@
uses
CtrlLib,
plugin\gif;
file
main.cpp;
mainconfig
"" = "GUI";
uses
CtrlLib,
plugin\gif;
file
main.cpp;
mainconfig
"" = "GUI";

5
uppdev/QtfDrawing/init Normal file
View file

@ -0,0 +1,5 @@
#ifndef _QtfDrawing_icpp_init_stub
#define _QtfDrawing_icpp_init_stub
#include "CtrlLib/init"
#include "plugin\gif/init"
#endif

View file

@ -1,5 +1,7 @@
#include <CtrlLib/CtrlLib.h>
using namespace Upp;
GUI_APP_MAIN
{
String pict = AsQTF(CreateImageObject(StreamRaster::LoadFileAny("d:/msg_about.gif"), 400));