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
|
object ConfigPDFExportForm: TConfigPDFExportForm
Left = 485
Height = 191
Top = 343
Width = 332
BorderStyle = bsDialog
Caption = 'Export to PDF'
ClientHeight = 191
ClientWidth = 332
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '1.7'
object FEPDF: TFileNameEdit
Left = 80
Height = 18
Top = 14
Width = 240
DialogKind = dkSave
DialogTitle = 'Save PDF export as'
DialogOptions = [ofOverwritePrompt, ofEnableSizing, ofViewDetail]
Filter = 'PDF Files|*.pdf|All files|*.*'
FilterIndex = 0
DefaultExt = '.pdf'
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Flat = True
MaxLength = 0
TabOrder = 0
end
object LFEPDF: TLabel
Left = 6
Height = 18
Top = 14
Width = 70
Alignment = taRightJustify
AutoSize = False
Caption = '&Filename'
FocusControl = FEPDF
Layout = tlCenter
ParentColor = False
end
object BPExport: TButtonPanel
Left = 6
Height = 33
Top = 152
Width = 320
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 1
ShowButtons = [pbOK, pbCancel]
end
object GBOptions: TGroupBox
Left = 16
Height = 105
Top = 40
Width = 305
Caption = 'Options'
ClientHeight = 77
ClientWidth = 301
TabOrder = 2
object CBCompress: TCheckBox
Left = 16
Height = 26
Top = 8
Width = 73
Caption = 'Compress'
TabOrder = 0
end
object CBOutline: TCheckBox
Left = 16
Height = 26
Top = 40
Width = 65
Caption = 'Outline'
TabOrder = 1
end
end
end
|