-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit1.dfm
138 lines (138 loc) · 2.92 KB
/
Unit1.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
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
object frmMain: TfrmMain
Left = 216
Top = 340
Width = 462
Height = 322
Caption = 'Convolu'#231#245'es - Marcelo Saviski'
Color = clBtnFace
Constraints.MinHeight = 24
Constraints.MinWidth = 160
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object PageControl: TPageControl
Left = 0
Top = 0
Width = 454
Height = 270
ActivePage = TabimgOriginal
Align = alClient
TabOrder = 0
OnResize = PageControlResize
object TabimgOriginal: TTabSheet
Caption = 'Imagem &Original'
DesignSize = (
446
242)
object imgOriginal: TImage
Left = 199
Top = 95
Width = 48
Height = 48
Cursor = crHandPoint
Anchors = []
AutoSize = True
Center = True
OnMouseDown = imgOriginalMouseDown
OnMouseMove = imgOriginalMouseMove
end
end
object TabimgTrasf: TTabSheet
Caption = 'Imagem &Trasformada'
ImageIndex = 1
DesignSize = (
446
242)
object imgTransf: TImage
Left = 199
Top = 95
Width = 48
Height = 48
Cursor = crHandPoint
Anchors = []
AutoSize = True
Center = True
OnMouseDown = imgOriginalMouseDown
OnMouseMove = imgOriginalMouseMove
end
end
end
object Panel1: TPanel
Left = 0
Top = 270
Width = 454
Height = 25
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
object lblPercent: TLabel
Left = 451
Top = 0
Width = 3
Height = 25
Align = alRight
OnClick = lblPercentClick
end
object Painel: TPanel
Left = 0
Top = 0
Width = 301
Height = 25
Align = alLeft
BevelOuter = bvNone
TabOrder = 0
object btnConvolve: TButton
Left = 150
Top = 0
Width = 75
Height = 25
Caption = '&Convolver'
Enabled = False
TabOrder = 0
OnClick = btnConvolveClick
end
object btnAjustar: TButton
Left = 225
Top = 0
Width = 75
Height = 25
Caption = '&Ajustar'
TabOrder = 1
OnClick = btnAjustarClick
end
object btnSalvar: TButton
Left = 75
Top = 0
Width = 75
Height = 25
Caption = '&Salvar'
Enabled = False
TabOrder = 2
OnClick = btnSalvarClick
end
object btnCarregar: TButton
Left = 0
Top = 0
Width = 75
Height = 25
Caption = '&Carregar'
TabOrder = 3
OnClick = btnCarregarClick
end
end
end
object OpenPictureDialog: TOpenPictureDialog
Left = 48
Top = 400
end
object SavePictureDialog: TSavePictureDialog
Left = 76
Top = 400
end
end