-
Notifications
You must be signed in to change notification settings - Fork 0
/
UnitMain.dfm
71 lines (71 loc) · 1.48 KB
/
UnitMain.dfm
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
object FormMain: TFormMain
Left = 0
Top = 0
Caption = 'GfxLibConv'
ClientHeight = 523
ClientWidth = 840
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Menu = MainMenu1
DesignSize = (
840
523)
TextHeight = 13
object ScrollBox1: TScrollBox
Left = 0
Top = 0
Width = 840
Height = 521
Anchors = [akLeft, akTop, akRight, akBottom]
BevelInner = bvNone
BevelOuter = bvNone
TabOrder = 0
ExplicitWidth = 838
ExplicitHeight = 517
object Image1: TImage
Left = 0
Top = 0
Width = 105
Height = 105
AutoSize = True
end
end
object MainMenu1: TMainMenu
Left = 24
Top = 464
object File1: TMenuItem
Caption = '&File'
object FileLoadImage: TMenuItem
Caption = '&Load image'
OnClick = FileLoadImageClick
end
object FileSaveGBM: TMenuItem
Caption = '&Save .gbm'
OnClick = FileSaveGBMClick
end
object N1: TMenuItem
Caption = '-'
end
object N2: TMenuItem
Caption = 'E&xit'
OnClick = N2Click
end
end
end
object OpenPictureDialog1: TOpenPictureDialog
Left = 112
Top = 464
end
object SaveDialog1: TSaveDialog
DefaultExt = '*.gbm'
FileName = '*.gbm'
Filter = 'GFX Lib bitmap .gbm|*.gbm'
Options = [ofHideReadOnly, ofPathMustExist, ofEnableSizing]
Left = 200
Top = 464
end
end