mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-07-11 22:03:01 -06:00
Crypto: removed from releases, copied to uppsrc2
git-svn-id: svn://ultimatepp.org/upp/trunk@4287 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
6b011f9bbd
commit
2a50cebd3a
20 changed files with 1443 additions and 51 deletions
|
|
@ -1,12 +1,11 @@
|
|||
uses
|
||||
CtrlLib;
|
||||
|
||||
file
|
||||
"ArrayCtrlEdit.h"
|
||||
, main.cpp
|
||||
, "ArrayCtrlEdit.lay"
|
||||
|
||||
;
|
||||
|
||||
mainconfig
|
||||
"" = "GUI ST";
|
||||
uses
|
||||
CtrlLib;
|
||||
|
||||
file
|
||||
ArrayCtrlEdit.h,
|
||||
main.cpp,
|
||||
ArrayCtrlEdit.lay;
|
||||
|
||||
mainconfig
|
||||
"" = "GUI ST";
|
||||
|
||||
|
|
|
|||
|
|
@ -2,22 +2,27 @@
|
|||
|
||||
using namespace Upp;
|
||||
|
||||
Id ALFA("ALFA");
|
||||
Id BETA("BETA");
|
||||
|
||||
GUI_APP_MAIN
|
||||
{
|
||||
DropList es1;
|
||||
DataPusher es1;
|
||||
EditString es2;
|
||||
es1.Add("Hello!");
|
||||
ArrayCtrl list;
|
||||
list.AddColumn(t_("hun")).Edit(es1);
|
||||
list.AddColumn(BETA, "huh");
|
||||
list.AddColumn(t_("fin")).Edit(es2);
|
||||
list.Appending().AppendLine();
|
||||
// list.AutoAppending();
|
||||
list.DoAppend();
|
||||
list.Add(123, "Hello", "kuku");
|
||||
list.Add(123, "Hello", "kuku");
|
||||
list.GoEnd();
|
||||
EditString edit;
|
||||
list.SetCtrl(0, 0, edit);
|
||||
// list.StartEdit();
|
||||
DDUMP(list.Get(0, BETA));
|
||||
TopWindow win;
|
||||
win.Add(list.SizePos());
|
||||
win.Run();
|
||||
win.Sizeable();
|
||||
TabCtrl tab;
|
||||
tab.Set
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue