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
|
program splitter_test;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
SysUtils, Classes, fpg_base, fpg_main,
fpg_form, fpg_memo, fpg_listbox,
fpg_panel, fpg_progressbar, fpg_splitter, fpg_checkbox;
type
{ TfrmSplitterTest }
TfrmSplitterTest = class(TfpgForm)
private
procedure CheckBoxChanged(Sender: TObject);
public
{@VFD_HEAD_BEGIN: frmSplitterTest}
lstChoice: TfpgListBox;
spl1: TfpgSplitter;
mmSource: TfpgMemo;
spl2: TfpgSplitter;
mmDest: TfpgMemo;
pnlName1: TfpgPanel;
spl3: TfpgSplitter;
pbName1: TfpgProgressBar;
spl4: TfpgSplitter;
cbShowGrabBar: TfpgCheckBox;
{@VFD_HEAD_END: frmSplitterTest}
procedure AfterCreate; override;
end;
{@VFD_NEWFORM_DECL}
{@VFD_NEWFORM_IMPL}
procedure TfrmSplitterTest.CheckBoxChanged(Sender: TObject);
begin
//
end;
procedure TfrmSplitterTest.AfterCreate;
begin
{@VFD_BODY_BEGIN: frmSplitterTest}
Name := 'frmSplitterTest';
SetPosition(292, 184, 553, 290);
WindowTitle := 'Splitter Demo';
lstChoice := TfpgListBox.Create(self);
with lstChoice do
begin
Name := 'lstChoice';
SetPosition(-1, 0, 160, 211);
FontDesc := '#List';
Items.Add('List item #1');
Items.Add('List item #2');
TabOrder := 3;
Align := alLeft;
end;
spl1 := TfpgSplitter.Create(self);
with spl1 do
begin
Name := 'spl1';
SetPosition(159, 0, 8, 212);
Align := alLeft;
end;
mmSource := TfpgMemo.Create(self);
with mmSource do
begin
Name := 'mmSource';
SetPosition(164, 0, 257, 90);
Lines.Add('Memo has a MinHeight=30 so the splitter');
Lines.Add('snap effect will not take affect - as expected.');
FontDesc := '#Edit1';
TabOrder := 2;
Align := alTop;
end;
spl2 := TfpgSplitter.Create(self);
with spl2 do
begin
Name := 'spl2';
SetPosition(164, 90, 257, 8);
Align := alTop;
end;
pnlName1 := TfpgPanel.Create(self);
with pnlName1 do
begin
Name := 'pnlName1';
SetPosition(425, 0, 128, 208);
Text := 'Panel';
Align := alRight;
end;
cbShowGrabBar := TfpgCheckBox.Create(pnlName1);
with cbShowGrabBar do
begin
Name := 'cbShowGrabBar';
SetPosition(4, 4, 120, 23);
Text := 'Show GrabBar';
Checked := True;
OnChange :=@CheckBoxChanged;
end;
spl3 := TfpgSplitter.Create(self);
with spl3 do
begin
Name := 'spl3';
SetPosition(422, 0, 8, 208);
Align := alRight;
end;
pbName1 := TfpgProgressBar.Create(self);
with pbName1 do
begin
Name := 'pbName1';
SetPosition(0, 213, 554, 78);
Position := 100;
Align := alBottom;
end;
spl4 := TfpgSplitter.Create(self);
with spl4 do
begin
Name := 'spl4';
SetPosition(0, 211, 554, 8);
Align := alBottom;
end;
mmDest := TfpgMemo.Create(self);
with mmDest do
begin
Name := 'mmDest';
SetPosition(165, 94, 100, 100);
Lines.Add('Memo2 Line #1');
Lines.Add('Memo2 Line #2');
FontDesc := '#Edit1';
TabOrder := 1;
Align := alClient;
end;
{@VFD_BODY_END: frmSplitterTest}
end;
procedure MainProc;
var
frmSplitterTest: TfrmSplitterTest;
begin
fpgApplication.Initialize;
frmSplitterTest := TfrmSplitterTest.Create(nil);
try
frmSplitterTest.Show;
fpgApplication.Run;
finally
frmSplitterTest.Free;
end;
end;
begin
MainProc;
end.
|