-
Notifications
You must be signed in to change notification settings - Fork 2
/
OTA.IDE.Wizard.pas
658 lines (551 loc) · 15.3 KB
/
OTA.IDE.Wizard.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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
unit OTA.IDE.Wizard deprecated;
interface
procedure Register;
implementation
uses
Winapi.Windows, System.Classes, System.SysUtils, Vcl.Dialogs, Vcl.Forms,
DesignEditors, DesignIntf, ToolsApi;
type
TResourceDataModule = class(TDataModule);
TResourceDataModuleCreatorWizard = class(TNotifierObject, IOTAWizard,
IOTARepositoryWizard, IOTAFormWizard)
public
// 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;
TResourceDataModuleCreator = class(TInterfacedObject, IOTACreator,
IOTAModuleCreator)
public
// 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;
TResourceDataModuleSourceFile = class(TInterfacedObject, IOTAFile)
private
FSource: string;
public
function GetSource: string;
function GetAge: TDateTime;
constructor Create(const Source: string);
end;
TResourceForm = class(TForm);
TResourceFormCreator = class(TInterfacedObject, IOTACreator, IOTAModuleCreator)
public
// 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;
TResourceFormCreatorWizard = class(TNotifierObject, IOTAWizard,
IOTARepositoryWizard, IOTAFormWizard)
public
// 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;
TResourceFormSourceFile = class(TInterfacedObject, IOTAFile)
private
FSource: string;
public
function GetSource: string;
function GetAge: TDateTime;
constructor Create(const Source: string);
end;
TResourceFrame = class(TFrame);
TFrameCustomModule = class(TCustomModule)
public
function Nestable: Boolean; override;
end;
TResourceFrameCreator = class(TInterfacedObject, IOTACreator, IOTAModuleCreator)
public
// 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;
TResourceFrameCreatorWizard = class(TNotifierObject, IOTAWizard,
IOTARepositoryWizard, IOTAFormWizard)
public
// 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;
TResourceFrameSourceFile = class(TInterfacedObject, IOTAFile)
private
FSource: string;
public
function GetSource: string;
function GetAge: TDateTime;
constructor Create(const Source: string);
end;
procedure Register;
begin
RegisterCustomModule(TResourceForm, TCustomModule);
RegisterPackageWizard(TResourceFormCreatorWizard.Create);
// RegisterCustomModule(TResourceFrame, TFrameCustomModule);
// RegisterPackageWizard(TResourceFrameCreatorWizard.Create);
RegisterCustomModule(TResourceDataModule, TCustomModule);
RegisterPackageWizard(TResourceDataModuleCreatorWizard.Create);
end;
procedure TResourceDataModuleCreatorWizard.Execute;
begin
(BorlandIDEServices as IOTAModuleServices).CreateModule(TResourceDataModuleCreator.Create);
end;
function TResourceDataModuleCreatorWizard.GetAuthor: string;
begin
Result := 'E.Stream.Software';
end;
function TResourceDataModuleCreatorWizard.GetComment: string;
begin
Result := 'EStream Resource Data Module Creator';
end;
function TResourceDataModuleCreatorWizard.GetGlyph: Cardinal;
begin
Result := 0;
end;
function TResourceDataModuleCreatorWizard.GetIDString: string;
begin
Result := 'E.Stream.ResourceDataModuleCreatorWizard';
end;
function TResourceDataModuleCreatorWizard.GetName: string;
begin
Result := 'E Stream Resource DataModule';
end;
function TResourceDataModuleCreatorWizard.GetPage: string;
begin
Result := 'New';
end;
function TResourceDataModuleCreatorWizard.GetState: TWizardState;
begin
Result := [wsEnabled];
end;
procedure TResourceDataModuleCreator.FormCreated(const FormEditor: IOTAFormEditor);
begin
// Nothing
end;
function TResourceDataModuleCreator.GetAncestorName: string;
begin
Result := 'ResourceDataModule';
end;
function TResourceDataModuleCreator.GetCreatorType: string;
begin
// Return sUnit or sText as appropriate
Result := sForm;
end;
function TResourceDataModuleCreator.GetExisting: Boolean;
begin
Result := False;
end;
function TResourceDataModuleCreator.GetFileSystem: string;
begin
Result := '';
end;
function TResourceDataModuleCreator.GetFormName: string;
begin
Result := '';
end;
function TResourceDataModuleCreator.GetImplFileName: string;
begin
Result := '';
end;
function TResourceDataModuleCreator.GetIntfFileName: string;
begin
Result := '';
end;
function TResourceDataModuleCreator.GetMainForm: Boolean;
begin
Result := False;
end;
function TResourceDataModuleCreator.GetOwner: IOTAModule;
var
ModuleServices: IOTAModuleServices;
Module: IOTAModule;
NewModule: IOTAModule;
begin
// You may prefer to return the project group's ActiveProject instead
Result := nil;
ModuleServices := (BorlandIDEServices as IOTAModuleServices);
Module := ModuleServices.CurrentModule;
if Module <> nil then
begin
if Module.QueryInterface(IOTAProject, NewModule) = S_OK then
Result := NewModule
else if Module.OwnerModuleCount > 0 then
begin
NewModule := Module.OwnerModules[0];
if NewModule <> nil then
if NewModule.QueryInterface(IOTAProject, Result) <> S_OK then
Result := nil;
end;
end;
end;
function TResourceDataModuleCreator.GetShowForm: Boolean;
begin
Result := True;
end;
function TResourceDataModuleCreator.GetShowSource: Boolean;
begin
Result := True;
end;
function TResourceDataModuleCreator.GetUnnamed: Boolean;
begin
Result := True;
end;
function TResourceDataModuleCreator.NewFormFile(const FormIdent, AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
function TResourceDataModuleCreator.NewImplSource(const ModuleIdent, FormIdent, AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
function TResourceDataModuleCreator.NewIntfSource(const ModuleIdent, FormIdent, AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
constructor TResourceDataModuleSourceFile.Create(const Source: string);
begin
FSource := Source;
end;
function TResourceDataModuleSourceFile.GetAge: TDateTime;
begin
Result := -1;
end;
function TResourceDataModuleSourceFile.GetSource: string;
begin
Result := FSource;
end;
procedure TResourceFormCreator.FormCreated(const FormEditor:
IOTAFormEditor);
begin
// Nothing
end;
function TResourceFormCreator.GetAncestorName: string;
begin
Result := 'ResourceForm';
end;
function TResourceFormCreator.GetCreatorType: string;
begin
// Return sUnit or sText as appropriate
Result := sForm;
end;
function TResourceFormCreator.GetExisting: Boolean;
begin
Result := False;
end;
function TResourceFormCreator.GetFileSystem: string;
begin
Result := '';
end;
function TResourceFormCreator.GetFormName: string;
begin
Result := '';
end;
function TResourceFormCreator.GetImplFileName: string;
begin
Result := '';
end;
function TResourceFormCreator.GetIntfFileName: string;
begin
Result := '';
end;
function TResourceFormCreator.GetMainForm: Boolean;
begin
Result := False;
end;
function TResourceFormCreator.GetOwner: IOTAModule;
var
ModuleServices: IOTAModuleServices;
Module: IOTAModule;
NewModule: IOTAModule;
begin
// You may prefer to return the project group's ActiveProject instead
Result := nil;
ModuleServices := (BorlandIDEServices as IOTAModuleServices);
Module := ModuleServices.CurrentModule;
if Module <> nil then
begin
if Module.QueryInterface(IOTAProject, NewModule) = S_OK then
Result := NewModule
else if Module.OwnerModuleCount > 0 then
begin
NewModule := Module.OwnerModules[0];
if NewModule <> nil then
if NewModule.QueryInterface(IOTAProject, Result) <> S_OK then
Result := nil;
end;
end;
end;
function TResourceFormCreator.GetShowForm: Boolean;
begin
Result := True;
end;
function TResourceFormCreator.GetShowSource: Boolean;
begin
Result := True;
end;
function TResourceFormCreator.GetUnnamed: Boolean;
begin
Result := True;
end;
function TResourceFormCreator.NewFormFile(const FormIdent,
AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
function TResourceFormCreator.NewImplSource(const ModuleIdent, FormIdent,
AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
function TResourceFormCreator.NewIntfSource(const ModuleIdent, FormIdent,
AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
procedure TResourceFormCreatorWizard.Execute;
begin
(BorlandIDEServices as IOTAModuleServices).CreateModule(TResourceFormCreator.Create);
end;
function TResourceFormCreatorWizard.GetAuthor: string;
begin
Result := 'E.Stream.Software';
end;
function TResourceFormCreatorWizard.GetComment: string;
begin
Result := 'EStream Resource Form Creator';
end;
function TResourceFormCreatorWizard.GetGlyph: Cardinal;
begin
Result := 0;
end;
function TResourceFormCreatorWizard.GetIDString: string;
begin
Result := 'E.Stream.ResourceFormCreatorWizard';
end;
function TResourceFormCreatorWizard.GetName: string;
begin
Result := 'E Stream Resource Form';
end;
function TResourceFormCreatorWizard.GetPage: string;
begin
Result := 'New';
end;
function TResourceFormCreatorWizard.GetState: TWizardState;
begin
Result := [wsEnabled];
end;
constructor TResourceFormSourceFile.Create(const Source: string);
begin
FSource := Source;
end;
function TResourceFormSourceFile.GetAge: TDateTime;
begin
Result := -1;
end;
function TResourceFormSourceFile.GetSource: string;
begin
Result := FSource;
end;
procedure TResourceFrameCreator.FormCreated(const FormEditor: IOTAFormEditor);
begin
// Nothing
end;
function TResourceFrameCreator.GetAncestorName: string;
begin
Result := 'ResourceFrame';
end;
function TResourceFrameCreator.GetCreatorType: string;
begin
// Return sUnit or sText as appropriate
Result := sForm;
end;
function TResourceFrameCreator.GetExisting: Boolean;
begin
Result := False;
end;
function TResourceFrameCreator.GetFileSystem: string;
begin
Result := '';
end;
function TResourceFrameCreator.GetFormName: string;
begin
Result := '';
end;
function TResourceFrameCreator.GetImplFileName: string;
begin
Result := '';
end;
function TResourceFrameCreator.GetIntfFileName: string;
begin
Result := '';
end;
function TResourceFrameCreator.GetMainForm: Boolean;
begin
Result := False;
end;
function TResourceFrameCreator.GetOwner: IOTAModule;
var
ModuleServices: IOTAModuleServices;
Module: IOTAModule;
NewModule: IOTAModule;
begin
// You may prefer to return the project group's ActiveProject instead
Result := nil;
ModuleServices := (BorlandIDEServices as IOTAModuleServices);
Module := ModuleServices.CurrentModule;
if Module <> nil then
begin
if Module.QueryInterface(IOTAProject, NewModule) = S_OK then
Result := NewModule
else if Module.OwnerModuleCount > 0 then
begin
NewModule := Module.OwnerModules[0];
if NewModule <> nil then
if NewModule.QueryInterface(IOTAProject, Result) <> S_OK then
Result := nil;
end;
end;
end;
function TResourceFrameCreator.GetShowForm: Boolean;
begin
Result := True;
end;
function TResourceFrameCreator.GetShowSource: Boolean;
begin
Result := True;
end;
function TResourceFrameCreator.GetUnnamed: Boolean;
begin
Result := True;
end;
function TResourceFrameCreator.NewFormFile(const FormIdent, AncestorIdent:
string): IOTAFile;
begin
Result := nil;
end;
function TResourceFrameCreator.NewImplSource(const ModuleIdent, FormIdent,
AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
function TResourceFrameCreator.NewIntfSource(const ModuleIdent, FormIdent,
AncestorIdent: string): IOTAFile;
begin
Result := nil;
end;
procedure TResourceFrameCreatorWizard.Execute;
begin
(BorlandIDEServices as IOTAModuleServices).CreateModule(TResourceFrameCreator.Create);
end;
function TResourceFrameCreatorWizard.GetAuthor: string;
begin
Result := 'E.Stream.Software';
end;
function TResourceFrameCreatorWizard.GetComment: string;
begin
Result := 'EStream Resource Frame Creator';
end;
function TResourceFrameCreatorWizard.GetGlyph: Cardinal;
begin
Result := 0;
end;
function TResourceFrameCreatorWizard.GetIDString: string;
begin
Result := 'E.Stream.ResourceFrameCreatorWizard';
end;
function TResourceFrameCreatorWizard.GetName: string;
begin
Result := 'E Stream Resource Frame';
end;
function TResourceFrameCreatorWizard.GetPage: string;
begin
Result := 'New';
end;
function TResourceFrameCreatorWizard.GetState: TWizardState;
begin
Result := [wsEnabled];
end;
constructor TResourceFrameSourceFile.Create(const Source: string);
begin
FSource := Source;
end;
function TResourceFrameSourceFile.GetAge: TDateTime;
begin
Result := -1;
end;
function TResourceFrameSourceFile.GetSource: string;
begin
Result := FSource;
end;
{ TFrameCustomModule }
function TFrameCustomModule.Nestable: Boolean;
begin
Result := True;
end;
end.