mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
.uppdev
git-svn-id: svn://ultimatepp.org/upp/trunk@3964 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
1030e72583
commit
c75d2b6b97
8 changed files with 55 additions and 12 deletions
|
|
@ -1,6 +1,5 @@
|
|||
uses
|
||||
CtrlLib,
|
||||
Web\ctrl;
|
||||
CtrlLib;
|
||||
|
||||
include
|
||||
gdfgsdfg;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
#ifndef _AccessKey_icpp_init_stub
|
||||
#define _AccessKey_icpp_init_stub
|
||||
#include "CtrlLib/init"
|
||||
#include "Web\ctrl/init"
|
||||
#endif
|
||||
|
|
|
|||
9
uppdev/PopUpCrash/PopUpCrash.upp
Normal file
9
uppdev/PopUpCrash/PopUpCrash.upp
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
uses
|
||||
CtrlLib;
|
||||
|
||||
file
|
||||
main.cpp;
|
||||
|
||||
mainconfig
|
||||
"" = "GUI SSE2";
|
||||
|
||||
4
uppdev/PopUpCrash/init
Normal file
4
uppdev/PopUpCrash/init
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
#ifndef _Crash_icpp_init_stub
|
||||
#define _Crash_icpp_init_stub
|
||||
#include "CtrlLib/init"
|
||||
#endif
|
||||
24
uppdev/PopUpCrash/main.cpp
Normal file
24
uppdev/PopUpCrash/main.cpp
Normal 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();
|
||||
}
|
||||
|
|
@ -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
5
uppdev/QtfDrawing/init
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#ifndef _QtfDrawing_icpp_init_stub
|
||||
#define _QtfDrawing_icpp_init_stub
|
||||
#include "CtrlLib/init"
|
||||
#include "plugin\gif/init"
|
||||
#endif
|
||||
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue