forked from integrated-application-development/pasfmt-rad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPasfmt.Main.pas
265 lines (217 loc) · 7.61 KB
/
Pasfmt.Main.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
unit Pasfmt.Main;
interface
procedure Register;
implementation
uses
System.Classes,
ToolsAPI,
System.SysUtils,
Vcl.Menus,
Vcl.ActnList,
Pasfmt.FormatEditor,
Pasfmt.SettingsFrame,
Pasfmt.Settings,
Winapi.Windows,
Vcl.Graphics,
System.JSON,
Pasfmt.Log,
Pasfmt.OnSave,
System.Generics.Collections,
System.IOUtils;
type
TPlugin = class(TObject)
private
FPasfmtMenu: TMenuItem;
FKeyboardBindingIndex: Integer;
FInfoIndex: Integer;
FEditorIndex: Integer;
FAddInOptions: TPasfmtAddInOptions;
FBitmaps: TObjectList<TBitmap>;
function GetPluginVersion: string;
procedure OnFormatKeyPress(const Context: IOTAKeyContext; KeyCode: TShortCut; var BindingResult: TKeyBindingResult);
procedure OnFormatActionExecute(Sender: TObject);
procedure OnSettingsActionExecute(Sender: TObject);
procedure Format;
procedure ConfigureFormatter(var Formatter: TEditBufferFormatter);
public
constructor Create;
destructor Destroy; override;
end;
TPasfmtKeyboardBinding = class(TNotifierObject, IOTAKeyboardBinding)
public
function GetBindingType: TBindingType;
function GetDisplayName: string;
function GetName: string;
procedure BindKeyboard(const BindingServices: IOTAKeyBindingServices);
end;
var
GPlugin: TPlugin;
procedure Register;
begin
GPlugin := TPlugin.Create;
end;
//______________________________________________________________________________________________________________________
constructor TPlugin.Create;
function CreateAction(Name: string; Caption: string; OnExecute: TNotifyEvent): TAction;
begin
Result := TAction.Create(FPasfmtMenu);
Result.Name := Name;
Result.Caption := Caption;
Result.Category := 'Pasfmt';
Result.OnExecute := OnExecute;
(BorlandIDEServices as INTAServices).AddActionMenu('', Result, nil);
end;
function LoadBitmap(ResourceName: string): HBITMAP;
var
Stream: TResourceStream;
Bitmap: TBitmap;
begin
// VCL LoadBitmap does not support 256-color bitmaps
Stream := TResourceStream.Create(HInstance, ResourceName, RT_RCDATA);
try
Bitmap := TBitmap.Create;
FBitmaps.Add(Bitmap);
Bitmap.LoadFromStream(Stream);
Result := Bitmap.Handle;
finally
FreeAndNil(Stream);
end;
end;
var
MenuItem: TMenuItem;
PluginName: string;
begin
FBitmaps := TObjectList<TBitmap>.Create;
FEditorIndex := (BorlandIDEServices as IOTAEditorServices).AddNotifier(OnSaveInstaller);
OnSaveInstaller.ConfigureFormatter := ConfigureFormatter;
FPasfmtMenu := TMenuItem.Create((BorlandIDEServices as INTAServices).MainMenu);
FPasfmtMenu.Caption := '&Pasfmt';
MenuItem := TMenuItem.Create(FPasfmtMenu);
MenuItem.Name := 'PasfmtFormatItem';
MenuItem.Action := CreateAction('PasfmtRunFormat', '&Format', OnFormatActionExecute);
FPasfmtMenu.Add(MenuItem);
MenuItem := TMenuItem.Create(FPasfmtMenu);
MenuItem.Name := 'PasfmtSettingsItem';
MenuItem.Action := CreateAction('PasfmtOpenSettings', '&Settings...', OnSettingsActionExecute);
FPasfmtMenu.Add(MenuItem);
(BorlandIDEServices as INTAServices).AddActionMenu('CustomToolsItem', nil, FPasfmtMenu);
FKeyboardBindingIndex :=
(BorlandIDEServices as IOTAKeyboardServices).AddKeyboardBinding(TPasfmtKeyboardBinding.Create);
FAddInOptions := TPasfmtAddInOptions.Create;
(BorlandIDEServices as INTAEnvironmentOptionsServices).RegisterAddInOptions(FAddInOptions);
PluginName := 'Pasfmt for RAD Studio v' + GetPluginVersion;
FInfoIndex :=
(BorlandIDEServices as IOTAAboutBoxServices)
.AddPluginInfo(
PluginName,
'RAD Studio plugin for pasfmt, the free and open source Delphi code formatter.'
+ #13#10#13#10'Copyright © 2025 Integrated Application Development',
LoadBitmap('LOGO48'));
SplashScreenServices.AddPluginBitmap(PluginName, LoadBitmap('LOGO24'));
end;
//______________________________________________________________________________________________________________________
destructor TPlugin.Destroy;
begin
FinalizeLog;
(BorlandIDEServices as IOTAEditorServices).RemoveNotifier(FEditorIndex);
(BorlandIDEServices as IOTAAboutBoxServices).RemovePluginInfo(FInfoIndex);
(BorlandIDEServices as INTAEnvironmentOptionsServices).UnregisterAddInOptions(FAddInOptions);
(BorlandIDEServices as IOTAKeyboardServices).RemoveKeyboardBinding(FKeyboardBindingIndex);
FreeAndNil(FPasfmtMenu);
FreeAndNil(FBitmaps);
inherited;
end;
//______________________________________________________________________________________________________________________
procedure TPlugin.ConfigureFormatter(var Formatter: TEditBufferFormatter);
var
Project: IOTAProject;
begin
Formatter.Core.Executable := PasfmtSettings.ExecutablePath;
Formatter.Core.Timeout := PasfmtSettings.FormatTimeout;
Formatter.MaxFileKiBWithUndoHistory := PasfmtSettings.MaxFileKiBWithUndoHistory;
Project := (BorlandIDEServices as IOTAModuleServices).GetActiveProject;
if Assigned(Project) then begin
// Ensures pasfmt is reading the config file if present
Formatter.Core.WorkingDirectory := TPath.GetDirectoryName(Project.FileName);
end;
end;
//______________________________________________________________________________________________________________________
procedure TPlugin.Format;
var
TopView: IOTAEditView;
Buffer: IOTAEditBuffer;
Formatter: TEditBufferFormatter;
begin
Formatter := Default(TEditBufferFormatter);
ConfigureFormatter(Formatter);
TopView := (BorlandIDEServices as IOTAEditorServices).TopView;
if not Assigned(TopView) then begin
Log.Debug('Format request ignored: there is no active view to format');
Exit;
end;
Buffer := TopView.Buffer;
if not Assigned(Buffer) then begin
Log.Debug('Format request ignored: the active view has no buffer to format');
Exit;
end;
Formatter.Format(Buffer);
end;
procedure TPlugin.OnFormatActionExecute(Sender: TObject);
begin
Format;
end;
procedure TPlugin.OnSettingsActionExecute(Sender: TObject);
begin
(BorlandIDEServices as IOTAServices).GetEnvironmentOptions.EditOptions('', 'Pasfmt');
end;
procedure TPlugin.OnFormatKeyPress(
const Context: IOTAKeyContext;
KeyCode: TShortCut;
var BindingResult: TKeyBindingResult
);
begin
Format;
end;
//______________________________________________________________________________________________________________________
function TPlugin.GetPluginVersion: string;
var
Stream: TResourceStream;
Obj: TJSONValue;
begin
try
Stream := TResourceStream.Create(HInstance, 'VERSIONJSON', RT_RCDATA);
Obj := nil;
try
Obj := TJSONValue.ParseJSONValue(Stream.Memory, 0, Stream.Size, [TJSONValue.TJSONParseOption.IsUTF8]);
Result := Obj.GetValue<string>('version');
finally
FreeAndNil(Obj);
FreeAndNil(Stream);
end;
except
Result := 'ERR';
end;
end;
//______________________________________________________________________________________________________________________
procedure TPasfmtKeyboardBinding.BindKeyboard(const BindingServices: IOTAKeyBindingServices);
begin
BindingServices
.AddKeyBinding([ShortCut(Ord('F'), [ssCtrl, ssAlt])], GPlugin.OnFormatKeyPress, nil, 0, '', 'PasfmtFormatItem');
end;
function TPasfmtKeyboardBinding.GetBindingType: TBindingType;
begin
Result := btPartial;
end;
function TPasfmtKeyboardBinding.GetDisplayName: string;
begin
Result := 'Pasfmt Keyboard Bindings';
end;
function TPasfmtKeyboardBinding.GetName: string;
begin
Result := 'PasfmtBindings';
end;
//______________________________________________________________________________________________________________________
initialization
finalization
FreeAndNil(GPlugin);
end.