summaryrefslogtreecommitdiff
path: root/examples/gui/wulinetest
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-02-25 22:02:03 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2008-02-25 22:02:03 +0000
commite31752284d78a71eb5c68cad677eedc0df227f04 (patch)
tree27caadd9e9b221ec7b0deff3aed95e4fc7e3af42 /examples/gui/wulinetest
parent450da5d28e0173db8484a0be094bfc23872ecedc (diff)
downloadfpGUI-e31752284d78a71eb5c68cad677eedc0df227f04.tar.xz
* I believe I fixed the Button down state and Mouse Events issue. It now works under Linux. I still need to test under Windows.
* Remove the unneeded .ReleaseMouse call in EditCombo unit. * Added new credit in the Authors text file * Fixed the tab order of the Wu Line example project.
Diffstat (limited to 'examples/gui/wulinetest')
-rw-r--r--examples/gui/wulinetest/wuline_test.lpr11
1 files changed, 7 insertions, 4 deletions
diff --git a/examples/gui/wulinetest/wuline_test.lpr b/examples/gui/wulinetest/wuline_test.lpr
index c3db8886..7459b0f2 100644
--- a/examples/gui/wulinetest/wuline_test.lpr
+++ b/examples/gui/wulinetest/wuline_test.lpr
@@ -149,9 +149,10 @@ begin
begin
Name := 'rbSpokes';
SetPosition(12, 28, 120, 19);
- Text := 'Spokes';
FontDesc := '#Label1';
GroupIndex := 1;
+ TabOrder := 2;
+ Text := 'Spokes';
OnChange := @RadioButtonChanged;
end;
@@ -160,10 +161,11 @@ begin
begin
Name := 'rbLines';
SetPosition(12, 8, 120, 19);
- Text := 'Lines';
+ Checked := True;
FontDesc := '#Label1';
GroupIndex := 1;
- Checked := True;
+ TabOrder := 1;
+ Text := 'Lines';
OnChange := @RadioButtonChanged;
end;
@@ -172,9 +174,10 @@ begin
begin
Name := 'rbSpiral';
SetPosition(12, 48, 120, 19);
- Text := 'Spiral';
FontDesc := '#Label1';
GroupIndex := 1;
+ TabOrder := 3;
+ Text := 'Spiral';
OnChange := @RadioButtonChanged;
end;