1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
{
***************************************************************************
* *
* This source is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This code is distributed in the hope that it will be useful, but *
* WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* General Public License for more details. *
* *
* A copy of the GNU General Public License is available on the World *
* Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also *
* obtain it by writing to the Free Software Foundation, *
* Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA. *
* *
***************************************************************************
}
unit DlgForm;
{$mode objfpc}
{$H+}
interface
uses Classes, Forms, Buttons, Dialogs, Graphics, StdCtrls;
type
TSampleDialogs = class(TForm)
private
protected
public
closeButton : TButton;
openButton : TButton;
saveButton : TButton;
colorButton : TButton;
fontButton : TButton;
dirButton : TButton;
dirLabel : TLabel;
fileLabel : TLabel;
constructor Create(AOwner: TComponent); override;
procedure buttonClick(Sender : TObject);
procedure FormDestroy(Sender : TObject);
end;
var
SampleDialogs : TSampleDialogs;
implementation
constructor TSampleDialogs.Create(AOwner: TComponent);
begin
inherited CreateNew(AOwner, 1);
Caption := 'Common Dialogs';
SetBounds(200, 200, 400, 230);
Color := clTeal;
OnDestroy := @FormDestroy;
dirLabel := TLabel.Create(Self);
with dirLabel do
begin
Parent := Self;
SetBounds(110, 40, 280, 35);
Caption := 'Directory';
Show;
end;
fileLabel := TLabel.Create(Self);
with fileLabel do
begin
Parent := Self;
SetBounds(110, 80, 280, 35);
Caption := 'File';
Show;
end;
closeButton := TButton.Create(Self);
with closeButton do
begin
Parent := Self;
OnClick := @buttonClick;
SetBounds(110, 145, 75, 32);
caption := 'Close';
Tag := 1;
Show;
end;
openButton := TButton.Create(Self);
with openButton do
begin
Parent := Self;
OnClick := @buttonClick;
SetBounds(10, 10, 75, 32);
caption := 'Open';
Tag := 2;
Show;
end;
saveButton := TButton.Create(Self);
with saveButton do
begin
Parent := Self;
OnClick := @buttonClick;
SetBounds(10, 52, 75, 32);
caption := 'Save';
Tag := 3;
Show;
end;
fontButton := TButton.Create(Self);
with fontButton do
begin
Parent := Self;
OnClick := @buttonClick;
SetBounds(10, 94, 75, 32);
caption := 'Font';
Tag := 4;
Show;
end;
colorButton := TButton.Create(Self);
with colorButton do
begin
Parent := Self;
OnClick := @buttonClick;
SetBounds(10, 136, 75, 32);
caption := 'Color';
Tag := 5;
Show;
end;
dirButton := TButton.Create(Self);
with dirButton do
begin
Parent := Self;
OnClick := @buttonClick;
SetBounds(10, 178, 75, 32);
caption := 'Directory';
Tag := 6;
Show;
end;
end;
procedure TSampleDialogs.FormDestroy(Sender : TObject);
begin
end;
procedure TSampleDialogs.buttonClick(Sender : TObject);
begin
case TButton(Sender).Tag of
1 : Close;
2 : with TOpenDialog.Create(Self) do
begin
Filter := '*.pp';
Options := Options + [ofAllowMultiSelect];
if Execute then fileLabel.Caption := FileName;
Free;
end;
3 : with TSaveDialog.Create(Self) do
begin
Filename := 'untitled.pp';
if Execute then fileLabel.Caption := FileName;
Free;
end;
4 : with TFontDialog.Create(Self) do
begin
Font.Assign(fontButton.Font);
if Execute then fontButton.Font.Assign(Font);
Free;
end;
5 : with TColorDialog.Create(Self) do
begin
Color := Self.Color;
if Execute then Self.Color := Color;
Free;
end;
6 : with TSelectDirectoryDialog.Create(Self) do
begin
if Execute then dirLabel.Caption := FileName;
Free;
end;
end;
end;
end.
|