forked from dim-s/soulengine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
uApplication.pas
60 lines (53 loc) · 1.18 KB
/
uApplication.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
unit uApplication;
interface
uses
Forms;
type
TApplicationEx = class(TApplication)
private
published
property Active;
property AllowTesting;
property AutoDragDocking;
property HelpSystem;
property CurrentHelpFile;
property DialogHandle;
property ExeName;
property Handle;
property HelpFile;
property Hint;
property HintColor;
property HintHidePause;
property HintPause;
property HintShortCuts;
property HintShortPause;
property Icon;
property MainForm;
property BiDiMode;
property BiDiKeyboard;
property NonBiDiKeyboard;
property ShowHint;
property ShowMainForm;
property Terminated;
property Title;
property UpdateFormatSettings;
property UpdateMetricSettings;
property OnActionExecute;
property OnActionUpdate;
property OnActivate;
property OnDeactivate;
property OnException;
property OnIdle;
property OnHelp;
property OnHint;
property OnMessage;
property OnMinimize;
property OnModalBegin;
property OnModalEnd;
property OnRestore;
property OnShowHint;
property OnShortCut;
property OnSettingChange;
end;
implementation
end.