-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrm_nonvisual.pas
45 lines (36 loc) · 1.05 KB
/
frm_nonvisual.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
unit frm_nonvisual;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ImgList, sSkinManager;
type
Tnonvisual = class(TForm)
ImageList: TImageList;
private
{ Private declarations }
public
{ Public declarations }
end;
var
nonvisual: Tnonvisual;
const
pic_index_reference = 2;
pic_index_module = 5;
pic_index_ref_requisite = 11;
pic_index_autoset_column_width = 12;
pic_index_edoc_requisite = 13;
pic_index_edoc_custom = 15;
pic_index_folder = 32;
pic_index_view = 33;
pic_index_pagecontrol = 34;
pic_index_tabsheet = 35;
pic_index_group = 36;
pic_index_script = 37;
pic_index_event = 46;
pic_index_function = 47;
pic_index_report_tool = 114;
pic_index_report = 115;
pic_index_block = 122;
implementation
{$R *.dfm}
end.