Skip to content

Commit 0f983da

Browse files
author
César Cardoso
committed
bk/2023-10-17-0330
1 parent 26fb82c commit 0f983da

File tree

8 files changed

+109
-1483
lines changed

8 files changed

+109
-1483
lines changed

Package/C4DWizard.dpk

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ contains
129129
C4D.Wizard.IDE.ShortCut.KeyboardBinding in '..\Src\IDE\ShortCut\C4D.Wizard.IDE.ShortCut.KeyboardBinding.pas',
130130
C4D.Wizard.UsesOrganization.ListOfUses in '..\Src\UsesOrganization\C4D.Wizard.UsesOrganization.ListOfUses.pas',
131131
C4D.Wizard.FormatSource.View in '..\Src\FormatSource\C4D.Wizard.FormatSource.View.pas' {C4DWizardFormatSourceView},
132-
C4D.Wizard.Notes.View in '..\Src\Notes\C4D.Wizard.Notes.View.pas' {C4DWizardNotesView},
133-
Teste in '..\Src\Teste.pas' {Form1};
132+
C4D.Wizard.Notes.View in '..\Src\Notes\C4D.Wizard.Notes.View.pas' {C4DWizardNotesView};
134133

135134
end.

Package/C4DWizard.dproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -289,10 +289,6 @@
289289
<Form>C4DWizardNotesView</Form>
290290
<FormType>dfm</FormType>
291291
</DCCReference>
292-
<DCCReference Include="..\Src\Teste.pas">
293-
<Form>Form1</Form>
294-
<FormType>dfm</FormType>
295-
</DCCReference>
296292
<RcItem Include="Img\C4D_Logo.bmp">
297293
<ResourceType>BITMAP</ResourceType>
298294
<ResourceId>C4D_Logo</ResourceId>

Src/C4D.Wizard.Register.pas

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ interface
1919
C4D.Wizard.IDE.EditServicesNotifier,
2020
C4D.Wizard.IDE.CompileNotifier,
2121
C4D.Wizard.IDE.ShortCut.KeyboardBinding,
22-
C4D.Wizard.Notes.View,
23-
Teste;
22+
C4D.Wizard.Notes.View;
2423

2524
{$IFDEF C4D_WIZARD_DLL}
2625
function RegisterDLL(const BorlandIDEServices: IBorlandIDEServices;
@@ -43,7 +42,6 @@ procedure RegistrarAll;
4342
C4D.Wizard.IDE.EditServicesNotifier.RegisterSelf;
4443
C4D.Wizard.IDE.CompileNotifier.RegisterSelf;
4544
C4D.Wizard.Notes.View.RegisterSelf;
46-
Teste.RegisterSelf;
4745
end;
4846

4947
{$IFDEF C4D_WIZARD_DLL}

Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.Clicks.pas

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ implementation
5252
C4D.Wizard.View.About,
5353
C4D.Wizard.DefaultFilesInOpeningProject,
5454
C4D.Wizard.FormatSource.View,
55-
C4D.Wizard.Notes.View,
56-
Teste;
55+
C4D.Wizard.Notes.View;
5756

5857
class procedure TC4DWizardIDEMainMenuClicks.UsesOrganizationClick(Sender: TObject);
5958
var
@@ -130,8 +129,6 @@ class procedure TC4DWizardIDEMainMenuClicks.ReplaceClick(Sender: TObject);
130129

131130
class procedure TC4DWizardIDEMainMenuClicks.NotesClick(Sender: TObject);
132131
begin
133-
Teste.C4DWizardReopenViewShowDockableForm;
134-
135132
C4D.Wizard.Notes.View.C4DWizardNotesViewShowDockableForm;
136133
end;
137134

Src/Notes/C4D.Wizard.Notes.View.dfm

Lines changed: 55 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
object C4DWizardNotesView: TC4DWizardNotesView
22
Left = 0
33
Top = 0
4-
BorderIcons = [biSystemMenu, biMaximize]
5-
Caption = 'Notes'
4+
Caption = 'C4DWizardNotesView'
65
ClientHeight = 521
7-
ClientWidth = 884
6+
ClientWidth = 874
87
Color = clBtnFace
98
Font.Charset = DEFAULT_CHARSET
109
Font.Color = clWindowText
@@ -14,30 +13,65 @@ object C4DWizardNotesView: TC4DWizardNotesView
1413
KeyPreview = True
1514
OldCreateOrder = False
1615
Position = poScreenCenter
17-
OnCreate = FormCreate
1816
OnHide = FormHide
1917
OnShow = FormShow
2018
PixelsPerInch = 96
2119
TextHeight = 13
22-
object Bevel1: TBevel
23-
AlignWithMargins = True
20+
object pnBack: TPanel
2421
Left = 0
25-
Top = 492
26-
Width = 884
27-
Height = 3
28-
Margins.Left = 0
29-
Margins.Top = 1
30-
Margins.Right = 0
31-
Margins.Bottom = 0
32-
Align = alBottom
33-
Shape = bsBottomLine
34-
ExplicitTop = 480
35-
ExplicitWidth = 705
22+
Top = 0
23+
Width = 874
24+
Height = 495
25+
Align = alClient
26+
BevelOuter = bvNone
27+
Padding.Top = 2
28+
ParentBackground = False
29+
TabOrder = 0
30+
ExplicitWidth = 812
31+
ExplicitHeight = 513
32+
object Bevel1: TBevel
33+
AlignWithMargins = True
34+
Left = 0
35+
Top = 492
36+
Width = 874
37+
Height = 3
38+
Margins.Left = 0
39+
Margins.Top = 1
40+
Margins.Right = 0
41+
Margins.Bottom = 0
42+
Align = alBottom
43+
Shape = bsBottomLine
44+
ExplicitTop = 480
45+
ExplicitWidth = 705
46+
end
47+
object RichEdit: TRichEdit
48+
Left = 0
49+
Top = 2
50+
Width = 874
51+
Height = 489
52+
Align = alClient
53+
BevelInner = bvNone
54+
BevelOuter = bvNone
55+
BorderStyle = bsNone
56+
Font.Charset = ANSI_CHARSET
57+
Font.Color = clBlack
58+
Font.Height = -12
59+
Font.Name = 'Tahoma'
60+
Font.Style = []
61+
ParentColor = True
62+
ParentFont = False
63+
PopupMenu = PopupMenu1
64+
ScrollBars = ssVertical
65+
TabOrder = 0
66+
Zoom = 100
67+
ExplicitWidth = 812
68+
ExplicitHeight = 507
69+
end
3670
end
3771
object pnTop: TPanel
3872
Left = 0
3973
Top = 495
40-
Width = 884
74+
Width = 874
4175
Height = 26
4276
Margins.Left = 0
4377
Margins.Top = 0
@@ -50,7 +84,9 @@ object C4DWizardNotesView: TC4DWizardNotesView
5084
Padding.Top = 2
5185
Padding.Right = 2
5286
Padding.Bottom = 2
53-
TabOrder = 0
87+
TabOrder = 1
88+
ExplicitTop = 513
89+
ExplicitWidth = 812
5490
object Bevel2: TBevel
5591
AlignWithMargins = True
5692
Left = 277
@@ -353,38 +389,6 @@ object C4DWizardNotesView: TC4DWizardNotesView
353389
OnClick = btnStrikethroughClick
354390
end
355391
end
356-
object pnBack: TPanel
357-
Left = 0
358-
Top = 0
359-
Width = 884
360-
Height = 491
361-
Align = alClient
362-
BevelOuter = bvNone
363-
Padding.Top = 2
364-
ParentBackground = False
365-
TabOrder = 1
366-
object RichEdit: TRichEdit
367-
Left = 0
368-
Top = 2
369-
Width = 884
370-
Height = 489
371-
Align = alClient
372-
BevelInner = bvNone
373-
BevelOuter = bvNone
374-
BorderStyle = bsNone
375-
Font.Charset = ANSI_CHARSET
376-
Font.Color = clBlack
377-
Font.Height = -12
378-
Font.Name = 'Tahoma'
379-
Font.Style = []
380-
ParentColor = True
381-
ParentFont = False
382-
PopupMenu = PopupMenu1
383-
ScrollBars = ssVertical
384-
TabOrder = 0
385-
Zoom = 100
386-
end
387-
end
388392
object ImageList1: TImageList
389393
Left = 200
390394
Top = 96

0 commit comments

Comments
 (0)