-
Notifications
You must be signed in to change notification settings - Fork 10
/
DW.DESIGN.FormWizard.pas
413 lines (351 loc) · 10.2 KB
/
DW.DESIGN.FormWizard.pas
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
unit DW.DESIGN.FormWizard;
interface
uses Classes, Winapi.Windows, Vcl.Dialogs, DesignIntf, ToolsAPI, TypInfo;
type
TDWFormWizard = class(TInterfacedObject, IOTAWizard, IOTANotifier, IOTARepositoryWizard,
IOTAProjectWizard)
public
// IOTANotifier
procedure AfterSave;
procedure BeforeSave;
procedure Destroyed;
procedure Modified;
// IOTAWizard
function GetIDString: string;
function GetName: string;
function GetState: TWizardState;
procedure Execute;
// IOTARepositoryWizard
function GetAuthor: string;
function GetComment: string;
function GetPage: string;
function GetGlyph: Cardinal;
end;
TDWFormModuleCreator = class(TInterfacedObject, IOTACreator, IOTAModuleCreator)
private
FOwner: IOTAModule;
FHaveNames: Boolean;
FImplFileName: string;
FFormName: string;
FIsMainForm: Boolean;
procedure GetNewModuleAndClassName(out AFormName, AImplFileName: string);
function GetModuleAndClassNamePrefix: String;
public
constructor Create(AOwner: IOTAModule; IsMainForm: Boolean); overload;
constructor Create(AOwner: IOTAModule); overload;
constructor Create; overload;
// IOTACreator
function GetCreatorType: string;
function GetExisting: Boolean;
function GetFileSystem: string;
function GetOwner: IOTAModule;
function GetUnnamed: Boolean;
// IOTAModuleCreator
function GetAncestorName: string;
function GetImplFileName: string;
function GetIntfFileName: string;
function GetFormName: string;
function GetMainForm: Boolean;
function GetShowForm: Boolean;
function GetShowSource: Boolean;
function NewFormFile(const FormIdent, AncestorIdent: string): IOTAFile;
function NewImplSource(const ModuleIdent, FormIdent, AncestorIdent: string): IOTAFile;
function NewIntfSource(const ModuleIdent, FormIdent, AncestorIdent: string): IOTAFile;
procedure FormCreated(const FormEditor: IOTAFormEditor);
end;
TDWFormModuleSource = class(TInterfacedObject, IOTAFile)
private
FModuleIdent: string;
FFormIdent: string;
FAncestorIdent: string;
FDefaultForm: Boolean;
public
constructor Create(const ModuleIdent, FormIdent, AncestorIdent: string; AsDefaultForm: Boolean);
// IOTAFile
function GetSource: string;
function GetAge: TDateTime;
end;
const
CrLf2 = #13#10#13#10;
CrLf = #13#10;
implementation
uses
SysUtils, System.Win.ComObj, DWForm, DW.Vcl.Labels;
procedure DebugMsg(const Msg: String);
begin
// ShowMessage(Msg);
end;
procedure TDWFormWizard.AfterSave;
begin
DebugMsg('AfterSave');
end;
procedure TDWFormWizard.BeforeSave;
begin
DebugMsg('BeforeSave');
end;
procedure TDWFormWizard.Destroyed;
begin
DebugMsg('TDWFormModuleCreator.Destroyed');
end;
function GetActiveProjectGroup(const ModuleServices: IOTAModuleServices): IOTAProjectGroup;
var
I: Integer;
begin
Result := nil;
for I := 0 to ModuleServices.ModuleCount - 1 do
if Supports(ModuleServices.Modules[I], IOTAProjectGroup, Result) then
Break;
end;
procedure TDWFormWizard.Execute;
var
ModuleServices: IOTAModuleServices;
ProjectGroup: IOTAProjectGroup;
begin
DebugMsg('TDWFormWizard.Execute');
ModuleServices := BorlandIDEServices as IOTAModuleServices;
ModuleServices.CreateModule(TDWFormModuleCreator.Create);
end;
constructor TDWFormModuleCreator.Create(AOwner: IOTAModule);
begin
Create(AOwner, False);
end;
constructor TDWFormModuleCreator.Create;
begin
Create(nil, False);
end;
constructor TDWFormModuleCreator.Create(AOwner: IOTAModule; IsMainForm: Boolean);
begin
inherited Create;
FOwner := AOwner;
FIsMainForm := IsMainForm;
end;
procedure TDWFormModuleCreator.FormCreated(const FormEditor: IOTAFormEditor);
var
Form: IOTAComponent;
PropInfo: PPropInfo;
TypeInfo: PTypeInfo;
NativeFormEditor: INTAFormEditor;
aHelloWorld: TDWLabel;
begin
DebugMsg('FormCreated');
if FIsMainForm then
begin
Form := FormEditor.GetRootComponent;
// Add OnShow Event
if Supports(FormEditor, INTAFormEditor, NativeFormEditor) then
begin
if NativeFormEditor.FormDesigner <> nil then
begin
aHelloWorld := TDWLabel(NativeFormEditor.FormDesigner.CreateComponent(TDWLabel,
NativeFormEditor.FormDesigner.GetRoot, 0, 0, 0, 0));
aHelloWorld.RawText := True;
aHelloWorld.Caption := 'Hello World<br>DelphiWeb';
end;
end;
end;
(*
var
aHelloWorld : IOTAComponent;
begin
DebugMsg('FormCreated');
if FIsMainForm then
begin
with FormEditor.CreateComponent(FormEditor.GetRootComponent, 'TDWLabel', 0, 0, 200, 50) do
begin
SetPropByName('Caption', 'Hello World<br>DelphiWeb');
end;
end; *)
end;
function TDWFormModuleCreator.GetAncestorName: string;
begin
Result := 'DWForm';
DebugMsg('GetAncestorName: ' + Result);
end;
function TDWFormWizard.GetAuthor: string;
begin
Result := 'Delcio Sbeghen SRP Sistemas';
DebugMsg('GetAuthor: ' + Result);
end;
function TDWFormWizard.GetComment: string;
begin
Result := 'Creates a new DWForm.';
DebugMsg('GetComment: ' + Result);
end;
function TDWFormModuleCreator.GetCreatorType: string;
begin
Result := sForm;
DebugMsg('GetCreatorType');
end;
function TDWFormModuleCreator.GetExisting: Boolean;
begin
Result := False;
DebugMsg('GetExisting');
end;
function TDWFormModuleCreator.GetFileSystem: string;
begin
Result := '';
DebugMsg('GetFileSystem: ' + Result);
end;
function TDWFormModuleCreator.GetFormName: string;
var
LImplFileName: string;
begin
if FIsMainForm then
begin
Result := 'WebMainForm';
end
else
GetNewModuleAndClassName(Result, LImplFileName);
end;
procedure TDWFormModuleCreator.GetNewModuleAndClassName(out AFormName: string;
out AImplFileName: string);
var
LUnitIdent: string;
LClassName: string;
LFileName: string;
begin
if not FHaveNames then
begin
FHaveNames := True;
LClassName := GetModuleAndClassNamePrefix;
if LClassName <> '' then
begin
(BorlandIDEServices as IOTAModuleServices).GetNewModuleAndClassName(LClassName + 'Unit',
// Do not localize
LUnitIdent, LClassName, LFileName);
FImplFileName := LFileName;
FFormName := LClassName;
end;
end;
AFormName := FFormName;
AImplFileName := FImplFileName;
end;
// define a form and unitname prefix
function TDWFormModuleCreator.GetModuleAndClassNamePrefix: String;
begin
Result := '';
end;
function TDWFormWizard.GetGlyph: Cardinal;
begin
Result := 0;
end;
function TDWFormWizard.GetIDString: string;
begin
Result := 'DW.DWForm';
end;
function TDWFormModuleCreator.GetImplFileName: string;
begin
if FIsMainForm then
Result := GetCurrentDir + '\uWebMainForm.pas'
else
Result := '';
end;
function TDWFormModuleCreator.GetIntfFileName: string;
begin
Result := '';
end;
function TDWFormModuleCreator.GetMainForm: Boolean;
begin
Result := False;
end;
function TDWFormWizard.GetName: string;
begin
Result := 'DelphiWeb Form';
end;
function TDWFormModuleCreator.GetOwner: IOTAModule;
begin
if FOwner <> nil then
Result := FOwner
else
Result := GetActiveProject;
end;
function TDWFormWizard.GetPage: string;
begin
Result := 'Delphi Web';
DebugMsg('GetPage: ' + Result);
end;
function TDWFormModuleCreator.GetShowForm: Boolean;
begin
Result := True;
DebugMsg('GetShowForm');
end;
function TDWFormModuleCreator.GetShowSource: Boolean;
begin
Result := True;
DebugMsg('GetShowSource');
end;
function TDWFormWizard.GetState: TWizardState;
begin
Result := [];
DebugMsg('GetState');
end;
function TDWFormModuleCreator.GetUnnamed: Boolean;
begin
Result := True;
DebugMsg('GetUnnamed');
end;
procedure TDWFormWizard.Modified;
begin
DebugMsg('Modified');
end;
function TDWFormModuleCreator.NewFormFile(const FormIdent, AncestorIdent: string): IOTAFile;
begin
Result := nil;
DebugMsg('NewFormFile');
end;
function TDWFormModuleCreator.NewImplSource(const ModuleIdent, FormIdent, AncestorIdent: string)
: IOTAFile;
begin
Result := TDWFormModuleSource.Create(ModuleIdent, FormIdent, AncestorIdent, FIsMainForm);
DebugMsg('NewImplSource');
end;
function TDWFormModuleCreator.NewIntfSource(const ModuleIdent, FormIdent, AncestorIdent: string)
: IOTAFile;
begin
Result := nil;
DebugMsg('NewIntfSource');
end;
constructor TDWFormModuleSource.Create(Const ModuleIdent, FormIdent, AncestorIdent: string;
AsDefaultForm: Boolean);
begin
inherited Create;
FModuleIdent := ModuleIdent;
FFormIdent := FormIdent; // Copy(FormIdent, 2, MaxInt);
FAncestorIdent := AncestorIdent; // Copy(AncestorIdent, 2,MaxInt);
FDefaultForm := AsDefaultForm;
DebugMsg('TDWFormModuleSource.Create: ' + FModuleIdent + ' ,' + FFormIdent + ' ,' +
FAncestorIdent);
end;
function TDWFormModuleSource.GetAge: TDateTime;
begin
Result := -1;
DebugMsg('GetAge: ' + DateToStr(Result));
end;
function TDWFormModuleSource.GetSource: string;
const
cHeader = '{ DelphiWeb is an VCL internet Framework for Delphi' + CrLf +
'| https://github.com/DrHank/DelphiWeb' + CrLf + '| Developped by Delcio Sbeghen @SRP Sistemas'
+ CrLf + '| Under MIT Licence: https://opensource.org/licenses/MIT' + CrLf + '|' + CrLf +
'| Credits:' + CrLf + '| * The Server Core is based in OverByte ICS: http://www.overbyte.be/'
+ CrLf + '| * The Json Library is based in JsonDataObjects: https://github.com/ahausladen/JsonDataObjects'
+ CrLf + '|and changes by IWBootstrap Framework' + CrLf +
'| * The DW VCL is based on Bootstrap Framework: https://github.com/kattunga/IWBootstrapFramework'
+ CrLf + '}' + CrLf2;
const
cSource = 'unit %0:s;' + CrLf2 +
'interface' + CrLf2 +
'uses' + CrLf + ' DWForm;' + CrLf +
'type' + CrLf +
' T%1:s = class(T%2:s)' + CrLf + ' private' + CrLf + ' { private declarations }' + CrLf +
' public' + CrLf + ' { public declarations }' + CrLf + ' end;' + CrLf2 +
'{ !!! Do Not Declare Global Variables !!! }' + CrLf2 +
'implementation' + CrLf2 +
'{$R *.dfm}' + CrLf2 +
'end.';
begin
if FDefaultForm then
Result := Format(cHeader + cSource, [FModuleIdent, FFormIdent, FAncestorIdent])
else
Result := Format(cSource, [FModuleIdent, FFormIdent, FAncestorIdent]);
end;
end.