summaryrefslogtreecommitdiff
path: root/prototypes
diff options
context:
space:
mode:
authorgraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-07-26 09:54:22 +0000
committergraemeg <graemeg@ae50a9b5-8222-0410-bf8d-8a13f76226bf>2007-07-26 09:54:22 +0000
commit544f3d4974a01a1f4cd6621c112dcde84e541bbb (patch)
tree63c42f92e5fc8ebf705be6574f27e994713f33b3 /prototypes
parent41c1e1d91857d95f2142c5a994b2ca0cb47f2259 (diff)
downloadfpGUI-544f3d4974a01a1f4cd6621c112dcde84e541bbb.tar.xz
* Added new composite images for radio buttons and checkbox buttons.
* Implemented and added a new widget TfpgRadioButton * TfpgWidget now doesn't process MouseUp and MouseDown events when disabled. * TfpcCheckBox now uses composite images to paint the check mark as well.
Diffstat (limited to 'prototypes')
-rw-r--r--prototypes/fpgui2/tests/edittest.dpr259
-rw-r--r--prototypes/fpgui2/tests/edittest.lpi7
2 files changed, 141 insertions, 125 deletions
diff --git a/prototypes/fpgui2/tests/edittest.dpr b/prototypes/fpgui2/tests/edittest.dpr
index 54dc2188..59b8e4af 100644
--- a/prototypes/fpgui2/tests/edittest.dpr
+++ b/prototypes/fpgui2/tests/edittest.dpr
@@ -17,7 +17,8 @@ uses
gui_memo,
gui_dialogs,
gui_listbox,
- gui_checkbox;
+ gui_checkbox,
+ gui_radiobutton;
type
@@ -53,6 +54,7 @@ type
procedure btnCloseClick(Sender: TObject);
procedure btnDisplayBMP(Sender: TObject);
procedure btn3Click(Sender: TObject);
+ procedure checkboxChanged(Sender: TObject);
public
label1: TfpgLabel;
label2: TfpgLabel;
@@ -70,6 +72,9 @@ type
xp2: TXPButton;
xpsilver: TXPButton;
checkbox: TfpgCheckBox;
+ radiobtn1: TfpgRadioButton;
+ radiobtn2: TfpgRadioButton;
+ radiobtn3: TfpgRadioButton;
procedure AfterCreate; override;
end;
@@ -245,134 +250,146 @@ begin
end;
- { TMainForm }
+{ TMainForm }
- procedure TMainForm.btnCloseClick(Sender: TObject);
- begin
- Close;
- end;
+procedure TMainForm.btnCloseClick(Sender: TObject);
+begin
+ Close;
+end;
- procedure TMainForm.btnDisplayBMP(Sender: TObject);
- var
- bmp: TfpgImage;
- begin
- bmp := LoadImage_BMP(SetDirSeparators('../../../images/themes/luna/button.bmp'));
- bmp.CreateMaskFromSample(0, 0);
- bmp.UpdateImage;
-
- Canvas.BeginDraw;
- Canvas.ClearClipRect;
- // For some reason, under Windows if I don't call this
- // the forms background goes black.
- Canvas.Clear(clWindowBackground);
-
- Canvas.DrawImage(10, 200, bmp);
- Canvas.DrawImagePart(10, 240, bmp, 0, 0, 32, 21);
- Canvas.DrawImagePart(50, 240, bmp, 32, 0, 32, 21);
-
- Canvas.EndDraw;
- bmp.Free;
- end;
+procedure TMainForm.btnDisplayBMP(Sender: TObject);
+var
+ bmp: TfpgImage;
+begin
+ exit;
+ bmp := LoadImage_BMP(SetDirSeparators('../../../images/themes/luna/button.bmp'));
+ bmp.CreateMaskFromSample(0, 0);
+ bmp.UpdateImage;
- procedure TMainForm.btn3Click(Sender: TObject);
- begin
- ShowMessage('Do you really want to quit this application?' + #10 +
- 'We can always keep playing and quite at a later date.' +
- #10#10 +
- 'This is a very long line that has to must be split automatically ' +
- 'and it should have done so. If not there is a bug in the code. It ' +
- 'has also been optimized to wordwrap and not split words in half.'
- , 'My cool message title');
- end;
+ Canvas.BeginDraw;
+ Canvas.ClearClipRect;
+ // For some reason, under Windows if I don't call this
+ // the forms background goes black.
+ Canvas.Clear(clWindowBackground);
+ Canvas.DrawImage(10, 200, bmp);
+ Canvas.DrawImagePart(10, 240, bmp, 0, 0, 32, 21);
+ Canvas.DrawImagePart(50, 240, bmp, 32, 0, 32, 21);
- procedure TMainForm.AfterCreate;
- var
- i: integer;
- bmp: TfpgImage;
- begin
- SetPosition(200, 200, 500, 350);
- 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';
-
- 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
+ Canvas.EndDraw;
+ bmp.Free;
+end;
+
+procedure TMainForm.btn3Click(Sender: TObject);
+begin
+ ShowMessage('Do you really want to quit this application?' + #10 +
+ 'We can always keep playing and quite at a later date.' +
+ #10#10 +
+ 'This is a very long line that has to must be split automatically ' +
+ 'and it should have done so. If not there is a bug in the code. It ' +
+ 'has also been optimized to wordwrap and not split words in half.'
+ , 'My cool message title');
+end;
+
+procedure TMainForm.checkboxChanged(Sender: TObject);
+begin
+ radiobtn1.Enabled := not checkbox.Checked;
+ radiobtn2.Enabled := not checkbox.Checked;
+ radiobtn3.Enabled := not checkbox.Checked;
+end;
+
+procedure TMainForm.AfterCreate;
+var
+ i: integer;
+ bmp: TfpgImage;
+begin
+ SetPosition(200, 200, 500, 350);
+ 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';
+
+ 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;
+ btn2 := CreateButton(self, 10, 100, 75, 'Normal', nil);
+ btn2.OnClick := @btnDisplayBMP;
// btn2.Enabled := False;
-
- btn3 := CreateButton(self, 100, 100, 75, 'Embedded', nil);
- btn3.Embedded := True;
- btn3.OnClick := @btn3Click;
-
- btn := CreateButton(self, 10, 130, 75, 'Close', @btnCloseClick);
- btn.ImageName := 'stdimg.close';
- btn.ShowImage := True;
-
- combo1 := CreateComboBox(self, 10, 160, 120, nil);
- for i := 1 to 5 do
- combo1.Items.Add(Format('Items %.2d', [i]));
- combo2 := CreateComboBox(self, 10, 190, 120, nil);
- for i := 1 to 20 do
- combo2.Items.Add(Format('Items %.2d', [i]));
-
- memo := TfpgMemo.Create(self);
- memo.Top := 10;
- memo.Left := 250;
- memo.Width := 200;
- memo.Height := 80;
-
- listbox := TfpgListBox.Create(self);
- listbox.Top := 100;
- listbox.Left := 250;
- listbox.Width := 200;
- listbox.Height := 80;
- for i := 1 to 20 do
- listbox.Items.Add(Format('Items %.2d', [i]));
- listbox.FocusItem := 3;
-
-
- sbar := TfpgScrollBar.Create(self);
- sbar.Top := 160;
- sbar.Left := 150;
- sbar.Height := 100;
- sbar.Max := 15;
-
- xpluna := TXPButton.Create(self);
- xpluna.Left := 250;
- xpluna.Top := 200;
- xpluna.Width := 75;
- xpluna.Text := 'XP Luna';
-
- xp2 := TXPButton.Create(self);
- xp2.Left := 335;
- xp2.Top := 200;
- xp2.Width := 75;
- xp2.Text := 'XP Button2';
- xp2.Enabled := False;
-
- xpsilver := TXPButton.Create(self);
- xpsilver.Left := 250;
- xpsilver.Top := 230;
- xpsilver.Width := 75;
- xpsilver.Text := 'XP Silver';
- bmp := LoadImage_BMP(SetDirSeparators('../../../images/themes/silver/button.bmp'));
- bmp.CreateMaskFromSample(0, 0);
- bmp.UpdateImage;
- xpsilver.ThemeImage := bmp;
-
- checkbox := CreateCheckBox(self, 10, 220, 'Checkbox One');
- end;
+
+ btn3 := CreateButton(self, 100, 100, 75, 'Embedded', nil);
+ btn3.Embedded := True;
+ btn3.OnClick := @btn3Click;
+
+ btn := CreateButton(self, 10, 130, 75, 'Close', @btnCloseClick);
+ btn.ImageName := 'stdimg.close';
+ btn.ShowImage := True;
+
+ combo1 := CreateComboBox(self, 10, 160, 120, nil);
+ for i := 1 to 5 do
+ combo1.Items.Add(Format('Items %.2d', [i]));
+ combo2 := CreateComboBox(self, 10, 190, 120, nil);
+ for i := 1 to 20 do
+ combo2.Items.Add(Format('Items %.2d', [i]));
+
+ memo := TfpgMemo.Create(self);
+ memo.Top := 10;
+ memo.Left := 250;
+ memo.Width := 200;
+ memo.Height := 80;
+
+ listbox := TfpgListBox.Create(self);
+ listbox.Top := 100;
+ listbox.Left := 250;
+ listbox.Width := 200;
+ listbox.Height := 80;
+ for i := 1 to 20 do
+ listbox.Items.Add(Format('Items %.2d', [i]));
+ listbox.FocusItem := 3;
+
+
+ sbar := TfpgScrollBar.Create(self);
+ sbar.Top := 160;
+ sbar.Left := 150;
+ sbar.Height := 100;
+ sbar.Max := 15;
+
+ xpluna := TXPButton.Create(self);
+ xpluna.Left := 250;
+ xpluna.Top := 200;
+ xpluna.Width := 75;
+ xpluna.Text := 'XP Luna';
+
+ xp2 := TXPButton.Create(self);
+ xp2.Left := 335;
+ xp2.Top := 200;
+ xp2.Width := 75;
+ xp2.Text := 'XP Button2';
+ xp2.Enabled := False;
+
+ xpsilver := TXPButton.Create(self);
+ xpsilver.Left := 250;
+ xpsilver.Top := 230;
+ xpsilver.Width := 75;
+ xpsilver.Text := 'XP Silver';
+ bmp := LoadImage_BMP(SetDirSeparators('../../../images/themes/silver/button.bmp'));
+ bmp.CreateMaskFromSample(0, 0);
+ bmp.UpdateImage;
+ xpsilver.ThemeImage := bmp;
+
+ checkbox := CreateCheckBox(self, 10, 220, 'Disable Radios');
+ checkbox.OnChange := @checkboxChanged;
+ radiobtn1 := CreateRadioButton(self, 10, 245, 'Radio One');
+ radiobtn2 := CreateRadioButton(self, 10, 265, 'Radio Two');
+ radiobtn3 := CreateRadioButton(self, 10, 285, 'Radio Three');
+ radiobtn1.Checked := True;
+end;
procedure MainProc;
var
diff --git a/prototypes/fpgui2/tests/edittest.lpi b/prototypes/fpgui2/tests/edittest.lpi
index b609d403..1ecb384f 100644
--- a/prototypes/fpgui2/tests/edittest.lpi
+++ b/prototypes/fpgui2/tests/edittest.lpi
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<CONFIG>
<ProjectOptions>
- <PathDelim Value="\"/>
+ <PathDelim Value="/"/>
<Version Value="5"/>
<General>
<Flags>
@@ -9,7 +9,7 @@
</Flags>
<SessionStorage Value="InProjectDir"/>
<MainUnit Value="0"/>
- <IconPath Value=".\"/>
+ <IconPath Value="./"/>
<TargetFileExt Value=""/>
</General>
<VersionInfo>
@@ -23,7 +23,7 @@
<RunParams>
<local>
<FormatVersion Value="1"/>
- <LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
+ <LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
</local>
</RunParams>
<RequiredPackages Count="1">
@@ -42,7 +42,6 @@
</ProjectOptions>
<CompilerOptions>
<Version Value="5"/>
- <PathDelim Value="\"/>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>