mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
CtrlLib, Doc: Removed virtual keyword from tutorials in favor of override.
This commit is contained in:
parent
63b86ae8f5
commit
e0bf5a0a35
7 changed files with 36 additions and 45 deletions
|
|
@ -3,7 +3,7 @@
|
||||||
using namespace Upp;
|
using namespace Upp;
|
||||||
|
|
||||||
struct MyAppWindow : TopWindow {
|
struct MyAppWindow : TopWindow {
|
||||||
virtual void Paint(Draw& w) override {
|
void Paint(Draw& w) override {
|
||||||
w.DrawRect(GetSize(), SWhite());
|
w.DrawRect(GetSize(), SWhite());
|
||||||
w.DrawText(20, 20, "Hello world!", Arial(30), Magenta);
|
w.DrawText(20, 20, "Hello world!", Arial(30), Magenta);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,17 +6,17 @@ struct MyAppWindow : TopWindow {
|
||||||
Point p;
|
Point p;
|
||||||
String text;
|
String text;
|
||||||
|
|
||||||
virtual void LeftDown(Point pos, dword flags) override {
|
void LeftDown(Point pos, dword flags) override {
|
||||||
p = pos;
|
p = pos;
|
||||||
Refresh();
|
Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void MouseMove(Point pos, dword flags) override {
|
void MouseMove(Point pos, dword flags) override {
|
||||||
text = Format("[%d:%d]", pos.x, pos.y);
|
text = Format("[%d:%d]", pos.x, pos.y);
|
||||||
Refresh();
|
Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void Paint(Draw& w) override {
|
void Paint(Draw& w) override {
|
||||||
w.DrawRect(GetSize(), SWhite);
|
w.DrawRect(GetSize(), SWhite);
|
||||||
w.DrawText(p.x, p.y, text, Arial(20), Magenta);
|
w.DrawText(p.x, p.y, text, Arial(20), Magenta);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ struct MyAppWindow : TopWindow {
|
||||||
Break();
|
Break();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void RightDown(Point, dword) override {
|
void RightDown(Point, dword) override {
|
||||||
MenuBar::Execute(
|
MenuBar::Execute(
|
||||||
[=](Bar& bar) {
|
[=](Bar& bar) {
|
||||||
bar.Add("Exit", [=] { Exit(); });
|
bar.Add("Exit", [=] { Exit(); });
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ struct MyAppWindow : TopWindow {
|
||||||
Break();
|
Break();
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void RightDown(Point, dword) override {
|
void RightDown(Point, dword) override {
|
||||||
int result = Null;
|
int result = Null;
|
||||||
MenuBar menu;
|
MenuBar menu;
|
||||||
for(int i = 0; i < 10; i++)
|
for(int i = 0; i < 10; i++)
|
||||||
|
|
|
||||||
|
|
@ -5,12 +5,12 @@ using namespace Upp;
|
||||||
struct MyCtrl : public Ctrl {
|
struct MyCtrl : public Ctrl {
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
|
||||||
virtual void Paint(Draw& w) override {
|
void Paint(Draw& w) override {
|
||||||
w.DrawRect(GetSize(), White());
|
w.DrawRect(GetSize(), White());
|
||||||
w.DrawText(2, 2, AsString(count));
|
w.DrawText(2, 2, AsString(count));
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void LeftDown(Point, dword) override {
|
void LeftDown(Point, dword) override {
|
||||||
count++;
|
count++;
|
||||||
Refresh();
|
Refresh();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ struct MyAppWindow : TopWindow {
|
||||||
Zoomable().Sizeable().SetRect(0, 0, 550, 100);
|
Zoomable().Sizeable().SetRect(0, 0, 550, 100);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual void Paint(Draw& w) override {
|
void Paint(Draw& w) override {
|
||||||
w.DrawRect(GetSize(), SLtYellow);
|
w.DrawRect(GetSize(), SLtYellow);
|
||||||
w.DrawText(20, 20, t_("Hello translation engine!"), Arial(30), Blue);
|
w.DrawText(20, 20, t_("Hello translation engine!"), Arial(30), Blue);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -224,9 +224,8 @@ Upp;]&]
|
||||||
[s0;l320;~~~32~32;C+75%- &]
|
[s0;l320;~~~32~32;C+75%- &]
|
||||||
[s0;l320;~~~32~32;%- [*C@(0.0.255)+75 struct][C+75 MyAppWindow ][C@(0.0.255)+75 :][C+75
|
[s0;l320;~~~32~32;%- [*C@(0.0.255)+75 struct][C+75 MyAppWindow ][C@(0.0.255)+75 :][C+75
|
||||||
TopWindow `{]&]
|
TopWindow `{]&]
|
||||||
[s0;l320;~~~32~32;%- [C+75 ][*_C@(0.0.255)+75 virtual][*_C+75 ][*_C@(0.0.255)+75 void][*_C+75
|
[s0;l320;~~~32~32;%- [C+75 ][*_C@(0.0.255)+75 void][*_C+75 Paint(Draw][*_C@(0.0.255)+75 `&
|
||||||
Paint(Draw][*_C@(0.0.255)+75 `&][*_C+75 w) ][*_C@(0.0.255)+75 override][*_C+75
|
][*_C+75 w) ][*_C@(0.0.255)+75 override][*_C+75 `{]&]
|
||||||
`{]&]
|
|
||||||
[s0;l320;~~~32~32;%- [C+75 ][*_C+75 w][*_C@(0.0.255)+75 .][*_C+75 DrawRect(GetSize(),
|
[s0;l320;~~~32~32;%- [C+75 ][*_C+75 w][*_C@(0.0.255)+75 .][*_C+75 DrawRect(GetSize(),
|
||||||
SWhite());]&]
|
SWhite());]&]
|
||||||
[s0;l320;~~~32~32;%- [C+75 ][*_C+75 w][*_C@(0.0.255)+75 .][*_C+75 DrawText(][*_C@3+75 2
|
[s0;l320;~~~32~32;%- [C+75 ][*_C+75 w][*_C@(0.0.255)+75 .][*_C+75 DrawText(][*_C@3+75 2
|
||||||
|
|
@ -278,25 +277,24 @@ TopWindow `{]&]
|
||||||
[s0;l320;%- [C+75 Point p;]&]
|
[s0;l320;%- [C+75 Point p;]&]
|
||||||
[s0;l320;%- [C+75 String text;]&]
|
[s0;l320;%- [C+75 String text;]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
[s0;l320;%- [*C+75 ][*_C@(0.0.255)+75 virtual][*_C+75 ][*_C@(0.0.255)+75 void][*_C+75
|
[s0;l320;%- [*C+75 ][*_C@(0.0.255)+75 void][*_C+75 LeftDown(Point
|
||||||
LeftDown(Point pos, ][*_C@(0.128.128)+75 dword][*_C+75 flags) ][*_C@(0.0.255)+75 overr
|
pos, ][*_C@(0.128.128)+75 dword][*_C+75 flags) ][*_C@(0.0.255)+75 override][*_C+75
|
||||||
ide][*_C+75 `{]&]
|
`{]&]
|
||||||
[s0;l320;%- [*C+75 ][*_C+75 p ][*_C@(0.0.255)+75 `=][*_C+75 pos;]&]
|
[s0;l320;%- [*C+75 ][*_C+75 p ][*_C@(0.0.255)+75 `=][*_C+75 pos;]&]
|
||||||
[s0;l320;%- [*C+75 ][*_C+75 Refresh();]&]
|
[s0;l320;%- [*C+75 ][*_C+75 Refresh();]&]
|
||||||
[s0;l320;%- [*C+75 ][*_C+75 `}]&]
|
[s0;l320;%- [*C+75 ][*_C+75 `}]&]
|
||||||
[s0;l320;*C+75%- &]
|
[s0;l320;*C+75%- &]
|
||||||
[s0;l320;%- [*C+75 ][*_C@(0.0.255)+75 virtual][*_C+75 ][*_C@(0.0.255)+75 void][*_C+75
|
[s0;l320;%- [*C+75 ][*_C@(0.0.255)+75 void][*_C+75 MouseMove(Point
|
||||||
MouseMove(Point pos, ][*_C@(0.128.128)+75 dword][*_C+75 flags) ][*_C@(0.0.255)+75 over
|
pos, ][*_C@(0.128.128)+75 dword][*_C+75 flags) ][*_C@(0.0.255)+75 override][*_C+75
|
||||||
ride][*_C+75 `{]&]
|
`{]&]
|
||||||
[s0;l320;%- [*C+75 ][*_C+75 text ][*_C@(0.0.255)+75 `=][*_C+75 Format(][*_C@3+75 `"`[][*_C@(0.0.255)+75 %
|
[s0;l320;%- [*C+75 ][*_C+75 text ][*_C@(0.0.255)+75 `=][*_C+75 Format(][*_C@3+75 `"`[][*_C@(0.0.255)+75 %
|
||||||
d][*_C@3+75 :][*_C@(0.0.255)+75 %d][*_C@3+75 `]`"][*_C+75 , pos][*_C@(0.0.255)+75 .][*_C+75 x,
|
d][*_C@3+75 :][*_C@(0.0.255)+75 %d][*_C@3+75 `]`"][*_C+75 , pos][*_C@(0.0.255)+75 .][*_C+75 x,
|
||||||
pos][*_C@(0.0.255)+75 .][*_C+75 y);]&]
|
pos][*_C@(0.0.255)+75 .][*_C+75 y);]&]
|
||||||
[s0;l320;%- [*C+75 ][*_C+75 Refresh();]&]
|
[s0;l320;%- [*C+75 ][*_C+75 Refresh();]&]
|
||||||
[s0;l320;%- [*C+75 ][*_C+75 `}]&]
|
[s0;l320;%- [*C+75 ][*_C+75 `}]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 virtual][C+75 ][*C@(0.0.255)+75 void][C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 void][C+75 Paint(Draw][C@(0.0.255)+75 `&][C+75
|
||||||
Paint(Draw][C@(0.0.255)+75 `&][C+75 w) ][*C@(0.0.255)+75 override][C+75
|
w) ][*C@(0.0.255)+75 override][C+75 `{]&]
|
||||||
`{]&]
|
|
||||||
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawRect(GetSize(),
|
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawRect(GetSize(),
|
||||||
SWhite);]&]
|
SWhite);]&]
|
||||||
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawText(p][C@(0.0.255)+75 .][C+75 x,
|
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawText(p][C@(0.0.255)+75 .][C+75 x,
|
||||||
|
|
@ -502,9 +500,8 @@ MyApp?`"][C+75 ))]&]
|
||||||
[s0;l320;%- [C+75 Break();]&]
|
[s0;l320;%- [C+75 Break();]&]
|
||||||
[s0;l320;%- [C+75 `}]&]
|
[s0;l320;%- [C+75 `}]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 virtual][C+75 ][*C@(0.0.255)+75 void][C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 void][C+75 RightDown(Point, ][C@(0.128.128)+75 dword
|
||||||
RightDown(Point, ][C@(0.128.128)+75 dword][C+75 ) ][*C@(0.0.255)+75 override][C+75
|
][C+75 ) ][*C@(0.0.255)+75 override][C+75 `{]&]
|
||||||
`{]&]
|
|
||||||
[s0;l320;%- [C+75 ][*_C+75 MenuBar][*_C@(0.0.255)+75 `::][*_C+75 Execute(]&]
|
[s0;l320;%- [C+75 ][*_C+75 MenuBar][*_C@(0.0.255)+75 `::][*_C+75 Execute(]&]
|
||||||
[s0;l320;%- [C+75 ][*_C@(0.0.255)+75 `[`=`]][*_C+75 (Bar][*_C@(0.0.255)+75 `&][*_C+75
|
[s0;l320;%- [C+75 ][*_C@(0.0.255)+75 `[`=`]][*_C+75 (Bar][*_C@(0.0.255)+75 `&][*_C+75
|
||||||
bar) `{]&]
|
bar) `{]&]
|
||||||
|
|
@ -550,9 +547,8 @@ MyApp?`"][C+75 ))]&]
|
||||||
[s0;l320;%- [C+75 Break();]&]
|
[s0;l320;%- [C+75 Break();]&]
|
||||||
[s0;l320;%- [C+75 `}]&]
|
[s0;l320;%- [C+75 `}]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 virtual][C+75 ][*C@(0.0.255)+75 void][C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 void][C+75 RightDown(Point, ][C@(0.128.128)+75 dword
|
||||||
RightDown(Point, ][C@(0.128.128)+75 dword][C+75 ) ][*C@(0.0.255)+75 override][C+75
|
][C+75 ) ][*C@(0.0.255)+75 override][C+75 `{]&]
|
||||||
`{]&]
|
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 int][C+75 ][*_C+75 result][*C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 int][C+75 ][*_C+75 result][*C+75
|
||||||
][C@(0.0.255)+75 `=][C+75 ][C@(0.128.128)+75 Null][C+75 ;]&]
|
][C@(0.0.255)+75 `=][C+75 ][C@(0.128.128)+75 Null][C+75 ;]&]
|
||||||
[s0;l320;%- [C+75 ][*_C+75 MenuBar menu][C+75 ;]&]
|
[s0;l320;%- [C+75 ][*_C+75 MenuBar menu][C+75 ;]&]
|
||||||
|
|
@ -1550,8 +1546,7 @@ react to Enter and Esc keys and add specific visual appearance.&]
|
||||||
[* CtrlLayoutCancel], [* CtrlLayoutOKCancel ]etc. template functions
|
[* CtrlLayoutCancel], [* CtrlLayoutOKCancel ]etc. template functions
|
||||||
that both [^topic`:`/`/CtrlCore`/src`/Layout`_en`-us^ setup layout
|
that both [^topic`:`/`/CtrlCore`/src`/Layout`_en`-us^ setup layout
|
||||||
and assign] Acceptors and Rejectors!&]
|
and assign] Acceptors and Rejectors!&]
|
||||||
[s5; &]
|
[s5; [/ main.cpp:]&]
|
||||||
[s7; [@(28.127.0) // main.cpp]&]
|
|
||||||
[s0;l320;~~~>32;%- [C@(128.0.255)+75 #include][C+75 ][C@(0.0.255)+75 <][C+75 CtrlLib][C@(0.0.255)+75 /
|
[s0;l320;~~~>32;%- [C@(128.0.255)+75 #include][C+75 ][C@(0.0.255)+75 <][C+75 CtrlLib][C@(0.0.255)+75 /
|
||||||
][C+75 CtrlLib][C@(0.0.255)+75 .][C+75 h][C@(0.0.255)+75 >]&]
|
][C+75 CtrlLib][C@(0.0.255)+75 .][C+75 h][C@(0.0.255)+75 >]&]
|
||||||
[s0;l320;~~~>32;C+75%- &]
|
[s0;l320;~~~>32;C+75%- &]
|
||||||
|
|
@ -1580,8 +1575,8 @@ d][C@(0.0.255)+75 /][C+75 myapp][C@(0.0.255)+75 .][C+75 lay][C@(0.0.255)+75 >]&]
|
||||||
[s0;l320;~~~>32;%- [C+75 Exclamation(][C@3+75 `"Canceled`"][C+75 );]&]
|
[s0;l320;~~~>32;%- [C+75 Exclamation(][C@3+75 `"Canceled`"][C+75 );]&]
|
||||||
[s0;l320;~~~>32;%- [C+75 `}]&]
|
[s0;l320;~~~>32;%- [C+75 `}]&]
|
||||||
[s0;l320;~~~>32;%- [C+75 `}]&]
|
[s0;l320;~~~>32;%- [C+75 `}]&]
|
||||||
[s7; &]
|
[s5;%- &]
|
||||||
[s7; [@(28.127.0) // myapp.lay]&]
|
[s5; [/ myapp.lay:]&]
|
||||||
[s0;l320;%- [*C@(0.0.255)+75 LAYOUT][C+75 (MyAppLayout, ][C@3+75 148][C+75 ,
|
[s0;l320;%- [*C@(0.0.255)+75 LAYOUT][C+75 (MyAppLayout, ][C@3+75 148][C+75 ,
|
||||||
][C@3+75 64][C+75 )]&]
|
][C@3+75 64][C+75 )]&]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 ITEM][C+75 (Upp][C@(0.0.255)+75 `::][C+75 EditDate,
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 ITEM][C+75 (Upp][C@(0.0.255)+75 `::][C+75 EditDate,
|
||||||
|
|
@ -1596,7 +1591,7 @@ opPosZ(][C@3+75 32][C+75 , ][C@3+75 24][C+75 ))]&]
|
||||||
][C+75 )][C@(0.0.255)+75 .][C+75 LeftPosZ(][C@3+75 76][C+75 , ][C@3+75 64][C+75 )][C@(0.0.255)+75 .
|
][C+75 )][C@(0.0.255)+75 .][C+75 LeftPosZ(][C@3+75 76][C+75 , ][C@3+75 64][C+75 )][C@(0.0.255)+75 .
|
||||||
][C+75 TopPosZ(][C@3+75 32][C+75 , ][C@3+75 24][C+75 ))]&]
|
][C+75 TopPosZ(][C@3+75 32][C+75 , ][C@3+75 24][C+75 ))]&]
|
||||||
[s0;l320;%- [*C@(0.0.255)+75 END][C@(0.0.255)+75 `_][*C@(0.0.255)+75 LAYOUT]&]
|
[s0;l320;%- [*C@(0.0.255)+75 END][C@(0.0.255)+75 `_][*C@(0.0.255)+75 LAYOUT]&]
|
||||||
[s0; &]
|
[s5; &]
|
||||||
[s7;@(28.127.0) &]
|
[s7;@(28.127.0) &]
|
||||||
[s7;
|
[s7;
|
||||||
@@rawimage:697&461
|
@@rawimage:697&461
|
||||||
|
|
@ -1618,18 +1613,16 @@ Ctrl `{]&]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 int][C+75 count ][C@(0.0.255)+75 `=][C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 int][C+75 count ][C@(0.0.255)+75 `=][C+75
|
||||||
][C@3+75 0][C+75 ;]&]
|
][C@3+75 0][C+75 ;]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 virtual][C+75 ][*C@(0.0.255)+75 void][C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 void][C+75 Paint(Draw][C@(0.0.255)+75 `&][C+75
|
||||||
Paint(Draw][C@(0.0.255)+75 `&][C+75 w) ][*C@(0.0.255)+75 override][C+75
|
w) ][*C@(0.0.255)+75 override][C+75 `{]&]
|
||||||
`{]&]
|
|
||||||
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawRect(GetSize(),
|
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawRect(GetSize(),
|
||||||
White());]&]
|
White());]&]
|
||||||
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawText(][C@3+75 2][C+75 ,
|
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawText(][C@3+75 2][C+75 ,
|
||||||
][C@3+75 2][C+75 , AsString(count));]&]
|
][C@3+75 2][C+75 , AsString(count));]&]
|
||||||
[s0;l320;%- [C+75 `}]&]
|
[s0;l320;%- [C+75 `}]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 virtual][C+75 ][*C@(0.0.255)+75 void][C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 void][C+75 LeftDown(Point, ][C@(0.128.128)+75 dword][C+75 )
|
||||||
LeftDown(Point, ][C@(0.128.128)+75 dword][C+75 ) ][*C@(0.0.255)+75 override][C+75
|
][*C@(0.0.255)+75 override][C+75 `{]&]
|
||||||
`{]&]
|
|
||||||
[s0;l320;%- [C+75 count][C@(0.0.255)+75 `+`+][C+75 ;]&]
|
[s0;l320;%- [C+75 count][C@(0.0.255)+75 `+`+][C+75 ;]&]
|
||||||
[s0;l320;%- [C+75 Refresh();]&]
|
[s0;l320;%- [C+75 Refresh();]&]
|
||||||
[s0;l320;%- [C+75 `}]&]
|
[s0;l320;%- [C+75 `}]&]
|
||||||
|
|
@ -1749,8 +1742,7 @@ create an application that will support multiple locales. For
|
||||||
this purpose, we will pick up one of the previous example in
|
this purpose, we will pick up one of the previous example in
|
||||||
which simple text is displayed inside the window, and we will
|
which simple text is displayed inside the window, and we will
|
||||||
add translation support to it:&]
|
add translation support to it:&]
|
||||||
[s0; &]
|
[s5; [/ main.cpp:]&]
|
||||||
[s7; [@(28.127.0) // main.cpp]&]
|
|
||||||
[s7;%- [@(128.0.255) #include][@0 ][@(0.0.255) <][@0 CtrlLib][@(0.0.255) /][@0 CtrlLib][@(0.0.255) .
|
[s7;%- [@(128.0.255) #include][@0 ][@(0.0.255) <][@0 CtrlLib][@(0.0.255) /][@0 CtrlLib][@(0.0.255) .
|
||||||
][@0 h][@(0.0.255) >]&]
|
][@0 h][@(0.0.255) >]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
|
|
@ -1773,9 +1765,8 @@ My application`"][*_C@(0.128.128)$(255.255.192)+75 )][C+75 );]&]
|
||||||
etRect(][C@3+75 0][C+75 , ][C@3+75 0][C+75 , ][C@3+75 550][C+75 , ][C@3+75 100][C+75 );]&]
|
etRect(][C@3+75 0][C+75 , ][C@3+75 0][C+75 , ][C@3+75 550][C+75 , ][C@3+75 100][C+75 );]&]
|
||||||
[s0;l320;%- [C+75 `}]&]
|
[s0;l320;%- [C+75 `}]&]
|
||||||
[s0;l320;%- [C+75 ]&]
|
[s0;l320;%- [C+75 ]&]
|
||||||
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 virtual][C+75 ][*C@(0.0.255)+75 void][C+75
|
[s0;l320;%- [C+75 ][*C@(0.0.255)+75 void][C+75 Paint(Draw][C@(0.0.255)+75 `&][C+75
|
||||||
Paint(Draw][C@(0.0.255)+75 `&][C+75 w) ][*C@(0.0.255)+75 override][C+75
|
w) ][*C@(0.0.255)+75 override][C+75 `{]&]
|
||||||
`{]&]
|
|
||||||
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawRect(GetSize(),
|
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawRect(GetSize(),
|
||||||
SLtYellow);]&]
|
SLtYellow);]&]
|
||||||
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawText(][C@3+75 20][C+75 ,
|
[s0;l320;%- [C+75 w][C@(0.0.255)+75 .][C+75 DrawText(][C@3+75 20][C+75 ,
|
||||||
|
|
@ -1823,12 +1814,12 @@ our users use.&]
|
||||||
[s5; The generated file with translated entries is located below.
|
[s5; The generated file with translated entries is located below.
|
||||||
For the purpose of this section we used electronic translator,
|
For the purpose of this section we used electronic translator,
|
||||||
so for any errors we are sorry.&]
|
so for any errors we are sorry.&]
|
||||||
[s0; &]
|
[s5; [/ Gui23.t:]&]
|
||||||
[s7; [@(28.127.0) // Gui23.t]&]
|
[s7; [@(28.127.0) // Gui23.t]&]
|
||||||
[s0;l320;%- [C+75 #ifdef `_MSC`_VER]&]
|
[s0;l320;%- [C+75 #ifdef `_MSC`_VER]&]
|
||||||
[s0;l320;%- [C+75 #pragma setlocale(][C@3+75 `"C`"][C+75 )]&]
|
[s0;l320;%- [C+75 #pragma setlocale(][C@3+75 `"C`"][C+75 )]&]
|
||||||
[s0;l320;%- [C+75 #endif]&]
|
[s0;l320;%- [C+75 #endif]&]
|
||||||
[s0;l320;%- [/C+75 // main.cpp]&]
|
[s0;l320;%- [/C@4+75 // main.cpp]&]
|
||||||
[s0;l320;C+75%- &]
|
[s0;l320;C+75%- &]
|
||||||
[s0;l320;%- [*C@(0.0.255)+75 T][C@(0.0.255)+75 `_][C+75 (][C@3+75 `"My application`"][C+75 )]&]
|
[s0;l320;%- [*C@(0.0.255)+75 T][C@(0.0.255)+75 `_][C+75 (][C@3+75 `"My application`"][C+75 )]&]
|
||||||
[s0;l320;%- [C@(0.128.128)+75 csCZ][C+75 (][C@3+75 `"Moje aplikace`"][C+75 )]&]
|
[s0;l320;%- [C@(0.128.128)+75 csCZ][C+75 (][C@3+75 `"Moje aplikace`"][C+75 )]&]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue