syncing uppdev

git-svn-id: svn://ultimatepp.org/upp/trunk@1534 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-08-25 07:57:23 +00:00
parent 5137389891
commit 8ac31e2613
2 changed files with 6 additions and 1 deletions

View file

@ -1,4 +1,8 @@
LAYOUT(LayoutLayout, 200, 404) LAYOUT(LayoutLayout, 200, 404)
ITEM(Label, dv___0, SetLabel(t_("èwskèwsk")).LeftPosZ(28, 112).TopPosZ(264, 19)) ITEM(Label, dv___0, SetLabel(t_("èwskèwsk")).LeftPosZ(28, 112).TopPosZ(264, 19))
ITEM(Button, ok, SetLabel(t_("OK")).Tip(t_("This is OK!")).LeftPosZ(28, 144).TopPosZ(320, 80))
ITEM(WithDropChoice<EditString>, tipper, Tip(t_("Just a tip!")).LeftPosZ(12, 184).TopPosZ(52, 19))
ITEM(EditString, aaa, Tip(t_("Another tip")).LeftPosZ(12, 64).TopPosZ(80, 19))
ITEM(DropList, dl, Tip(t_("Some tip is here!")).LeftPosZ(12, 64).TopPosZ(108, 19))
END_LAYOUT END_LAYOUT

View file

@ -3,8 +3,9 @@
Layout::Layout() Layout::Layout()
{ {
CtrlLayoutOK(*this, "Test"); CtrlLayoutOK(*this, "Test");
dl.Tip("Tip!");
} }
GUI_APP_MAIN { GUI_APP_MAIN {
Layout().Run();čwsk Layout().Run();
} }