Components, Printers: fixed to use TPageControl

git-svn-id: trunk@29585 -
This commit is contained in:
maxim 2011-02-17 00:04:37 +00:00
parent a460a9d3ee
commit a6788bcd99
6 changed files with 372 additions and 416 deletions

View File

@ -11,7 +11,7 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
OnDestroy = FormDestroy OnDestroy = FormDestroy
OnShow = dlgpropertiesprinterSHOW OnShow = dlgpropertiesprinterSHOW
Position = poScreenCenter Position = poScreenCenter
LCLVersion = '0.9.27' LCLVersion = '0.9.31'
object Panel1: TPanel object Panel1: TPanel
Left = 0 Left = 0
Height = 41 Height = 41
@ -50,83 +50,78 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
TabOrder = 1 TabOrder = 1
end end
end end
object Notebook1: TNotebook object Notebook1: TPageControl
Left = 0 Left = 0
Height = 423 Height = 423
Top = 0 Top = 0
Width = 457 Width = 457
ActivePage = pgGeneral
Align = alClient Align = alClient
PageIndex = 0 TabIndex = 0
TabOrder = 1 TabOrder = 1
object pgGeneral: TPage object pgGeneral: TTabSheet
Caption = 'General' Caption = 'General'
ClientWidth = 451 ClientHeight = 397
ClientHeight = 390 ClientWidth = 449
object labPaperSize: TLabel object labPaperSize: TLabel
Left = 15 Left = 15
Height = 16 Height = 14
Top = 19 Top = 19
Width = 64 Width = 50
Caption = 'Paper size' Caption = 'Paper size'
ParentColor = False ParentColor = False
end end
object labPaperType: TLabel object labPaperType: TLabel
Left = 15 Left = 15
Height = 16 Height = 14
Top = 55 Top = 55
Width = 68 Width = 54
Caption = 'Paper type' Caption = 'Paper type'
ParentColor = False ParentColor = False
end end
object labPaperSrc: TLabel object labPaperSrc: TLabel
Left = 15 Left = 15
Height = 16 Height = 14
Top = 92 Top = 92
Width = 84 Width = 64
Caption = 'Paper source' Caption = 'Paper source'
ParentColor = False ParentColor = False
end end
object labResolution: TLabel object labResolution: TLabel
Left = 15 Left = 15
Height = 16 Height = 14
Top = 125 Top = 125
Width = 66 Width = 51
Caption = 'Resolution' Caption = 'Resolution'
ParentColor = False ParentColor = False
end end
object cbPaperSize: TComboBox object cbPaperSize: TComboBox
Left = 130 Left = 130
Height = 29 Height = 21
Top = 9 Top = 9
Width = 310 Width = 310
AutoComplete = False
DropDownCount = 10 DropDownCount = 10
ItemHeight = 0 ItemHeight = 13
ItemWidth = 0
OnKeyPress = cbPaperSizeKEYPRESS OnKeyPress = cbPaperSizeKEYPRESS
Style = csDropDownList Style = csDropDownList
TabOrder = 0 TabOrder = 0
end end
object cbPaperType: TComboBox object cbPaperType: TComboBox
Left = 130 Left = 130
Height = 29 Height = 21
Top = 45 Top = 45
Width = 310 Width = 310
AutoComplete = False ItemHeight = 13
ItemHeight = 0
ItemWidth = 0
OnKeyPress = cbPaperSizeKEYPRESS OnKeyPress = cbPaperSizeKEYPRESS
Style = csDropDownList Style = csDropDownList
TabOrder = 1 TabOrder = 1
end end
object cbPaperSrc: TComboBox object cbPaperSrc: TComboBox
Left = 130 Left = 130
Height = 29 Height = 21
Top = 81 Top = 81
Width = 310 Width = 310
AutoComplete = False ItemHeight = 13
ItemHeight = 0
ItemWidth = 0
OnKeyPress = cbPaperSizeKEYPRESS OnKeyPress = cbPaperSizeKEYPRESS
Style = csDropDownList Style = csDropDownList
TabOrder = 3 TabOrder = 3
@ -137,7 +132,7 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
Top = 162 Top = 162
Width = 233 Width = 233
Caption = ' Orientation ' Caption = ' Orientation '
ClientHeight = 102 ClientHeight = 101
ClientWidth = 229 ClientWidth = 229
TabOrder = 5 TabOrder = 5
object imgOrientation: TImage object imgOrientation: TImage
@ -148,52 +143,45 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
end end
object rbPortrait: TRadioButton object rbPortrait: TRadioButton
Left = 7 Left = 7
Height = 22 Height = 17
Top = 5 Top = 5
Width = 71 Width = 54
AllowGrayed = True
Caption = 'Portrait' Caption = 'Portrait'
Checked = True Checked = True
DragCursor = crDefault DragCursor = crDefault
OnClick = rbPortraitCLICK OnClick = rbPortraitCLICK
State = cbChecked
TabOrder = 0 TabOrder = 0
TabStop = True
end end
object rbLandscape: TRadioButton object rbLandscape: TRadioButton
Left = 7 Left = 7
Height = 22 Height = 17
Top = 29 Top = 29
Width = 92 Width = 69
AllowGrayed = True
Caption = 'Landscape' Caption = 'Landscape'
DragCursor = crDefault DragCursor = crDefault
OnClick = rbPortraitCLICK OnClick = rbPortraitCLICK
TabOrder = 1 TabOrder = 1
TabStop = False
end end
object rbrev_Landscape: TRadioButton object rbrev_Landscape: TRadioButton
Left = 7 Left = 7
Height = 22 Height = 17
Top = 53 Top = 53
Width = 142 Width = 109
AllowGrayed = True
Caption = 'Reverse landscape' Caption = 'Reverse landscape'
DragCursor = crDefault DragCursor = crDefault
OnClick = rbPortraitCLICK OnClick = rbPortraitCLICK
TabOrder = 2 TabOrder = 2
TabStop = False
end end
object rbrev_portrait: TRadioButton object rbrev_portrait: TRadioButton
Left = 7 Left = 7
Height = 22 Height = 17
Top = 77 Top = 77
Width = 124 Width = 97
AllowGrayed = True
Caption = 'Reverse portrait' Caption = 'Reverse portrait'
DragCursor = crDefault DragCursor = crDefault
OnClick = rbPortraitCLICK OnClick = rbPortraitCLICK
TabOrder = 3 TabOrder = 3
TabStop = False
end end
end end
object gbBanners: TGroupBox object gbBanners: TGroupBox
@ -202,45 +190,41 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
Top = 290 Top = 290
Width = 427 Width = 427
Caption = ' Banners ' Caption = ' Banners '
ClientHeight = 79 ClientHeight = 78
ClientWidth = 423 ClientWidth = 423
TabOrder = 2 TabOrder = 2
object labBanStart: TLabel object labBanStart: TLabel
Left = 6 Left = 6
Height = 16 Height = 14
Top = 9 Top = 9
Width = 32 Width = 25
Caption = 'Start' Caption = 'Start'
ParentColor = False ParentColor = False
end end
object labBanEnd: TLabel object labBanEnd: TLabel
Left = 6 Left = 6
Height = 16 Height = 14
Top = 49 Top = 49
Width = 25 Width = 19
Caption = 'End' Caption = 'End'
ParentColor = False ParentColor = False
end end
object cbBanStart: TComboBox object cbBanStart: TComboBox
Left = 94 Left = 94
Height = 29 Height = 21
Top = 1 Top = 1
Width = 317 Width = 317
AutoComplete = False ItemHeight = 13
ItemHeight = 0
ItemWidth = 0
OnKeyPress = cbPaperSizeKEYPRESS OnKeyPress = cbPaperSizeKEYPRESS
Style = csDropDownList Style = csDropDownList
TabOrder = 0 TabOrder = 0
end end
object cbBanEnd: TComboBox object cbBanEnd: TComboBox
Left = 94 Left = 94
Height = 29 Height = 21
Top = 41 Top = 41
Width = 317 Width = 317
AutoComplete = False ItemHeight = 13
ItemHeight = 0
ItemWidth = 0
OnKeyPress = cbPaperSizeKEYPRESS OnKeyPress = cbPaperSizeKEYPRESS
Style = csDropDownList Style = csDropDownList
TabOrder = 1 TabOrder = 1
@ -252,7 +236,7 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
Top = 163 Top = 163
Width = 185 Width = 185
Caption = ' Pages per sheet ' Caption = ' Pages per sheet '
ClientHeight = 101 ClientHeight = 100
ClientWidth = 181 ClientWidth = 181
TabOrder = 4 TabOrder = 4
object imgPageSheet: TImage object imgPageSheet: TImage
@ -263,67 +247,60 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
end end
object rbSheet1: TRadioButton object rbSheet1: TRadioButton
Left = 6 Left = 6
Height = 22 Height = 17
Top = 5 Top = 5
Width = 32 Width = 24
AllowGrayed = True
Caption = '1' Caption = '1'
Checked = True Checked = True
DragCursor = crDefault DragCursor = crDefault
OnClick = rbPortraitCLICK OnClick = rbPortraitCLICK
State = cbChecked
TabOrder = 0 TabOrder = 0
TabStop = True
end end
object rbSheet2: TRadioButton object rbSheet2: TRadioButton
Left = 6 Left = 6
Height = 22 Height = 17
Top = 29 Top = 29
Width = 32 Width = 24
AllowGrayed = True
Caption = '2' Caption = '2'
DragCursor = crDefault DragCursor = crDefault
OnClick = rbPortraitCLICK OnClick = rbPortraitCLICK
TabOrder = 1 TabOrder = 1
TabStop = False
end end
object rbSheet4: TRadioButton object rbSheet4: TRadioButton
Left = 6 Left = 6
Height = 22 Height = 17
Top = 53 Top = 53
Width = 32 Width = 24
AllowGrayed = True
Caption = '4' Caption = '4'
DragCursor = crDefault DragCursor = crDefault
OnClick = rbPortraitCLICK OnClick = rbPortraitCLICK
TabOrder = 2 TabOrder = 2
TabStop = False
end end
end end
object cbResolution: TComboBox object cbResolution: TComboBox
Left = 130 Left = 130
Height = 29 Height = 21
Top = 117 Top = 117
Width = 310 Width = 310
AutoComplete = False ItemHeight = 13
ItemHeight = 0
ItemWidth = 0
OnKeyPress = cbPaperSizeKEYPRESS OnKeyPress = cbPaperSizeKEYPRESS
Style = csDropDownList Style = csDropDownList
TabOrder = 6 TabOrder = 6
end end
end end
object pgMargins: TPage object pgMargins: TTabSheet
Caption = 'Margins' Caption = 'Margins'
end end
object pgAdvanced: TPage object pgAdvanced: TTabSheet
Caption = 'Advanced' Caption = 'Advanced'
ClientWidth = 451 ClientHeight = 397
ClientHeight = 390 ClientWidth = 449
object sb: TScrollBox object sb: TScrollBox
Left = 0 Left = 0
Height = 390 Height = 397
Top = 0 Top = 0
Width = 451 Width = 449
Align = alClient Align = alClient
TabOrder = 0 TabOrder = 0
end end

View File

@ -6,7 +6,7 @@ LazarusResources.Add('Tdlgpropertiesprinter','FORMDATA',[
+#7'Caption'#6#20'dlgpropertiesprinter'#12'ClientHeight'#3#208#1#11'ClientWid' +#7'Caption'#6#20'dlgpropertiesprinter'#12'ClientHeight'#3#208#1#11'ClientWid'
+'th'#3#201#1#8'OnCreate'#7#26'dlgpropertiesprinterCREATE'#9'OnDestroy'#7#11 +'th'#3#201#1#8'OnCreate'#7#26'dlgpropertiesprinterCREATE'#9'OnDestroy'#7#11
+'FormDestroy'#6'OnShow'#7#24'dlgpropertiesprinterSHOW'#8'Position'#7#14'poSc' +'FormDestroy'#6'OnShow'#7#24'dlgpropertiesprinterSHOW'#8'Position'#7#14'poSc'
+'reenCenter'#10'LCLVersion'#6#6'0.9.27'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6 +'reenCenter'#10'LCLVersion'#6#6'0.9.31'#0#6'TPanel'#6'Panel1'#4'Left'#2#0#6
+'Height'#2')'#3'Top'#3#167#1#5'Width'#3#201#1#5'Align'#7#8'alBottom'#7'Ancho' +'Height'#2')'#3'Top'#3#167#1#5'Width'#3#201#1#5'Align'#7#8'alBottom'#7'Ancho'
+'rs'#11#6'akLeft'#8'akBottom'#0#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2 +'rs'#11#6'akLeft'#8'akBottom'#0#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2
+')'#11'ClientWidth'#3#201#1#11'FullRepaint'#8#8'TabOrder'#2#0#7'TabStop'#9#0 +')'#11'ClientWidth'#3#201#1#11'FullRepaint'#8#8'TabOrder'#2#0#7'TabStop'#9#0
@ -15,72 +15,67 @@ LazarusResources.Add('Tdlgpropertiesprinter','FORMDATA',[
+'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#0#0#0#7 +'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#0#0#0#7
+'TButton'#5'btnOk'#4'Left'#3#255#0#6'Height'#2#25#3'Top'#2#8#5'Width'#2'['#7 +'TButton'#5'btnOk'#4'Left'#3#255#0#6'Height'#2#25#3'Top'#2#8#5'Width'#2'['#7
+'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Capti' +'Anchors'#11#5'akTop'#7'akRight'#0#25'BorderSpacing.InnerBorder'#2#4#7'Capti'
+'on'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#0#9'TNoteb' +'on'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#0#12'TPage'
+'ook'#9'Notebook1'#4'Left'#2#0#6'Height'#3#167#1#3'Top'#2#0#5'Width'#3#201#1 +'Control'#9'Notebook1'#4'Left'#2#0#6'Height'#3#167#1#3'Top'#2#0#5'Width'#3
+#5'Align'#7#8'alClient'#9'PageIndex'#2#0#8'TabOrder'#2#1#0#5'TPage'#9'pgGene' +#201#1#10'ActivePage'#7#9'pgGeneral'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8
+'ral'#7'Caption'#6#7'General'#11'ClientWidth'#3#195#1#12'ClientHeight'#3#134 +'TabOrder'#2#1#0#9'TTabSheet'#9'pgGeneral'#7'Caption'#6#7'General'#12'Client'
+#1#0#6'TLabel'#12'labPaperSize'#4'Left'#2#15#6'Height'#2#16#3'Top'#2#19#5'Wi' +'Height'#3#141#1#11'ClientWidth'#3#193#1#0#6'TLabel'#12'labPaperSize'#4'Left'
+'dth'#2'@'#7'Caption'#6#10'Paper size'#11'ParentColor'#8#0#0#6'TLabel'#12'la' +#2#15#6'Height'#2#14#3'Top'#2#19#5'Width'#2'2'#7'Caption'#6#10'Paper size'#11
+'bPaperType'#4'Left'#2#15#6'Height'#2#16#3'Top'#2'7'#5'Width'#2'D'#7'Caption' +'ParentColor'#8#0#0#6'TLabel'#12'labPaperType'#4'Left'#2#15#6'Height'#2#14#3
+#6#10'Paper type'#11'ParentColor'#8#0#0#6'TLabel'#11'labPaperSrc'#4'Left'#2 +'Top'#2'7'#5'Width'#2'6'#7'Caption'#6#10'Paper type'#11'ParentColor'#8#0#0#6
+#15#6'Height'#2#16#3'Top'#2'\'#5'Width'#2'T'#7'Caption'#6#12'Paper source'#11 +'TLabel'#11'labPaperSrc'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'\'#5'Width'#2
+'ParentColor'#8#0#0#6'TLabel'#13'labResolution'#4'Left'#2#15#6'Height'#2#16#3 +'@'#7'Caption'#6#12'Paper source'#11'ParentColor'#8#0#0#6'TLabel'#13'labReso'
+'Top'#2'}'#5'Width'#2'B'#7'Caption'#6#10'Resolution'#11'ParentColor'#8#0#0#9 +'lution'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'}'#5'Width'#2'3'#7'Caption'#6
+'TComboBox'#11'cbPaperSize'#4'Left'#3#130#0#6'Height'#2#29#3'Top'#2#9#5'Widt' +#10'Resolution'#11'ParentColor'#8#0#0#9'TComboBox'#11'cbPaperSize'#4'Left'#3
+'h'#3'6'#1#12'AutoComplete'#8#13'DropDownCount'#2#10#10'ItemHeight'#2#0#9'It' +#130#0#6'Height'#2#21#3'Top'#2#9#5'Width'#3'6'#1#13'DropDownCount'#2#10#10'I'
+'emWidth'#2#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropD' +'temHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDr'
+'ownList'#8'TabOrder'#2#0#0#0#9'TComboBox'#11'cbPaperType'#4'Left'#3#130#0#6 +'opDownList'#8'TabOrder'#2#0#0#0#9'TComboBox'#11'cbPaperType'#4'Left'#3#130#0
+'Height'#2#29#3'Top'#2'-'#5'Width'#3'6'#1#12'AutoComplete'#8#10'ItemHeight'#2 +#6'Height'#2#21#3'Top'#2'-'#5'Width'#3'6'#1#10'ItemHeight'#2#13#10'OnKeyPres'
+#0#9'ItemWidth'#2#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'c' +'s'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#0
+'sDropDownList'#8'TabOrder'#2#1#0#0#9'TComboBox'#10'cbPaperSrc'#4'Left'#3#130 +#0#9'TComboBox'#10'cbPaperSrc'#4'Left'#3#130#0#6'Height'#2#21#3'Top'#2'Q'#5
+#0#6'Height'#2#29#3'Top'#2'Q'#5'Width'#3'6'#1#12'AutoComplete'#8#10'ItemHeig' +'Width'#3'6'#1#10'ItemHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5
+'ht'#2#0#9'ItemWidth'#2#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7 +'Style'#7#14'csDropDownList'#8'TabOrder'#2#3#0#0#9'TGroupBox'#13'gbOrientati'
+#14'csDropDownList'#8'TabOrder'#2#3#0#0#9'TGroupBox'#13'gbOrientation'#4'Lef' +'on'#4'Left'#2#13#6'Height'#2'w'#3'Top'#3#162#0#5'Width'#3#233#0#7'Caption'#6
+'t'#2#13#6'Height'#2'w'#3'Top'#3#162#0#5'Width'#3#233#0#7'Caption'#6#13' Ori' +#13' Orientation '#12'ClientHeight'#2'e'#11'ClientWidth'#3#229#0#8'TabOrder'
+'entation '#12'ClientHeight'#2'f'#11'ClientWidth'#3#229#0#8'TabOrder'#2#5#0#6 +#2#5#0#6'TImage'#14'imgOrientation'#4'Left'#3#167#0#6'Height'#2'0'#3'Top'#2
+'TImage'#14'imgOrientation'#4'Left'#3#167#0#6'Height'#2'0'#3'Top'#2#25#5'Wid' +#25#5'Width'#2'4'#0#0#12'TRadioButton'#10'rbPortrait'#4'Left'#2#7#6'Height'#2
+'th'#2'4'#0#0#12'TRadioButton'#10'rbPortrait'#4'Left'#2#7#6'Height'#2#22#3'T' +#17#3'Top'#2#5#5'Width'#2'6'#7'Caption'#6#8'Portrait'#7'Checked'#9#10'DragCu'
+'op'#2#5#5'Width'#2'G'#11'AllowGrayed'#9#7'Caption'#6#8'Portrait'#7'Checked' +'rsor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#0#7'Tab'
+#9#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#5'State'#7 +'Stop'#9#0#0#12'TRadioButton'#11'rbLandscape'#4'Left'#2#7#6'Height'#2#17#3'T'
+#9'cbChecked'#8'TabOrder'#2#0#0#0#12'TRadioButton'#11'rbLandscape'#4'Left'#2 +'op'#2#29#5'Width'#2'E'#7'Caption'#6#9'Landscape'#10'DragCursor'#7#9'crDefau'
+#7#6'Height'#2#22#3'Top'#2#29#5'Width'#2'\'#11'AllowGrayed'#9#7'Caption'#6#9 +'lt'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#1#0#0#12'TRadioButton'#15
+'Landscape'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8 +'rbrev_Landscape'#4'Left'#2#7#6'Height'#2#17#3'Top'#2'5'#5'Width'#2'm'#7'Cap'
+'TabOrder'#2#1#7'TabStop'#8#0#0#12'TRadioButton'#15'rbrev_Landscape'#4'Left' +'tion'#6#17'Reverse landscape'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15
+#2#7#6'Height'#2#22#3'Top'#2'5'#5'Width'#3#142#0#11'AllowGrayed'#9#7'Caption' +'rbPortraitCLICK'#8'TabOrder'#2#2#0#0#12'TRadioButton'#14'rbrev_portrait'#4
+#6#17'Reverse landscape'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPor' +'Left'#2#7#6'Height'#2#17#3'Top'#2'M'#5'Width'#2'a'#7'Caption'#6#16'Reverse '
+'traitCLICK'#8'TabOrder'#2#2#7'TabStop'#8#0#0#12'TRadioButton'#14'rbrev_port' +'portrait'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8
+'rait'#4'Left'#2#7#6'Height'#2#22#3'Top'#2'M'#5'Width'#2'|'#11'AllowGrayed'#9 +'TabOrder'#2#3#0#0#0#9'TGroupBox'#9'gbBanners'#4'Left'#2#13#6'Height'#2'`'#3
+#7'Caption'#6#16'Reverse portrait'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7 +'Top'#3'"'#1#5'Width'#3#171#1#7'Caption'#6#9' Banners '#12'ClientHeight'#2'N'
+#15'rbPortraitCLICK'#8'TabOrder'#2#3#7'TabStop'#8#0#0#0#9'TGroupBox'#9'gbBan' +#11'ClientWidth'#3#167#1#8'TabOrder'#2#2#0#6'TLabel'#11'labBanStart'#4'Left'
+'ners'#4'Left'#2#13#6'Height'#2'`'#3'Top'#3'"'#1#5'Width'#3#171#1#7'Caption' +#2#6#6'Height'#2#14#3'Top'#2#9#5'Width'#2#25#7'Caption'#6#5'Start'#11'Parent'
+#6#9' Banners '#12'ClientHeight'#2'O'#11'ClientWidth'#3#167#1#8'TabOrder'#2#2 +'Color'#8#0#0#6'TLabel'#9'labBanEnd'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'1'#5
+#0#6'TLabel'#11'labBanStart'#4'Left'#2#6#6'Height'#2#16#3'Top'#2#9#5'Width'#2 +'Width'#2#19#7'Caption'#6#3'End'#11'ParentColor'#8#0#0#9'TComboBox'#10'cbBan'
+' '#7'Caption'#6#5'Start'#11'ParentColor'#8#0#0#6'TLabel'#9'labBanEnd'#4'Lef' +'Start'#4'Left'#2'^'#6'Height'#2#21#3'Top'#2#1#5'Width'#3'='#1#10'ItemHeight'
+'t'#2#6#6'Height'#2#16#3'Top'#2'1'#5'Width'#2#25#7'Caption'#6#3'End'#11'Pare' +#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'
+'ntColor'#8#0#0#9'TComboBox'#10'cbBanStart'#4'Left'#2'^'#6'Height'#2#29#3'To' +#8'TabOrder'#2#0#0#0#9'TComboBox'#8'cbBanEnd'#4'Left'#2'^'#6'Height'#2#21#3
+'p'#2#1#5'Width'#3'='#1#12'AutoComplete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2 +'Top'#2')'#5'Width'#3'='#1#10'ItemHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSi'
+#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'#8 +'zeKEYPRESS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'
+'TabOrder'#2#0#0#0#9'TComboBox'#8'cbBanEnd'#4'Left'#2'^'#6'Height'#2#29#3'To' +#12'gbPagesSheet'#4'Left'#3#0#1#6'Height'#2'v'#3'Top'#3#163#0#5'Width'#3#185
+'p'#2')'#5'Width'#3'='#1#12'AutoComplete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2 +#0#7'Caption'#6#17' Pages per sheet '#12'ClientHeight'#2'd'#11'ClientWidth'#3
+#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'#8 +#181#0#8'TabOrder'#2#4#0#6'TImage'#12'imgPageSheet'#4'Left'#2'N'#6'Height'#2
+'TabOrder'#2#1#0#0#0#9'TGroupBox'#12'gbPagesSheet'#4'Left'#3#0#1#6'Height'#2 +'2'#3'Top'#2#17#5'Width'#2'P'#0#0#12'TRadioButton'#8'rbSheet1'#4'Left'#2#6#6
+'v'#3'Top'#3#163#0#5'Width'#3#185#0#7'Caption'#6#17' Pages per sheet '#12'Cl' +'Height'#2#17#3'Top'#2#5#5'Width'#2#24#7'Caption'#6#1'1'#7'Checked'#9#10'Dra'
,'ientHeight'#2'e'#11'ClientWidth'#3#181#0#8'TabOrder'#2#4#0#6'TImage'#12'img' ,'gCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#0#7
+'PageSheet'#4'Left'#2'N'#6'Height'#2'2'#3'Top'#2#17#5'Width'#2'P'#0#0#12'TRa' +'TabStop'#9#0#0#12'TRadioButton'#8'rbSheet2'#4'Left'#2#6#6'Height'#2#17#3'To'
+'dioButton'#8'rbSheet1'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#5#5'Width'#2' ' +'p'#2#29#5'Width'#2#24#7'Caption'#6#1'2'#10'DragCursor'#7#9'crDefault'#7'OnC'
+#11'AllowGrayed'#9#7'Caption'#6#1'1'#7'Checked'#9#10'DragCursor'#7#9'crDefau' +'lick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#1#0#0#12'TRadioButton'#8'rbSheet4'
+'lt'#7'OnClick'#7#15'rbPortraitCLICK'#5'State'#7#9'cbChecked'#8'TabOrder'#2#0 +#4'Left'#2#6#6'Height'#2#17#3'Top'#2'5'#5'Width'#2#24#7'Caption'#6#1'4'#10'D'
+#0#0#12'TRadioButton'#8'rbSheet2'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#29#5'W' +'ragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#2#0
+'idth'#2' '#11'AllowGrayed'#9#7'Caption'#6#1'2'#10'DragCursor'#7#9'crDefault' +#0#0#9'TComboBox'#12'cbResolution'#4'Left'#3#130#0#6'Height'#2#21#3'Top'#2'u'
+#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#1#7'TabStop'#8#0#0#12'TRadio' +#5'Width'#3'6'#1#10'ItemHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'
+'Button'#8'rbSheet4'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'5'#5'Width'#2' '#11 +#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#6#0#0#0#9'TTabSheet'#9'pgMargin'
+'AllowGrayed'#9#7'Caption'#6#1'4'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7 +'s'#7'Caption'#6#7'Margins'#0#0#9'TTabSheet'#10'pgAdvanced'#7'Caption'#6#8'A'
+#15'rbPortraitCLICK'#8'TabOrder'#2#2#7'TabStop'#8#0#0#0#9'TComboBox'#12'cbRe' +'dvanced'#12'ClientHeight'#3#141#1#11'ClientWidth'#3#193#1#0#10'TScrollBox'#2
+'solution'#4'Left'#3#130#0#6'Height'#2#29#3'Top'#2'u'#5'Width'#3'6'#1#12'Aut' +'sb'#4'Left'#2#0#6'Height'#3#141#1#3'Top'#2#0#5'Width'#3#193#1#5'Align'#7#8
+'oComplete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2#0#10'OnKeyPress'#7#19'cbPape' +'alClient'#8'TabOrder'#2#0#0#0#0#0#0
+'rSizeKEYPRESS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#6#0#0#0#5'TPage'
+#9'pgMargins'#7'Caption'#6#7'Margins'#0#0#5'TPage'#10'pgAdvanced'#7'Caption'
+#6#8'Advanced'#11'ClientWidth'#3#195#1#12'ClientHeight'#3#134#1#0#10'TScroll'
+'Box'#2'sb'#4'Left'#2#0#6'Height'#3#134#1#3'Top'#2#0#5'Width'#3#195#1#5'Alig'
+'n'#7#8'alClient'#8'TabOrder'#2#0#0#0#0#0#0
]); ]);

View File

@ -62,10 +62,10 @@ type
labResolution: TLabel; labResolution: TLabel;
labPaperType: TLABEL; labPaperType: TLABEL;
labPaperSize: TLABEL; labPaperSize: TLABEL;
pgAdvanced: TPage; pgAdvanced: TTabSheet;
Notebook1: TNotebook; Notebook1: TPageControl;
pgGeneral: TPAGE; pgGeneral: TTabSheet;
pgMargins: TPage; pgMargins: TTabSheet;
Panel1: TPANEL; Panel1: TPANEL;
rbSheet1: TRADIOBUTTON; rbSheet1: TRADIOBUTTON;
rbSheet2: TRADIOBUTTON; rbSheet2: TRADIOBUTTON;

View File

@ -1,16 +1,16 @@
object dlgSelectPrinter: TdlgSelectPrinter object dlgSelectPrinter: TdlgSelectPrinter
Left = 330 Left = 330
Height = 217 Height = 406
Top = 111 Top = 111
Width = 530 Width = 530
ActiveControl = btnProp ActiveControl = btnProp
Caption = 'Printing' Caption = 'Printing'
ClientHeight = 217 ClientHeight = 406
ClientWidth = 530 ClientWidth = 530
OnCreate = dlgSelectPrinterCREATE OnCreate = dlgSelectPrinterCREATE
OnShow = dlgSelectPrinterSHOW OnShow = dlgSelectPrinterSHOW
Position = poScreenCenter Position = poScreenCenter
LCLVersion = '0.9.27' LCLVersion = '0.9.31'
object PrinterGroupbox: TGroupBox object PrinterGroupbox: TGroupBox
Left = 6 Left = 6
Height = 137 Height = 137
@ -19,30 +19,30 @@ object dlgSelectPrinter: TdlgSelectPrinter
Align = alTop Align = alTop
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = ' Printer ' Caption = ' Printer '
ClientHeight = 118 ClientHeight = 119
ClientWidth = 514 ClientWidth = 514
TabOrder = 0 TabOrder = 0
object labState: TLabel object labState: TLabel
Left = 96 Left = 96
Height = 18 Height = 14
Top = 49 Top = 49
Width = 55 Width = 41
Caption = 'labState' Caption = 'labState'
ParentColor = False ParentColor = False
end end
object labLocation: TLabel object labLocation: TLabel
Left = 96 Left = 96
Height = 18 Height = 14
Top = 73 Top = 73
Width = 74 Width = 55
Caption = 'labLocation' Caption = 'labLocation'
ParentColor = False ParentColor = False
end end
object labComment: TLabel object labComment: TLabel
Left = 96 Left = 96
Height = 18 Height = 14
Top = 97 Top = 97
Width = 84 Width = 60
Caption = 'labComment' Caption = 'labComment'
ParentColor = False ParentColor = False
end end
@ -53,53 +53,53 @@ object dlgSelectPrinter: TdlgSelectPrinter
Width = 17 Width = 17
end end
object PrinterNameLabel: TLabel object PrinterNameLabel: TLabel
Left = 234 Left = 240
Height = 18 Height = 14
Top = 7 Top = 9
Width = 40 Width = 28
Anchors = [] Anchors = []
Caption = 'Name' Caption = 'Name'
ParentColor = False ParentColor = False
end end
object PrinterStateLabel: TLabel object PrinterStateLabel: TLabel
Left = 10 Left = 10
Height = 18 Height = 14
Top = 49 Top = 49
Width = 36 Width = 27
Caption = 'State' Caption = 'State'
ParentColor = False ParentColor = False
OnChangeBounds = PrinterStateLabelChangeBounds OnChangeBounds = PrinterStateLabelChangeBounds
end end
object PrinterLocationLabel: TLabel object PrinterLocationLabel: TLabel
Left = 10 Left = 10
Height = 18 Height = 14
Top = 73 Top = 73
Width = 55 Width = 41
Caption = 'Location' Caption = 'Location'
ParentColor = False ParentColor = False
end end
object PrinterDescriptionLabel: TLabel object PrinterDescriptionLabel: TLabel
Left = 10 Left = 10
Height = 18 Height = 14
Top = 97 Top = 97
Width = 73 Width = 54
Caption = 'Description' Caption = 'Description'
ParentColor = False ParentColor = False
end end
object labPrinterName: TLabel object labPrinterName: TLabel
Left = 10 Left = 10
Height = 18 Height = 14
Top = 12 Top = 12
Width = 40 Width = 28
Caption = 'Name' Caption = 'Name'
ParentColor = False ParentColor = False
OnChangeBounds = PrinterStateLabelChangeBounds OnChangeBounds = PrinterStateLabelChangeBounds
end end
object btnProp: TButton object btnProp: TButton
Left = 416 Left = 417
Height = 29 Height = 23
Top = 6 Top = 9
Width = 93 Width = 90
Anchors = [] Anchors = []
AutoSize = True AutoSize = True
Caption = 'Properties ...' Caption = 'Properties ...'
@ -107,54 +107,53 @@ object dlgSelectPrinter: TdlgSelectPrinter
TabOrder = 0 TabOrder = 0
end end
object cbPrintToFile: TCheckBox object cbPrintToFile: TCheckBox
Left = 414 Left = 436
Height = 22 Height = 17
Top = 41 Top = 47
Width = 92 Width = 70
Anchors = [akRight, akBottom] Anchors = [akRight, akBottom]
Caption = 'Print to file' Caption = 'Print to file'
TabOrder = 1 TabOrder = 1
end end
object cbPrinters: TComboBox object cbPrinters: TComboBox
Left = 120 Left = 120
Height = 31 Height = 21
Top = 7 Top = 7
Width = 287 Width = 287
Anchors = [akTop, akLeft, akRight] Anchors = [akTop, akLeft, akRight]
AutoComplete = False ItemHeight = 13
ItemHeight = 0
ItemWidth = 0
OnChange = cbPrintersCHANGE OnChange = cbPrintersCHANGE
OnKeyPress = cbPrintersKEYPRESS OnKeyPress = cbPrintersKEYPRESS
Style = csDropDownList Style = csDropDownList
TabOrder = 2 TabOrder = 2
end end
end end
object NbOpts: TNotebook object NbOpts: TPageControl
Left = 6 Left = 6
Height = 1 Height = 182
Top = 174 Top = 177
Width = 518 Width = 518
ActivePage = pgCopies
Align = alClient Align = alClient
Anchors = [akLeft] Anchors = [akLeft]
BorderSpacing.Around = 6 BorderSpacing.Around = 6
PageIndex = 0 TabIndex = 0
TabOrder = 1 TabOrder = 1
object pgCopies: TPage object pgCopies: TTabSheet
Caption = 'Copies' Caption = 'Copies'
ClientWidth = 516 ClientHeight = 156
ClientHeight = 1 ClientWidth = 510
object gbPages: TGroupBox object gbPages: TGroupBox
AnchorSideBottom.Control = pgCopies AnchorSideBottom.Control = pgCopies
AnchorSideBottom.Side = asrBottom AnchorSideBottom.Side = asrBottom
Left = 8 Left = 8
Height = 1 Height = 143
Top = 7 Top = 7
Width = 262 Width = 262
Anchors = [akTop, akLeft, akBottom] Anchors = [akTop, akLeft, akBottom]
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = ' Select pages ' Caption = ' Select pages '
ClientHeight = 1 ClientHeight = 125
ClientWidth = 258 ClientWidth = 258
TabOrder = 0 TabOrder = 0
object Bevel1: TBevel object Bevel1: TBevel
@ -162,7 +161,7 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 18 Left = 18
Height = 3 Height = 3
Top = 105 Top = 86
Width = 230 Width = 230
BorderSpacing.Top = 6 BorderSpacing.Top = 6
Shape = bsTopLine Shape = bsTopLine
@ -172,9 +171,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Control = Bevel1 AnchorSideTop.Control = Bevel1
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 14 Left = 14
Height = 18 Height = 14
Top = 120 Top = 101
Width = 39 Width = 30
BorderSpacing.Top = 12 BorderSpacing.Top = 12
Caption = 'Pages' Caption = 'Pages'
ParentColor = False ParentColor = False
@ -186,10 +185,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Side = asrCenter AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = gbPages AnchorSideRight.Control = gbPages
AnchorSideRight.Side = asrBottom AnchorSideRight.Side = asrBottom
Left = 93 Left = 78
Height = 23 Height = 21
Top = 76 Top = 59
Width = 159 Width = 174
Anchors = [akTop, akLeft, akRight] Anchors = [akTop, akLeft, akRight]
BorderSpacing.Left = 15 BorderSpacing.Left = 15
BorderSpacing.Right = 6 BorderSpacing.Right = 6
@ -201,21 +200,18 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideRight.Control = gbPages AnchorSideRight.Control = gbPages
AnchorSideRight.Side = asrBottom AnchorSideRight.Side = asrBottom
Left = 104 Left = 104
Height = 31 Height = 21
Top = 114 Top = 98
Width = 148 Width = 148
Anchors = [akTop, akRight] Anchors = [akTop, akRight]
AutoComplete = False
AutoSelect = True
BorderSpacing.Right = 6 BorderSpacing.Right = 6
ItemHeight = 0 ItemHeight = 13
ItemIndex = 0 ItemIndex = 0
Items.Strings = ( Items.Strings = (
'All pages' 'All pages'
'Odd pages' 'Odd pages'
'Even pages' 'Even pages'
) )
ItemWidth = 0
Style = csDropDownList Style = csDropDownList
TabOrder = 1 TabOrder = 1
Text = 'All pages' Text = 'All pages'
@ -224,58 +220,51 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Control = rbAllPage AnchorSideTop.Control = rbAllPage
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 14 Left = 14
Height = 22 Height = 17
Top = 28 Top = 23
Width = 108 Width = 82
AllowGrayed = True
BorderSpacing.Around = 2 BorderSpacing.Around = 2
Caption = 'Current page' Caption = 'Current page'
DragCursor = crDefault DragCursor = crDefault
Enabled = False Enabled = False
TabOrder = 2 TabOrder = 2
TabStop = False
end end
object rbRange: TRadioButton object rbRange: TRadioButton
AnchorSideTop.Control = rbSelection AnchorSideTop.Control = rbSelection
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 14 Left = 14
Height = 22 Height = 17
Top = 76 Top = 61
Width = 64 Width = 49
AllowGrayed = True
BorderSpacing.Around = 2 BorderSpacing.Around = 2
Caption = 'Range' Caption = 'Range'
DragCursor = crDefault DragCursor = crDefault
TabOrder = 4 TabOrder = 4
TabStop = False
end end
object rbAllPage: TRadioButton object rbAllPage: TRadioButton
Left = 14 Left = 14
Height = 22 Height = 17
Top = 0 Top = 0
Width = 43 Width = 32
AllowGrayed = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = 'All ' Caption = 'All '
Checked = True Checked = True
DragCursor = crDefault DragCursor = crDefault
State = cbChecked
TabOrder = 3 TabOrder = 3
TabStop = True
end end
object rbSelection: TRadioButton object rbSelection: TRadioButton
AnchorSideTop.Control = rbCurrentPage AnchorSideTop.Control = rbCurrentPage
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 14 Left = 14
Height = 22 Height = 17
Top = 52 Top = 42
Width = 83 Width = 61
AllowGrayed = True
BorderSpacing.Around = 2 BorderSpacing.Around = 2
Caption = 'Selection' Caption = 'Selection'
DragCursor = crDefault DragCursor = crDefault
Enabled = False Enabled = False
TabOrder = 5 TabOrder = 5
TabStop = False
end end
end end
object gbCopies: TGroupBox object gbCopies: TGroupBox
@ -286,21 +275,21 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideBottom.Control = pgCopies AnchorSideBottom.Control = pgCopies
AnchorSideBottom.Side = asrBottom AnchorSideBottom.Side = asrBottom
Left = 276 Left = 276
Height = 1 Height = 143
Top = 7 Top = 7
Width = 234 Width = 228
Anchors = [akTop, akLeft, akRight, akBottom] Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = ' Copies ' Caption = ' Copies '
ClientHeight = 1 ClientHeight = 125
ClientWidth = 230 ClientWidth = 224
TabOrder = 1 TabOrder = 1
object imgCollate: TImage object imgCollate: TImage
AnchorSideTop.Control = lanNumCopies AnchorSideTop.Control = lanNumCopies
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 6 Left = 6
Height = 37 Height = 37
Top = 30 Top = 26
Width = 93 Width = 93
AutoSize = True AutoSize = True
BorderSpacing.Top = 6 BorderSpacing.Top = 6
@ -308,9 +297,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
end end
object lanNumCopies: TLabel object lanNumCopies: TLabel
Left = 6 Left = 6
Height = 18 Height = 14
Top = 6 Top = 6
Width = 114 Width = 84
Caption = 'Number of copies' Caption = 'Number of copies'
ParentColor = False ParentColor = False
end end
@ -319,9 +308,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideLeft.Side = asrBottom AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lanNumCopies AnchorSideTop.Control = lanNumCopies
AnchorSideTop.Side = asrCenter AnchorSideTop.Side = asrCenter
Left = 126 Left = 96
Height = 20 Height = 21
Top = 5 Top = 3
Width = 50 Width = 50
BorderSpacing.Left = 6 BorderSpacing.Left = 6
TabOrder = 0 TabOrder = 0
@ -330,9 +319,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Control = edCopies AnchorSideTop.Control = edCopies
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 119 Left = 119
Height = 22 Height = 17
Top = 31 Top = 30
Width = 68 Width = 51
AllowGrayed = True AllowGrayed = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = 'Collate' Caption = 'Collate'
@ -344,9 +333,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Control = cbCollate AnchorSideTop.Control = cbCollate
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 119 Left = 119
Height = 22 Height = 17
Top = 59 Top = 53
Width = 74 Width = 58
AllowGrayed = True AllowGrayed = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = 'Reverse' Caption = 'Reverse'
@ -356,15 +345,15 @@ object dlgSelectPrinter: TdlgSelectPrinter
end end
end end
end end
object pgAdvance: TPage object pgAdvance: TTabSheet
Caption = 'Advanced' Caption = 'Advanced'
ClientWidth = 516 ClientHeight = 156
ClientHeight = 1 ClientWidth = 510
object labTask: TLabel object labTask: TLabel
Left = 7 Left = 7
Height = 16 Height = 14
Top = 10 Top = 10
Width = 82 Width = 63
Caption = 'Delayed task' Caption = 'Delayed task'
ParentColor = False ParentColor = False
end end
@ -372,9 +361,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Control = labTask AnchorSideTop.Control = labTask
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 7 Left = 7
Height = 16 Height = 14
Top = 52 Top = 50
Width = 44 Width = 35
BorderSpacing.Top = 20 BorderSpacing.Top = 20
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = 'Priority' Caption = 'Priority'
@ -382,11 +371,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
end end
object cbTasktime: TComboBox object cbTasktime: TComboBox
Left = 215 Left = 215
Height = 29 Height = 21
Top = 7 Top = 7
Width = 200 Width = 200
AutoComplete = False ItemHeight = 13
ItemHeight = 0
ItemIndex = 0 ItemIndex = 0
Items.Strings = ( Items.Strings = (
'Immediate' 'Immediate'
@ -399,7 +387,6 @@ object dlgSelectPrinter: TdlgSelectPrinter
'After midnight' 'After midnight'
'At time' 'At time'
) )
ItemWidth = 0
OnChange = cbTasktimeCHANGE OnChange = cbTasktimeCHANGE
OnKeyPress = cbPrintersKEYPRESS OnKeyPress = cbPrintersKEYPRESS
Style = csDropDownList Style = csDropDownList
@ -408,7 +395,7 @@ object dlgSelectPrinter: TdlgSelectPrinter
end end
object edTimeTask: TEdit object edTimeTask: TEdit
Left = 423 Left = 423
Height = 23 Height = 21
Top = 9 Top = 9
Width = 83 Width = 83
DragCursor = crDefault DragCursor = crDefault
@ -420,8 +407,8 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideTop.Control = PrioLabel AnchorSideTop.Control = PrioLabel
AnchorSideTop.Side = asrCenter AnchorSideTop.Side = asrCenter
Left = 127 Left = 127
Height = 20 Height = 21
Top = 50 Top = 47
Width = 50 Width = 50
TabOrder = 3 TabOrder = 3
end end
@ -434,7 +421,7 @@ object dlgSelectPrinter: TdlgSelectPrinter
AnchorSideRight.Side = asrBottom AnchorSideRight.Side = asrBottom
Left = 183 Left = 183
Height = 38 Height = 38
Top = 41 Top = 38
Width = 320 Width = 320
Frequency = 10 Frequency = 10
Max = 100 Max = 100
@ -450,24 +437,24 @@ object dlgSelectPrinter: TdlgSelectPrinter
end end
object BtnPanel: TPanel object BtnPanel: TPanel
Left = 6 Left = 6
Height = 41 Height = 35
Top = 170 Top = 365
Width = 518 Width = 518
Align = alBottom Align = alBottom
Anchors = [akLeft, akBottom] Anchors = [akLeft, akBottom]
AutoSize = True AutoSize = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
BevelOuter = bvNone BevelOuter = bvNone
ClientHeight = 41 ClientHeight = 35
ClientWidth = 518 ClientWidth = 518
FullRepaint = False FullRepaint = False
TabOrder = 2 TabOrder = 2
TabStop = True TabStop = True
object btnCancel: TButton object btnCancel: TButton
Left = 457 Left = 454
Height = 29 Height = 23
Top = 6 Top = 6
Width = 55 Width = 58
Align = alRight Align = alRight
AutoSize = True AutoSize = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
@ -477,10 +464,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
TabOrder = 0 TabOrder = 0
end end
object btnPrint: TButton object btnPrint: TButton
Left = 410 Left = 400
Height = 29 Height = 23
Top = 6 Top = 6
Width = 41 Width = 48
Align = alRight Align = alRight
AutoSize = True AutoSize = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
@ -492,9 +479,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
end end
object btnReduc: TButton object btnReduc: TButton
Left = 6 Left = 6
Height = 29 Height = 23
Top = 6 Top = 6
Width = 60 Width = 65
Align = alLeft Align = alLeft
AutoSize = True AutoSize = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
@ -503,10 +490,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
TabOrder = 2 TabOrder = 2
end end
object btnPreview: TButton object btnPreview: TButton
Left = 344 Left = 330
Height = 29 Height = 23
Top = 6 Top = 6
Width = 60 Width = 64
Align = alRight Align = alRight
AutoSize = True AutoSize = True
BorderSpacing.Around = 6 BorderSpacing.Around = 6
@ -529,18 +516,18 @@ object dlgSelectPrinter: TdlgSelectPrinter
object labCUPS: TLabel object labCUPS: TLabel
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 8 Left = 8
Height = 16 Height = 14
Top = 3 Top = 3
Width = 233 Width = 180
Caption = 'CUPS (Common Unix Printing System)' Caption = 'CUPS (Common Unix Printing System)'
ParentColor = False ParentColor = False
end end
object labCUPSServer: TLabel object labCUPSServer: TLabel
AnchorSideLeft.Side = asrBottom AnchorSideLeft.Side = asrBottom
Left = 248 Left = 248
Height = 16 Height = 14
Top = 3 Top = 3
Width = 93 Width = 73
Caption = 'labCUPSServer' Caption = 'labCUPSServer'
ParentColor = False ParentColor = False
end end

View File

@ -2,151 +2,148 @@
LazarusResources.Add('TdlgSelectPrinter','FORMDATA',[ LazarusResources.Add('TdlgSelectPrinter','FORMDATA',[
'TPF0'#17'TdlgSelectPrinter'#16'dlgSelectPrinter'#4'Left'#3'J'#1#6'Height'#3 'TPF0'#17'TdlgSelectPrinter'#16'dlgSelectPrinter'#4'Left'#3'J'#1#6'Height'#3
+#217#0#3'Top'#2'o'#5'Width'#3#18#2#13'ActiveControl'#7#7'btnProp'#7'Caption' +#150#1#3'Top'#2'o'#5'Width'#3#18#2#13'ActiveControl'#7#7'btnProp'#7'Caption'
+#6#8'Printing'#12'ClientHeight'#3#217#0#11'ClientWidth'#3#18#2#8'OnCreate'#7 +#6#8'Printing'#12'ClientHeight'#3#150#1#11'ClientWidth'#3#18#2#8'OnCreate'#7
+#22'dlgSelectPrinterCREATE'#6'OnShow'#7#20'dlgSelectPrinterSHOW'#8'Position' +#22'dlgSelectPrinterCREATE'#6'OnShow'#7#20'dlgSelectPrinterSHOW'#8'Position'
+#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9.27'#0#9'TGroupBox'#15'PrinterGr' +#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9.31'#0#9'TGroupBox'#15'PrinterGr'
+'oupbox'#4'Left'#2#6#6'Height'#3#137#0#3'Top'#2#6#5'Width'#3#6#2#5'Align'#7#5 +'oupbox'#4'Left'#2#6#6'Height'#3#137#0#3'Top'#2#6#5'Width'#3#6#2#5'Align'#7#5
+'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#9' Printer '#12'ClientHeig' +'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#9' Printer '#12'ClientHeig'
+'ht'#2'v'#11'ClientWidth'#3#2#2#8'TabOrder'#2#0#0#6'TLabel'#8'labState'#4'Le' +'ht'#2'w'#11'ClientWidth'#3#2#2#8'TabOrder'#2#0#0#6'TLabel'#8'labState'#4'Le'
+'ft'#2'`'#6'Height'#2#18#3'Top'#2'1'#5'Width'#2'7'#7'Caption'#6#8'labState' +'ft'#2'`'#6'Height'#2#14#3'Top'#2'1'#5'Width'#2')'#7'Caption'#6#8'labState'
+#11'ParentColor'#8#0#0#6'TLabel'#11'labLocation'#4'Left'#2'`'#6'Height'#2#18 +#11'ParentColor'#8#0#0#6'TLabel'#11'labLocation'#4'Left'#2'`'#6'Height'#2#14
+#3'Top'#2'I'#5'Width'#2'J'#7'Caption'#6#11'labLocation'#11'ParentColor'#8#0#0 +#3'Top'#2'I'#5'Width'#2'7'#7'Caption'#6#11'labLocation'#11'ParentColor'#8#0#0
+#6'TLabel'#10'labComment'#4'Left'#2'`'#6'Height'#2#18#3'Top'#2'a'#5'Width'#2 +#6'TLabel'#10'labComment'#4'Left'#2'`'#6'Height'#2#14#3'Top'#2'a'#5'Width'#2
+'T'#7'Caption'#6#10'labComment'#11'ParentColor'#8#0#0#6'TImage'#6'ImgPrn'#4 +'<'#7'Caption'#6#10'labComment'#11'ParentColor'#8#0#0#6'TImage'#6'ImgPrn'#4
+'Left'#2'`'#6'Height'#2#17#3'Top'#2#12#5'Width'#2#17#0#0#6'TLabel'#16'Printe' +'Left'#2'`'#6'Height'#2#17#3'Top'#2#12#5'Width'#2#17#0#0#6'TLabel'#16'Printe'
+'rNameLabel'#4'Left'#3#234#0#6'Height'#2#18#3'Top'#2#7#5'Width'#2'('#7'Ancho' +'rNameLabel'#4'Left'#3#240#0#6'Height'#2#14#3'Top'#2#9#5'Width'#2#28#7'Ancho'
+'rs'#11#0#7'Caption'#6#4'Name'#11'ParentColor'#8#0#0#6'TLabel'#17'PrinterSta' +'rs'#11#0#7'Caption'#6#4'Name'#11'ParentColor'#8#0#0#6'TLabel'#17'PrinterSta'
+'teLabel'#4'Left'#2#10#6'Height'#2#18#3'Top'#2'1'#5'Width'#2'$'#7'Caption'#6 +'teLabel'#4'Left'#2#10#6'Height'#2#14#3'Top'#2'1'#5'Width'#2#27#7'Caption'#6
+#5'State'#11'ParentColor'#8#14'OnChangeBounds'#7#29'PrinterStateLabelChangeB' +#5'State'#11'ParentColor'#8#14'OnChangeBounds'#7#29'PrinterStateLabelChangeB'
+'ounds'#0#0#6'TLabel'#20'PrinterLocationLabel'#4'Left'#2#10#6'Height'#2#18#3 +'ounds'#0#0#6'TLabel'#20'PrinterLocationLabel'#4'Left'#2#10#6'Height'#2#14#3
+'Top'#2'I'#5'Width'#2'7'#7'Caption'#6#8'Location'#11'ParentColor'#8#0#0#6'TL' +'Top'#2'I'#5'Width'#2')'#7'Caption'#6#8'Location'#11'ParentColor'#8#0#0#6'TL'
+'abel'#23'PrinterDescriptionLabel'#4'Left'#2#10#6'Height'#2#18#3'Top'#2'a'#5 +'abel'#23'PrinterDescriptionLabel'#4'Left'#2#10#6'Height'#2#14#3'Top'#2'a'#5
+'Width'#2'I'#7'Caption'#6#11'Description'#11'ParentColor'#8#0#0#6'TLabel'#14 +'Width'#2'6'#7'Caption'#6#11'Description'#11'ParentColor'#8#0#0#6'TLabel'#14
+'labPrinterName'#4'Left'#2#10#6'Height'#2#18#3'Top'#2#12#5'Width'#2'('#7'Cap' +'labPrinterName'#4'Left'#2#10#6'Height'#2#14#3'Top'#2#12#5'Width'#2#28#7'Cap'
+'tion'#6#4'Name'#11'ParentColor'#8#14'OnChangeBounds'#7#29'PrinterStateLabel' +'tion'#6#4'Name'#11'ParentColor'#8#14'OnChangeBounds'#7#29'PrinterStateLabel'
+'ChangeBounds'#0#0#7'TButton'#7'btnProp'#4'Left'#3#160#1#6'Height'#2#29#3'To' +'ChangeBounds'#0#0#7'TButton'#7'btnProp'#4'Left'#3#161#1#6'Height'#2#23#3'To'
+'p'#2#6#5'Width'#2']'#7'Anchors'#11#0#8'AutoSize'#9#7'Caption'#6#14'Properti' +'p'#2#9#5'Width'#2'Z'#7'Anchors'#11#0#8'AutoSize'#9#7'Caption'#6#14'Properti'
+'es ...'#7'OnClick'#7#12'btnPropCLICK'#8'TabOrder'#2#0#0#0#9'TCheckBox'#13'c' +'es ...'#7'OnClick'#7#12'btnPropCLICK'#8'TabOrder'#2#0#0#0#9'TCheckBox'#13'c'
+'bPrintToFile'#4'Left'#3#158#1#6'Height'#2#22#3'Top'#2')'#5'Width'#2'\'#7'An' +'bPrintToFile'#4'Left'#3#180#1#6'Height'#2#17#3'Top'#2'/'#5'Width'#2'F'#7'An'
+'chors'#11#7'akRight'#8'akBottom'#0#7'Caption'#6#13'Print to file'#8'TabOrde' +'chors'#11#7'akRight'#8'akBottom'#0#7'Caption'#6#13'Print to file'#8'TabOrde'
+'r'#2#1#0#0#9'TComboBox'#10'cbPrinters'#4'Left'#2'x'#6'Height'#2#31#3'Top'#2 +'r'#2#1#0#0#9'TComboBox'#10'cbPrinters'#4'Left'#2'x'#6'Height'#2#21#3'Top'#2
+#7#5'Width'#3#31#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#12'AutoComp' +#7#5'Width'#3#31#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#10'ItemHeig'
+'lete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2#0#8'OnChange'#7#16'cbPrintersCHAN' +'ht'#2#13#8'OnChange'#7#16'cbPrintersCHANGE'#10'OnKeyPress'#7#18'cbPrintersK'
+'GE'#10'OnKeyPress'#7#18'cbPrintersKEYPRESS'#5'Style'#7#14'csDropDownList'#8 +'EYPRESS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#2#0#0#0#12'TPageContro'
+'TabOrder'#2#2#0#0#0#9'TNotebook'#6'NbOpts'#4'Left'#2#6#6'Height'#2#1#3'Top' +'l'#6'NbOpts'#4'Left'#2#6#6'Height'#3#182#0#3'Top'#3#177#0#5'Width'#3#6#2#10
+#3#174#0#5'Width'#3#6#2#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#0#20 +'ActivePage'#7#8'pgCopies'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#0
+'BorderSpacing.Around'#2#6#9'PageIndex'#2#0#8'TabOrder'#2#1#0#5'TPage'#8'pgC' +#20'BorderSpacing.Around'#2#6#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'
+'opies'#7'Caption'#6#6'Copies'#11'ClientWidth'#3#4#2#12'ClientHeight'#2#1#0#9 +#8'pgCopies'#7'Caption'#6#6'Copies'#12'ClientHeight'#3#156#0#11'ClientWidth'
+'TGroupBox'#7'gbPages'#24'AnchorSideBottom.Control'#7#8'pgCopies'#21'AnchorS' +#3#254#1#0#9'TGroupBox'#7'gbPages'#24'AnchorSideBottom.Control'#7#8'pgCopies'
+'ideBottom.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#1#3'Top'#2#7#5'Width' +#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#3#143#0#3'To'
+#3#6#1#7'Anchors'#11#5'akTop'#6'akLeft'#8'akBottom'#0#20'BorderSpacing.Aroun' +'p'#2#7#5'Width'#3#6#1#7'Anchors'#11#5'akTop'#6'akLeft'#8'akBottom'#0#20'Bor'
+'d'#2#6#7'Caption'#6#14' Select pages '#12'ClientHeight'#2#1#11'ClientWidth' +'derSpacing.Around'#2#6#7'Caption'#6#14' Select pages '#12'ClientHeight'#2'}'
+#3#2#1#8'TabOrder'#2#0#0#6'TBevel'#6'Bevel1'#21'AnchorSideTop.Control'#7#7'e' +#11'ClientWidth'#3#2#1#8'TabOrder'#2#0#0#6'TBevel'#6'Bevel1'#21'AnchorSideTo'
+'dRange'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#18#6'Height'#2#3#3 +'p.Control'#7#7'edRange'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#18#6
+'Top'#2'i'#5'Width'#3#230#0#17'BorderSpacing.Top'#2#6#5'Shape'#7#9'bsTopLine' +'Height'#2#3#3'Top'#2'V'#5'Width'#3#230#0#17'BorderSpacing.Top'#2#6#5'Shape'
+#5'Style'#7#8'bsRaised'#0#0#6'TLabel'#7'labPage'#21'AnchorSideTop.Control'#7 +#7#9'bsTopLine'#5'Style'#7#8'bsRaised'#0#0#6'TLabel'#7'labPage'#21'AnchorSid'
+#6'Bevel1'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14#6'Height'#2#18 +'eTop.Control'#7#6'Bevel1'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14
+#3'Top'#2'x'#5'Width'#2''''#17'BorderSpacing.Top'#2#12#7'Caption'#6#5'Pages' +#6'Height'#2#14#3'Top'#2'e'#5'Width'#2#30#17'BorderSpacing.Top'#2#12#7'Capti'
+#11'ParentColor'#8#0#0#5'TEdit'#7'edRange'#22'AnchorSideLeft.Control'#7#7'rb' +'on'#6#5'Pages'#11'ParentColor'#8#0#0#5'TEdit'#7'edRange'#22'AnchorSideLeft.'
+'Range'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#7 +'Control'#7#7'rbRange'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideT'
+'rbRange'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7 +'op.Control'#7#7'rbRange'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSid'
+#7'gbPages'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2']'#6'Height'#2 +'eRight.Control'#7#7'gbPages'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'
+#23#3'Top'#2'L'#5'Width'#3#159#0#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight' +#2'N'#6'Height'#2#21#3'Top'#2';'#5'Width'#3#174#0#7'Anchors'#11#5'akTop'#6'a'
+#0#18'BorderSpacing.Left'#2#15#19'BorderSpacing.Right'#2#6#8'TabOrder'#2#0#0 +'kLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#15#19'BorderSpacing.Right'#2#6
+#0#9'TComboBox'#9'edPageSet'#21'AnchorSideTop.Control'#7#7'labPage'#18'Ancho' +#8'TabOrder'#2#0#0#0#9'TComboBox'#9'edPageSet'#21'AnchorSideTop.Control'#7#7
+'rSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#7'gbPages'#20'A' +'labPage'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7
+'nchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'h'#6'Height'#2#31#3'Top'#2'r' +#7'gbPages'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'h'#6'Height'#2
+#5'Width'#3#148#0#7'Anchors'#11#5'akTop'#7'akRight'#0#12'AutoComplete'#8#10 +#21#3'Top'#2'b'#5'Width'#3#148#0#7'Anchors'#11#5'akTop'#7'akRight'#0#19'Bord'
+'AutoSelect'#9#19'BorderSpacing.Right'#2#6#10'ItemHeight'#2#0#9'ItemIndex'#2 +'erSpacing.Right'#2#6#10'ItemHeight'#2#13#9'ItemIndex'#2#0#13'Items.Strings'
+#0#13'Items.Strings'#1#6#9'All pages'#6#9'Odd pages'#6#10'Even pages'#0#9'It' +#1#6#9'All pages'#6#9'Odd pages'#6#10'Even pages'#0#5'Style'#7#14'csDropDown'
+'emWidth'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#9'All ' +'List'#8'TabOrder'#2#1#4'Text'#6#9'All pages'#0#0#12'TRadioButton'#13'rbCurr'
+'pages'#0#0#12'TRadioButton'#13'rbCurrentPage'#21'AnchorSideTop.Control'#7#9 +'entPage'#21'AnchorSideTop.Control'#7#9'rbAllPage'#18'AnchorSideTop.Side'#7#9
+'rbAllPage'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14#6'Height'#2#22 +'asrBottom'#4'Left'#2#14#6'Height'#2#17#3'Top'#2#23#5'Width'#2'R'#20'BorderS'
+#3'Top'#2#28#5'Width'#2'l'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#2#7 +'pacing.Around'#2#2#7'Caption'#6#12'Current page'#10'DragCursor'#7#9'crDefau'
+'Caption'#6#12'Current page'#10'DragCursor'#7#9'crDefault'#7'Enabled'#8#8'Ta' +'lt'#7'Enabled'#8#8'TabOrder'#2#2#0#0#12'TRadioButton'#7'rbRange'#21'AnchorS'
,'bOrder'#2#2#7'TabStop'#8#0#0#12'TRadioButton'#7'rbRange'#21'AnchorSideTop.C' ,'ideTop.Control'#7#11'rbSelection'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'L'
+'ontrol'#7#11'rbSelection'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14 +'eft'#2#14#6'Height'#2#17#3'Top'#2'='#5'Width'#2'1'#20'BorderSpacing.Around'
+#6'Height'#2#22#3'Top'#2'L'#5'Width'#2'@'#11'AllowGrayed'#9#20'BorderSpacing' +#2#2#7'Caption'#6#5'Range'#10'DragCursor'#7#9'crDefault'#8'TabOrder'#2#4#0#0
+'.Around'#2#2#7'Caption'#6#5'Range'#10'DragCursor'#7#9'crDefault'#8'TabOrder' +#12'TRadioButton'#9'rbAllPage'#4'Left'#2#14#6'Height'#2#17#3'Top'#2#0#5'Widt'
+#2#4#7'TabStop'#8#0#0#12'TRadioButton'#9'rbAllPage'#4'Left'#2#14#6'Height'#2 +'h'#2' '#20'BorderSpacing.Around'#2#6#7'Caption'#6#4'All '#7'Checked'#9#10'D'
+#22#3'Top'#2#0#5'Width'#2'+'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7 +'ragCursor'#7#9'crDefault'#8'TabOrder'#2#3#7'TabStop'#9#0#0#12'TRadioButton'
+'Caption'#6#4'All '#7'Checked'#9#10'DragCursor'#7#9'crDefault'#5'State'#7#9 +#11'rbSelection'#21'AnchorSideTop.Control'#7#13'rbCurrentPage'#18'AnchorSide'
+'cbChecked'#8'TabOrder'#2#3#0#0#12'TRadioButton'#11'rbSelection'#21'AnchorSi' +'Top.Side'#7#9'asrBottom'#4'Left'#2#14#6'Height'#2#17#3'Top'#2'*'#5'Width'#2
+'deTop.Control'#7#13'rbCurrentPage'#18'AnchorSideTop.Side'#7#9'asrBottom'#4 +'='#20'BorderSpacing.Around'#2#2#7'Caption'#6#9'Selection'#10'DragCursor'#7#9
+'Left'#2#14#6'Height'#2#22#3'Top'#2'4'#5'Width'#2'S'#11'AllowGrayed'#9#20'Bo' +'crDefault'#7'Enabled'#8#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#8'gbCopies'#22'A'
+'rderSpacing.Around'#2#2#7'Caption'#6#9'Selection'#10'DragCursor'#7#9'crDefa' +'nchorSideLeft.Control'#7#7'gbPages'#19'AnchorSideLeft.Side'#7#9'asrBottom'
+'ult'#7'Enabled'#8#8'TabOrder'#2#5#7'TabStop'#8#0#0#0#9'TGroupBox'#8'gbCopie' +#23'AnchorSideRight.Control'#7#8'pgCopies'#20'AnchorSideRight.Side'#7#9'asrB'
+'s'#22'AnchorSideLeft.Control'#7#7'gbPages'#19'AnchorSideLeft.Side'#7#9'asrB' +'ottom'#24'AnchorSideBottom.Control'#7#8'pgCopies'#21'AnchorSideBottom.Side'
+'ottom'#23'AnchorSideRight.Control'#7#8'pgCopies'#20'AnchorSideRight.Side'#7 +#7#9'asrBottom'#4'Left'#3#20#1#6'Height'#3#143#0#3'Top'#2#7#5'Width'#3#228#0
+#9'asrBottom'#24'AnchorSideBottom.Control'#7#8'pgCopies'#21'AnchorSideBottom' +#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacing.'
+'.Side'#7#9'asrBottom'#4'Left'#3#20#1#6'Height'#2#1#3'Top'#2#7#5'Width'#3#234 +'Around'#2#6#7'Caption'#6#8' Copies '#12'ClientHeight'#2'}'#11'ClientWidth'#3
+#0#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacin' +#224#0#8'TabOrder'#2#1#0#6'TImage'#10'imgCollate'#21'AnchorSideTop.Control'#7
+'g.Around'#2#6#7'Caption'#6#8' Copies '#12'ClientHeight'#2#1#11'ClientWidth' +#12'lanNumCopies'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'
+#3#230#0#8'TabOrder'#2#1#0#6'TImage'#10'imgCollate'#21'AnchorSideTop.Control' +#2'%'#3'Top'#2#26#5'Width'#2']'#8'AutoSize'#9#17'BorderSpacing.Top'#2#6#12'P'
+#7#12'lanNumCopies'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Heig' +'roportional'#9#0#0#6'TLabel'#12'lanNumCopies'#4'Left'#2#6#6'Height'#2#14#3
+'ht'#2'%'#3'Top'#2#30#5'Width'#2']'#8'AutoSize'#9#17'BorderSpacing.Top'#2#6 +'Top'#2#6#5'Width'#2'T'#7'Caption'#6#16'Number of copies'#11'ParentColor'#8#0
+#12'Proportional'#9#0#0#6'TLabel'#12'lanNumCopies'#4'Left'#2#6#6'Height'#2#18 +#0#9'TSpinEdit'#8'edCopies'#22'AnchorSideLeft.Control'#7#12'lanNumCopies'#19
+#3'Top'#2#6#5'Width'#2'r'#7'Caption'#6#16'Number of copies'#11'ParentColor'#8 +'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#12'lanNumCo'
+#0#0#9'TSpinEdit'#8'edCopies'#22'AnchorSideLeft.Control'#7#12'lanNumCopies' +'pies'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2'`'#6'Height'#2#21#3'T'
+#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#12'lanNu' +'op'#2#3#5'Width'#2'2'#18'BorderSpacing.Left'#2#6#8'TabOrder'#2#0#0#0#9'TChe'
+'mCopies'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2'~'#6'Height'#2#20#3 +'ckBox'#9'cbCollate'#21'AnchorSideTop.Control'#7#8'edCopies'#18'AnchorSideTo'
+'Top'#2#5#5'Width'#2'2'#18'BorderSpacing.Left'#2#6#8'TabOrder'#2#0#0#0#9'TCh' +'p.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#17#3'Top'#2#30#5'Width'#2'3'
+'eckBox'#9'cbCollate'#21'AnchorSideTop.Control'#7#8'edCopies'#18'AnchorSideT' +#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Collate'#10'D'
+'op.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#22#3'Top'#2#31#5'Width'#2 +'ragCursor'#7#9'crDefault'#7'OnClick'#7#14'cbReverseCLICK'#8'TabOrder'#2#2#0
+'D'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Collate'#10
+'DragCursor'#7#9'crDefault'#7'OnClick'#7#14'cbReverseCLICK'#8'TabOrder'#2#2#0
+#0#9'TCheckBox'#9'cbReverse'#21'AnchorSideTop.Control'#7#9'cbCollate'#18'Anc' +#0#9'TCheckBox'#9'cbReverse'#21'AnchorSideTop.Control'#7#9'cbCollate'#18'Anc'
+'horSideTop.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#22#3'Top'#2';'#5'W' +'horSideTop.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#17#3'Top'#2'5'#5'W'
+'idth'#2'J'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Re' +'idth'#2':'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Re'
+'verse'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#14'cbReverseCLICK'#8'TabO' +'verse'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#14'cbReverseCLICK'#8'TabO'
+'rder'#2#1#0#0#0#0#5'TPage'#9'pgAdvance'#7'Caption'#6#8'Advanced'#11'ClientW' +'rder'#2#1#0#0#0#0#9'TTabSheet'#9'pgAdvance'#7'Caption'#6#8'Advanced'#12'Cli'
+'idth'#3#4#2#12'ClientHeight'#2#1#0#6'TLabel'#7'labTask'#4'Left'#2#7#6'Heigh' +'entHeight'#3#156#0#11'ClientWidth'#3#254#1#0#6'TLabel'#7'labTask'#4'Left'#2
+'t'#2#16#3'Top'#2#10#5'Width'#2'R'#7'Caption'#6#12'Delayed task'#11'ParentCo' +#7#6'Height'#2#14#3'Top'#2#10#5'Width'#2'?'#7'Caption'#6#12'Delayed task'#11
+'lor'#8#0#0#6'TLabel'#9'PrioLabel'#21'AnchorSideTop.Control'#7#7'labTask'#18 +'ParentColor'#8#0#0#6'TLabel'#9'PrioLabel'#21'AnchorSideTop.Control'#7#7'lab'
+'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#7#6'Height'#2#16#3'Top'#2'4'#5 +'Task'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#7#6'Height'#2#14#3'To'
+'Width'#2','#17'BorderSpacing.Top'#2#20#20'BorderSpacing.Around'#2#6#7'Capti' +'p'#2'2'#5'Width'#2'#'#17'BorderSpacing.Top'#2#20#20'BorderSpacing.Around'#2
+'on'#6#8'Priority'#11'ParentColor'#8#0#0#9'TComboBox'#10'cbTasktime'#4'Left' +#6#7'Caption'#6#8'Priority'#11'ParentColor'#8#0#0#9'TComboBox'#10'cbTasktime'
+#3#215#0#6'Height'#2#29#3'Top'#2#7#5'Width'#3#200#0#12'AutoComplete'#8#10'It' +#4'Left'#3#215#0#6'Height'#2#21#3'Top'#2#7#5'Width'#3#200#0#10'ItemHeight'#2
+'emHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9'Immediate'#6#18'Neve' +#13#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9'Immediate'#6#18'Never (suspendi'
+'r (suspending)'#6#14'during the day'#6#7'evening'#6#5'night'#6#7'Weekend'#6 +'ng)'#6#14'during the day'#6#7'evening'#6#5'night'#6#7'Weekend'#6#23'After c'
+#23'After close of business'#6#14'After midnight'#6#7'At time'#0#9'ItemWidth' +'lose of business'#6#14'After midnight'#6#7'At time'#0#8'OnChange'#7#16'cbTa'
+#2#0#8'OnChange'#7#16'cbTasktimeCHANGE'#10'OnKeyPress'#7#18'cbPrintersKEYPRE' +'sktimeCHANGE'#10'OnKeyPress'#7#18'cbPrintersKEYPRESS'#5'Style'#7#14'csDropD'
+'SS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#9'Immediate'#0#0 +'ownList'#8'TabOrder'#2#1#4'Text'#6#9'Immediate'#0#0#5'TEdit'#10'edTimeTask'
+#5'TEdit'#10'edTimeTask'#4'Left'#3#167#1#6'Height'#2#23#3'Top'#2#9#5'Width'#2 +#4'Left'#3#167#1#6'Height'#2#21#3'Top'#2#9#5'Width'#2'S'#10'DragCursor'#7#9
+'S'#10'DragCursor'#7#9'crDefault'#9'MaxLength'#2#8#8'TabOrder'#2#0#4'Text'#6 +'crDefault'#9'MaxLength'#2#8#8'TabOrder'#2#0#4'Text'#6#8'23:00:00'#0#0#9'TSp'
+#8'23:00:00'#0#0#9'TSpinEdit'#10'edPriority'#21'AnchorSideTop.Control'#7#9'P' +'inEdit'#10'edPriority'#21'AnchorSideTop.Control'#7#9'PrioLabel'#18'AnchorSi'
+'rioLabel'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2''#6'Height'#2#20 +'deTop.Side'#7#9'asrCenter'#4'Left'#2#127#6'Height'#2#21#3'Top'#2'/'#5'Width'
+#3'Top'#2'2'#5'Width'#2'2'#8'TabOrder'#2#3#0#0#9'TTrackBar'#11'tkbPriority' +#2'2'#8'TabOrder'#2#3#0#0#9'TTrackBar'#11'tkbPriority'#22'AnchorSideLeft.Con'
+#22'AnchorSideLeft.Control'#7#10'edPriority'#19'AnchorSideLeft.Side'#7#9'asr' +'trol'#7#10'edPriority'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSide'
+'Bottom'#21'AnchorSideTop.Control'#7#9'PrioLabel'#18'AnchorSideTop.Side'#7#9 +'Top.Control'#7#9'PrioLabel'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'Anchor'
+'asrCenter'#23'AnchorSideRight.Control'#7#9'pgAdvance'#20'AnchorSideRight.Si' +'SideRight.Control'#7#9'pgAdvance'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
+'de'#7#9'asrBottom'#4'Left'#3#183#0#6'Height'#2'&'#3'Top'#2')'#5'Width'#3'@' +'Left'#3#183#0#6'Height'#2'&'#3'Top'#2'&'#5'Width'#3'@'#1#9'Frequency'#2#10#3
+#1#9'Frequency'#2#10#3'Max'#2'd'#8'OnChange'#7#17'tkbPriorityCHANGE'#8'Posit' +'Max'#2'd'#8'OnChange'#7#17'tkbPriorityCHANGE'#8'Position'#2#10#7'TabStop'#8
+'ion'#2#10#7'TabStop'#8#9'TickMarks'#7#6'tmBoth'#20'BorderSpacing.Around'#2#6 +#9'TickMarks'#7#6'tmBoth'#20'BorderSpacing.Around'#2#6#10'DragCursor'#7#9'cr'
+#10'DragCursor'#7#9'crDefault'#8'TabOrder'#2#2#0#0#0#0#6'TPanel'#8'BtnPanel' +'Default'#8'TabOrder'#2#2#0#0#0#0#6'TPanel'#8'BtnPanel'#4'Left'#2#6#6'Height'
+#4'Left'#2#6#6'Height'#2')'#3'Top'#3#170#0#5'Width'#3#6#2#5'Align'#7#8'alBot' +#2'#'#3'Top'#3'm'#1#5'Width'#3#6#2#5'Align'#7#8'alBottom'#7'Anchors'#11#6'ak'
+'tom'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.A' +'Left'#8'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#10'BevelOute'
+'round'#2#6#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'ClientWidth' +'r'#7#6'bvNone'#12'ClientHeight'#2'#'#11'ClientWidth'#3#6#2#11'FullRepaint'#8
+#3#6#2#11'FullRepaint'#8#8'TabOrder'#2#2#7'TabStop'#9#0#7'TButton'#9'btnCanc' +#8'TabOrder'#2#2#7'TabStop'#9#0#7'TButton'#9'btnCancel'#4'Left'#3#198#1#6'He'
,'el'#4'Left'#3#201#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2'7'#5'Align'#7#7'al' +'ight'#2#23#3'Top'#2#6#5'Width'#2':'#5'Align'#7#7'alRight'#8'AutoSize'#9#20
+'Right'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#6'Cancel'#9#7'Caption'#6#6 +'BorderSpacing.Around'#2#6#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'
+'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#0#0#0#7'TButton'#8'btnPrint'#4'Le' ,#2#2#8'TabOrder'#2#0#0#0#7'TButton'#8'btnPrint'#4'Left'#3#144#1#6'Height'#2
+'ft'#3#154#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2')'#5'Align'#7#7'alRight'#8 +#23#3'Top'#2#6#5'Width'#2'0'#5'Align'#7#7'alRight'#8'AutoSize'#9#20'BorderSp'
+'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#5'Print'#7'Default'#9 +'acing.Around'#2#6#7'Caption'#6#5'Print'#7'Default'#9#11'ModalResult'#2#1#7
+#11'ModalResult'#2#1#7'OnClick'#7#13'btnPrintCLICK'#8'TabOrder'#2#1#0#0#7'TB' +'OnClick'#7#13'btnPrintCLICK'#8'TabOrder'#2#1#0#0#7'TButton'#8'btnReduc'#4'L'
+'utton'#8'btnReduc'#4'Left'#2#6#6'Height'#2#29#3'Top'#2#6#5'Width'#2'<'#5'Al' +'eft'#2#6#6'Height'#2#23#3'Top'#2#6#5'Width'#2'A'#5'Align'#7#6'alLeft'#8'Aut'
+'ign'#7#6'alLeft'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#8 +'oSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#8'More ...'#7'OnClick'#7
+'More ...'#7'OnClick'#7#13'btnReducCLICK'#8'TabOrder'#2#2#0#0#7'TButton'#10 +#13'btnReducCLICK'#8'TabOrder'#2#2#0#0#7'TButton'#10'btnPreview'#4'Left'#3'J'
+'btnPreview'#4'Left'#3'X'#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2'<'#5'Align' +#1#6'Height'#2#23#3'Top'#2#6#5'Width'#2'@'#5'Align'#7#7'alRight'#8'AutoSize'
+#7#7'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Prev' +#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Preview'#11'ModalResult'#2#6#8
+'iew'#11'ModalResult'#2#6#8'TabOrder'#2#3#0#0#0#6'TPanel'#9'panLabels'#4'Lef' +'TabOrder'#2#3#0#0#0#6'TPanel'#9'panLabels'#4'Left'#2#6#6'Height'#2#22#3'Top'
+'t'#2#6#6'Height'#2#22#3'Top'#3#149#0#5'Width'#3#6#2#5'Align'#7#5'alTop'#20 +#3#149#0#5'Width'#3#6#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#10
+'BorderSpacing.Around'#2#6#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2#22 +'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2#22#11'ClientWidth'#3#6#2#8'TabOr'
+#11'ClientWidth'#3#6#2#8'TabOrder'#2#3#0#6'TLabel'#7'labCUPS'#18'AnchorSideT' +'der'#2#3#0#6'TLabel'#7'labCUPS'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Lef'
+'op.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#16#3'Top'#2#3#5'Width'#3#233 +'t'#2#8#6'Height'#2#14#3'Top'#2#3#5'Width'#3#180#0#7'Caption'#6'"CUPS (Commo'
+#0#7'Caption'#6'"CUPS (Common Unix Printing System)'#11'ParentColor'#8#0#0#6 +'n Unix Printing System)'#11'ParentColor'#8#0#0#6'TLabel'#13'labCUPSServer'
+'TLabel'#13'labCUPSServer'#19'AnchorSideLeft.Side'#7#9'asrBottom'#4'Left'#3 +#19'AnchorSideLeft.Side'#7#9'asrBottom'#4'Left'#3#248#0#6'Height'#2#14#3'Top'
+#248#0#6'Height'#2#16#3'Top'#2#3#5'Width'#2']'#7'Caption'#6#13'labCUPSServer' +#2#3#5'Width'#2'I'#7'Caption'#6#13'labCUPSServer'#11'ParentColor'#8#0#0#0#0
+#11'ParentColor'#8#0#0#0#0
]); ]);

View File

@ -84,8 +84,8 @@ type
labState: TLABEL; labState: TLABEL;
edTimeTask: TEDIT; edTimeTask: TEDIT;
NbOpts: TNOTEBOOK; NbOpts: TNOTEBOOK;
pgAdvance: TPAGE; pgAdvance: TTabSheet;
pgCopies: TPAGE; pgCopies: TTabSheet;
BtnPanel: TPanel; BtnPanel: TPanel;
rbSelection: TRadioButton; rbSelection: TRadioButton;
rbRange: TRADIOBUTTON; rbRange: TRADIOBUTTON;