diff options
author | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-07-24 08:40:29 +0000 |
---|---|---|
committer | graemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf> | 2007-07-24 08:40:29 +0000 |
commit | 25749cf067a51fc2bcc3238c4fbc287f765b49ee (patch) | |
tree | e9c0937fbb0fd1a3e73b26fbc6e3085dce497e8b /prototypes | |
parent | 85ffdc73b32e747ba0517bfc0e8403299f539b03 (diff) | |
download | fpGUI-25749cf067a51fc2bcc3238c4fbc287f765b49ee.tar.xz |
GUI: created a AutoSize property for TfpgLabel
Diffstat (limited to 'prototypes')
-rw-r--r-- | prototypes/fpgui2/tests/edittest.dpr | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/prototypes/fpgui2/tests/edittest.dpr b/prototypes/fpgui2/tests/edittest.dpr index 9440f7b8..c9b33b22 100644 --- a/prototypes/fpgui2/tests/edittest.dpr +++ b/prototypes/fpgui2/tests/edittest.dpr @@ -290,18 +290,20 @@ end; bmp: TfpgImage; begin SetPosition(200, 200, 500, 350); -// WindowTitle := 'fpGUI Widget Test'; WindowTitle := 'Test Russian text -> Òåñò'; label1 := CreateLabel(self, 5, 5, 'Hello world!'); label2 := CreateLabel(self, 5, 20, 'Hello world in Bold!'); label2.FontDesc := 'Sans-12:bold:underline'; - label2.Width := 200; edit1 := CreateEdit(self, 10, 40, 120, 22); edit1.Text := 'Hello world. Hello world. Hello world.'; edit2 := CreateEdit(self, 10, 70, 200, 22); edit2.Text := 'Test Russian text -> Òåñò'; + // left to right and right to left text in one + // fpGUI doesn't handle this correctly yet. + // See http://www.catch22.net/tuts/editor18.asp for how it needs to display and work +// edit2.Text := 'HelloيُساوِيWorld'; btn2 := CreateButton(self, 10, 100, 75, 'Normal', nil); btn2.OnClick := @btnDisplayBMP; @@ -311,7 +313,6 @@ end; btn3.Embedded := True; btn3.OnClick := @btn3Click; - btn := CreateButton(self, 10, 130, 75, 'Close', @btnCloseClick); btn.ImageName := 'stdimg.close'; btn.ShowImage := True; |