213 lines
4.1 KiB
Plaintext
213 lines
4.1 KiB
Plaintext
object MainForm: TMainForm
|
|
Left = 343
|
|
Top = 135
|
|
Width = 952
|
|
Height = 656
|
|
Caption = 'TIFF Handler Demo - www.ImageEn.com'
|
|
Color = clBtnFace
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -11
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
OldCreateOrder = True
|
|
Position = poScreenCenter
|
|
OnCreate = FormCreate
|
|
OnDestroy = FormDestroy
|
|
PixelsPerInch = 96
|
|
TextHeight = 13
|
|
object Panel1: TPanel
|
|
Left = 0
|
|
Top = 0
|
|
Width = 169
|
|
Height = 622
|
|
Align = alLeft
|
|
BevelOuter = bvNone
|
|
TabOrder = 0
|
|
object Label1: TLabel
|
|
Left = 16
|
|
Top = 280
|
|
Width = 24
|
|
Height = 13
|
|
Caption = 'Page'
|
|
end
|
|
object Label2: TLabel
|
|
Left = 120
|
|
Top = 280
|
|
Width = 19
|
|
Height = 13
|
|
Caption = 'of 0'
|
|
end
|
|
object Button6: TButton
|
|
Left = 37
|
|
Top = 328
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Show Page'
|
|
TabOrder = 10
|
|
OnClick = Button6Click
|
|
end
|
|
object DriveComboBox1: TDriveComboBox
|
|
Left = 12
|
|
Top = 8
|
|
Width = 145
|
|
Height = 19
|
|
DirList = DirectoryListBox1
|
|
TabOrder = 0
|
|
end
|
|
object DirectoryListBox1: TDirectoryListBox
|
|
Left = 12
|
|
Top = 40
|
|
Width = 145
|
|
Height = 97
|
|
FileList = FileListBox1
|
|
ItemHeight = 16
|
|
TabOrder = 1
|
|
end
|
|
object FileListBox1: TFileListBox
|
|
Left = 12
|
|
Top = 152
|
|
Width = 145
|
|
Height = 97
|
|
ItemHeight = 13
|
|
Mask = '*.tiff;*.tif'
|
|
TabOrder = 2
|
|
OnChange = FileListBox1Change
|
|
end
|
|
object Edit1: TEdit
|
|
Left = 46
|
|
Top = 276
|
|
Width = 47
|
|
Height = 21
|
|
TabOrder = 3
|
|
Text = '0'
|
|
end
|
|
object Page: TUpDown
|
|
Left = 93
|
|
Top = 276
|
|
Width = 16
|
|
Height = 21
|
|
Associate = Edit1
|
|
Min = 0
|
|
Position = 0
|
|
TabOrder = 4
|
|
Wrap = False
|
|
OnClick = PageClick
|
|
end
|
|
object Button1: TButton
|
|
Left = 37
|
|
Top = 536
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Save File'
|
|
TabOrder = 5
|
|
OnClick = Button1Click
|
|
end
|
|
object Button2: TButton
|
|
Left = 37
|
|
Top = 448
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Add Tag'
|
|
TabOrder = 6
|
|
OnClick = Button2Click
|
|
end
|
|
object Button3: TButton
|
|
Left = 37
|
|
Top = 472
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Delete Tag'
|
|
TabOrder = 7
|
|
OnClick = Button3Click
|
|
end
|
|
object Button4: TButton
|
|
Left = 37
|
|
Top = 496
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Edit Tag'
|
|
TabOrder = 8
|
|
OnClick = Button4Click
|
|
end
|
|
object Button5: TButton
|
|
Left = 37
|
|
Top = 352
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Delete Page'
|
|
TabOrder = 9
|
|
OnClick = Button5Click
|
|
end
|
|
object ProgressBar1: TProgressBar
|
|
Left = 0
|
|
Top = 605
|
|
Width = 169
|
|
Height = 17
|
|
Align = alBottom
|
|
Min = 0
|
|
Max = 100
|
|
TabOrder = 11
|
|
end
|
|
object Button7: TButton
|
|
Left = 37
|
|
Top = 376
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Add/Insert TIFF'
|
|
TabOrder = 12
|
|
OnClick = Button7Click
|
|
end
|
|
object Button8: TButton
|
|
Left = 37
|
|
Top = 400
|
|
Width = 91
|
|
Height = 25
|
|
Caption = 'Add/Insert page'
|
|
TabOrder = 13
|
|
OnClick = Button8Click
|
|
end
|
|
end
|
|
object ListView1: TListView
|
|
Left = 169
|
|
Top = 0
|
|
Width = 775
|
|
Height = 622
|
|
Align = alClient
|
|
Columns = <
|
|
item
|
|
Caption = 'Tag'
|
|
Width = 200
|
|
end
|
|
item
|
|
Caption = 'Type'
|
|
Width = 70
|
|
end
|
|
item
|
|
Caption = 'Items Count'
|
|
Width = 90
|
|
end
|
|
item
|
|
Caption = 'Value'
|
|
Width = 700
|
|
end>
|
|
Font.Charset = DEFAULT_CHARSET
|
|
Font.Color = clWindowText
|
|
Font.Height = -13
|
|
Font.Name = 'Tahoma'
|
|
Font.Style = []
|
|
GridLines = True
|
|
ReadOnly = True
|
|
RowSelect = True
|
|
ParentFont = False
|
|
TabOrder = 1
|
|
ViewStyle = vsReport
|
|
end
|
|
object OpenImageEnDialog1: TOpenImageEnDialog
|
|
Filter = 'TIFF files|*.tif;*.tiff'
|
|
AutoSetFilter = False
|
|
Left = 448
|
|
Top = 56
|
|
end
|
|
end
|