summaryrefslogtreecommitdiff
path: root/examples/gui/layouttest/layouttest.pas
blob: 6cf90662a51c3d29a0b15d1daf3e6ce0aff50d9e (plain)
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
program LayoutTest;

uses Classes, fpGUI;

type
  TDockingForm = class;
  TGridForm = class;
  TBoxForm = class;
  TSimpleForm = class;
  
  { TMainForm }

  TMainForm = class(TForm)
  private
    DockingForm: TDockingForm;
    GridForm: TGridForm;
    BoxForm: TBoxForm;
    SimpleForm: TSimpleForm;
  public
    destructor Destroy; override;
  published
    Box: TBoxLayout;
    Title: TLabel;
    SimpleBtn, FixedBtn, BoxBtn, GridBtn, DockingBtn, ExitBtn: TButton;
    //Separator: TSeparator;
    procedure SimpleBtnClicked(Sender: TObject);
    procedure FixedBtnClicked(Sender: TObject);
    procedure DockingBtnClicked(Sender: TObject);
    procedure GridBtnClicked(Sender: TObject);
    procedure BoxBtnClicked(Sender: TObject);
    procedure ExitBtnClicked(Sender: TObject);
  end;

  TSimpleForm = class(TForm)
    Button: TButton;
  public
    constructor Create(AOwner: TComponent); override;
  end;

{  TFixedForm = class(TForm)
    Layout: TFixedLayout;
    Button1, Button2: TButton;
  public
    constructor Create(AOwner: TComponent); override;
  end;        }

  TDockingForm = Class(TForm)
    Layout : TDockingLayout;
    Button1,Button2,Button3,Button4,Button5 : TButton;
  public
    constructor Create(AOwner: TComponent); override;
  end;
  

  TGridForm = Class(TForm)
    Layout : TGridLayout;
    Button1,Button2,Button3,Button4,Button5, Button6 : TButton;
  public
    constructor Create(AOwner: TComponent); override;
  end;

  TBoxForm = Class(TForm)
    Layout, BoxLayout: TBoxLayout;
    Button1, Button2, Button3, FlipButton: TButton;
    procedure FlipOrientation(Sender: TObject);
  end;


// -------------------------------------------------------------------
//   TMainForm
// -------------------------------------------------------------------

destructor TMainForm.Destroy;
begin
  GridForm.Free;
  BoxForm.Free;
  DockingForm.Free;
  SimpleForm.Free;
  inherited Destroy;
end;


procedure TMainForm.SimpleBtnClicked(Sender: TObject);
begin
  if not Assigned(SimpleForm) then
    SimpleForm := TSimpleForm.Create(self);
  SimpleForm.Show;
end;


procedure TMainForm.FixedBtnClicked(Sender: TObject);
begin
//  Application.AddForm(TFixedForm.Create(Application));
end;


procedure TMainForm.DockingBtnClicked(Sender: TObject);
begin
  Exit; //==>
  
{  if not Assigned(DockingForm) then
    DockingForm := TDockingForm.Create(self);
  DockingForm.Show;
}
  Application.AddForm(TDockingForm.Create(self));
end;


procedure TMainForm.GridBtnClicked(Sender: TObject);
var
  f, f2: TStream;
begin
  if not Assigned(GridForm) then
    GridForm := TGridForm.Create(self);
  GridForm.Show;
  { Output the structure of GridForm.Layout }
  f := TMemoryStream.Create;
  f.WriteComponent(GridForm.Layout);
  f2 := THandleStream.Create(StdOutputHandle);
  f.Position := 0;
  ObjectBinaryToText(f, f2);
  f2.Free;
  f.Free;
end;


procedure TMainForm.BoxBtnClicked(Sender: TObject);
begin
  if not Assigned(BoxForm) then
    Application.CreateForm(TBoxForm, BoxForm);
  BoxForm.Show;
end;


procedure TMainForm.ExitBtnClicked(Sender: TObject);
begin
  Close;
end;


// -------------------------------------------------------------------
//   TSimpleForm
// -------------------------------------------------------------------

constructor TSimpleForm.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);

  Text := 'Simple Layout';
  BorderWidth := 8;

  Button := TButton.Create(Self);
    Button.Text := 'A button...';
  Child := Button;
end;


// -------------------------------------------------------------------
//   TFixedForm
// -------------------------------------------------------------------
{
constructor TFixedForm.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);

  Text := 'Fixed Layout';
  BorderWidth := 8;

  Layout := TFixedLayout.Create(Self);
    Layout.Name := 'Layout';
    Button1 := TButton.Create(Self);
      Button1.Name := 'Button1';
      Button1.Text := 'A button';
    Layout.AddControl(Button1, 20, 20);
    Button2 := TButton.Create(Self);
      Button2.Name := 'Button2';
      Button2.Text := 'Another button';
    Layout.AddControl(Button2, 50, 100);
  Child := Layout;
end;

}
// -------------------------------------------------------------------
//   TDockingForm
// -------------------------------------------------------------------


constructor TDockingForm.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);

  Text := 'Docking Layout';
  BorderWidth := 8;

  Layout := TDockingLayout.Create(Self);
    Layout.Name := 'Layout';
    Button1 := TButton.Create(Self);
      Button1.Name := 'BTop';
      Button1.Text := 'Top Alignment';
    Layout.AddWidget(Button1, dmTop);
    Button2 := TButton.Create(Self);
      Button2.Name := 'BBottom';
      Button2.Text := 'Bottom Alignment';
    Layout.AddWidget(Button2, dmBottom);
    Button3 := TButton.Create(Self);
      Button3.Name := 'BLeft';
      Button3.Text := 'Left Alignment';
    Layout.AddWidget(Button3, dmLeft);
    Button4 := TButton.Create(Self);
      Button4.Name := 'BRight';
      Button4.Text := 'Right Alignment';
    Layout.AddWidget(Button4, dmRight);
    Button5 := TButton.Create(Self);
      Button5.Name := 'BCLient';
      Button5.Text := 'Client Alignment';
    Layout.AddWidget(Button5, dmClient);
  Child := Layout;
end;


// -------------------------------------------------------------------
//   TGridForm
// -------------------------------------------------------------------

constructor TGridForm.Create(AOwner: TComponent);
begin
  inherited Create(AOwner);

  Text := 'Grid Layout';
  BorderWidth := 8;

  Layout := TGridLayout.Create(Self);
    Layout.Name := 'Layout';
    Layout.RowCount := 4;
    Layout.ColCount := 3;

    Button1 := TButton.Create(Self);
      Button1.Name := 'TopLeft';
      Button1.Text := 'Top Left';
    Layout.AddWidget(Button1, 0, 0, 1, 1);
    Button2 := TButton.Create(Self);
      Button2.Name := 'TopRight';
      Button2.Text := 'Top Right';
    Layout.AddWidget(Button2, 2,0,1,1);
    Button3 := TButton.Create(Self);
      Button3.Name := 'CenterCenter';
      Button3.Text := 'Center Center';
      // Button3.CanExpandWidth := False;
      // Button3.CanExpandHeight := False;
    Layout.AddWidget(Button3, 1,1,1,1);
    Button4 := TButton.Create(Self);
      Button4.Name := 'BottomLeft';
      Button4.Text := 'Bottom Left';
    Layout.AddWidget(Button4,0,2,1,1);
    Button5 := TButton.Create(Self);
      Button5.Name := 'BottomRight';
      Button5.Text := 'Bottom Right';
    Layout.AddWidget(Button5, 2,2,1,1);
    Button6 := TButton.Create(Self);
      Button6.Name := 'BottomSpan';
      Button6.Text := 'Span Columns';
    Layout.AddWidget(Button6, 0,3,3,1);
  Child := Layout;
end;


// -------------------------------------------------------------------
//   TBoxForm
// -------------------------------------------------------------------

procedure TBoxForm.FlipOrientation (Sender : TObject);
begin
  with BoxLayout do
    if Orientation = Horizontal then
    begin
      Orientation := Vertical;
      FlipButton.Text:='Switch to horizontal';
    end
    else
    begin
      Orientation := Horizontal;
      FlipButton.text:='Switch to vertical';
    end;
end;


var
  MainForm: TMainForm;
begin
  MainForm := nil;
  Application.CreateForm(TMainForm, MainForm);
  Application.Run;
  MainForm.Free;
end.