forked from Memnarch/Delphinus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DN.ToolsApi.pas
195 lines (182 loc) · 5.59 KB
/
DN.ToolsApi.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
{
#########################################################
# Copyright by Alexander Benikowski #
# This unit is part of the Delphinus project hosted on #
# https://github.com/Memnarch/Delphinus #
#########################################################
}
unit DN.ToolsApi;
{#################################
ToolsApi Hacks written by Alexander Benikowski
original unit: DN.ToolsApi
Homepage: memnarch.bplaced.net
On Github: https://github.com/Memnarch
if you reuse this code in your own projects, please copy this header, too
##################################
}
interface
uses
IniFiles;
//function ReloadEnvironmentOptions(): Boolean;
//function SaveEnvironmentOptions(): Boolean;
function GetEnvironmentOptionObject(): TObject;
function GetRegistryOptionsMemIni(const ARegOption: TObject): TMemIniFile;
function GetRegistryOptionsObject(const AEnvironmentOptions: TObject; const APath: string): TObject;
implementation
uses
Classes,
RTTI,
SysUtils,
ToolsAPi;
const
CFEnvOptions = 'FEnvOptions';
CLoadOptions = 'LoadOptions';
CSaveOptions = 'SaveOptions';
function GetEnvironmentOptionObject(): TObject;
var
LService: IOTAServices;
LEnvironmentOptions: IOTAEnvironmentOptions;
LOTAEnvironmentOptions: TObject;
LContext: TRttiContext;
LTypeA: TRttiType;
LField: TRttiField;
begin
Result := nil;
LService := BorlandIDEServices as IOTAServices;
LEnvironmentOptions := LService.GetEnvironmentOptions();
LOTAEnvironmentOptions := LEnvironmentOptions as TObject;
LTypeA := LContext.GetType(LOTAEnvironmentOptions.ClassType);
if Assigned(LTypeA) then
begin
LField := LTypeA.GetField(CFEnvOptions);
if Assigned(LField) then
begin
Result := LField.GetValue(LOTAEnvironmentOptions).AsObject;
end;
end;
end;
function GetRegistryOptionsObject(const AEnvironmentOptions: TObject; const APath: string): TObject;
var
LContext: TRttiContext;
LType, LTypeB: TRttiType;
i, LCount: Integer;
LOption: TObject;
begin
Result := nil;
if not Assigned(AEnvironmentOptions) then Exit;
LType := LContext.GetType(AEnvironmentOptions.ClassType);
if Assigned(LType) then
begin
LCount := LType.GetProperty('OptionCount').GetValue(AEnvironmentOptions).AsInteger;
for i := 0 to LCount - 1 do
begin
LOption := LType.GetMethod('GetOptionComponent').Invoke(AEnvironmentOptions, [i]).AsObject;
if LOption.ClassNameIs('TRegistryPropSet') then
begin
LTypeB := LContext.GetType(LOption.ClassType);
if Assigned(LTypeB) then
begin
if APath = LTypeB.GetProperty('CurrentPath').GetValue(LOption).AsString then
begin
Result := LOption;
Break;
end;
end;
end;
end;
end;
end;
function GetRegistryOptionsMemIni(const ARegOption: TObject): TMemIniFile;
var
LContext: TRttiContext;
LType: TRttiType;
LMemIni: TObject;
begin
Result := nil;
LType := LContext.GetType(ARegOption.ClassType);
if Assigned(LType) then
begin
LMemIni := LType.GetProperty('Values').GetValue(ARegOption).AsObject;
if LMemIni is TMemIniFile then
begin
Result := TMemIniFile(LMemIni);
end;
end;
end;
function ReloadEnvironmentOptions(): Boolean;
var
LService: IOTAServices;
LEnvironmentOptions: IOTAEnvironmentOptions;
LOTAEnvironmentOptions: TObject;
LFEnvOptions: TObject;
LContext: TRttiContext;
LTypeA, LTypeB: TRttiType;
LField: TRttiField;
LLoadOptions: TRttiMethod;
begin
Result := False;
LService := BorlandIDEServices as IOTAServices;
LEnvironmentOptions := LService.GetEnvironmentOptions();
LOTAEnvironmentOptions := LEnvironmentOptions as TObject;
LTypeA := LContext.GetType(LOTAEnvironmentOptions.ClassType);
if Assigned(LTypeA) then
begin
LField := LTypeA.GetField(CFEnvOptions);
if Assigned(LField) then
begin
LFEnvOptions := LField.GetValue(LOTAEnvironmentOptions).AsObject;
if Assigned(LFEnvOptions) then
begin
LTypeB := LContext.GetType(LFEnvOptions.ClassType);
if Assigned(LTypeB) then
begin
LLoadOptions := LTypeB.GetMethod(CLoadOptions);
if Assigned(LLoadOptions) then
begin
LLoadOptions.Invoke(LFEnvOptions, []);
Result := True;
end;
end;
end;
end;
end;
end;
function SaveEnvironmentOptions(): Boolean;
var
LService: IOTAServices;
LEnvironmentOptions: IOTAEnvironmentOptions;
LOTAEnvironmentOptions: TObject;
LFEnvOptions: TObject;
LContext: TRttiContext;
LTypeA, LTypeB: TRttiType;
LField: TRttiField;
LSaveOptions: TRttiMethod;
begin
Result := False;
LService := BorlandIDEServices as IOTAServices;
LEnvironmentOptions := LService.GetEnvironmentOptions();
LOTAEnvironmentOptions := LEnvironmentOptions as TObject;
LTypeA := LContext.GetType(LOTAEnvironmentOptions.ClassType);
if Assigned(LTypeA) then
begin
LField := LTypeA.GetField(CFEnvOptions);
if Assigned(LField) then
begin
LFEnvOptions := LField.GetValue(LOTAEnvironmentOptions).AsObject;
if Assigned(LFEnvOptions) then
begin
LTypeB := LContext.GetType(LFEnvOptions.ClassType);
if Assigned(LTypeB) then
begin
LSaveOptions := LTypeB.GetMethod(CSaveOptions);
if Assigned(LSaveOptions) then
begin
LSaveOptions.Invoke(LFEnvOptions, []);
Result := True;
end;
end;
end;
end;
end;
end;
end.