-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathunit1.lfm
122 lines (122 loc) · 2.91 KB
/
unit1.lfm
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
object Form1: TForm1
Left = 323
Height = 480
Top = 108
Width = 640
ActiveControl = OpenGLControl1
AllowDropFiles = True
Caption = 'Form1'
ClientHeight = 480
ClientWidth = 640
Position = poScreenCenter
LCLVersion = '4.99.0.0'
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
object OpenGLControl1: TOpenGLControl
Left = 8
Height = 246
Top = 8
Width = 314
OnMakeCurrent = OpenGLControl1MakeCurrent
OnPaint = OpenGLControl1Paint
OnResize = OpenGLControl1Resize
end
object Timer1: TTimer
OnTimer = Timer1Timer
Left = 24
Top = 24
end
object IniPropStorage1: TIniPropStorage
StoredValues = <>
IniFileName = 'PixelEditor.cfg'
IniSection = 'PixelEditor'
Left = 96
Top = 24
end
object SaveDialog1: TSaveDialog
DefaultExt = '.pe'
Filter = 'Supported|*.pe;*.png;*.bmp|PixelEditor|*.pe|Portable Network Graphik|*.png|Windows Bitmap|*.bmp|All|*'
Left = 272
Top = 24
end
object OpenDialog1: TOpenDialog
DefaultExt = '.pe'
Filter = 'Supported|*.pe;*.png;*.bmp|PixelEditor|*.pe|Portable Network Graphik|*.png|Windows Bitmap|*.bmp|All|*'
Left = 192
Top = 24
end
object OpenDialog2: TOpenDialog
DefaultExt = '.pcp'
Filter = 'PixelEditor color palette|*.pcp|All|*'
Left = 192
Top = 88
end
object SaveDialog2: TSaveDialog
DefaultExt = '.pcp'
Filter = 'PixelEditor color palette|*.pcp|All|*'
Left = 272
Top = 88
end
object PopupMenu1: TPopupMenu
Left = 98
Top = 162
object MenuItem8: TMenuItem
Caption = 'Copy selection to clipboard'
OnClick = MenuItem8Click
end
object MenuItem7: TMenuItem
Caption = 'Export selection'
OnClick = MenuItem7Click
end
object Separator4: TMenuItem
Caption = '-'
end
object MenuItem4: TMenuItem
Caption = 'Convert to grayscale'
OnClick = MenuItem4Click
end
object MenuItem3: TMenuItem
Caption = 'Invert colors'
OnClick = MenuItem3Click
end
object Separator2: TMenuItem
Caption = '-'
end
object MenuItem1: TMenuItem
Caption = 'Spritify'
OnClick = MenuItem1Click
end
object Separator3: TMenuItem
Caption = '-'
end
object MenuItem5: TMenuItem
Caption = 'Select by color'
OnClick = MenuItem5Click
end
object MenuItem6: TMenuItem
Caption = 'Invert selection'
OnClick = MenuItem6Click
end
object Separator1: TMenuItem
Caption = '-'
end
object MenuItem2: TMenuItem
Caption = 'Hide'
OnClick = MenuItem2Click
end
end
object PopupMenu2: TPopupMenu
Left = 192
Top = 162
object MenuItem9: TMenuItem
Caption = 'Load background image'
OnClick = MenuItem9Click
end
object MenuItem10: TMenuItem
Caption = 'Clear background image'
OnClick = MenuItem10Click
end
end
end