mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 02:39:37 +02:00
Components, Printers: fixed to use TPageControl
git-svn-id: trunk@29585 -
This commit is contained in:
parent
a460a9d3ee
commit
a6788bcd99
@ -11,7 +11,7 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
|
||||
OnDestroy = FormDestroy
|
||||
OnShow = dlgpropertiesprinterSHOW
|
||||
Position = poScreenCenter
|
||||
LCLVersion = '0.9.27'
|
||||
LCLVersion = '0.9.31'
|
||||
object Panel1: TPanel
|
||||
Left = 0
|
||||
Height = 41
|
||||
@ -50,83 +50,78 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
|
||||
TabOrder = 1
|
||||
end
|
||||
end
|
||||
object Notebook1: TNotebook
|
||||
object Notebook1: TPageControl
|
||||
Left = 0
|
||||
Height = 423
|
||||
Top = 0
|
||||
Width = 457
|
||||
ActivePage = pgGeneral
|
||||
Align = alClient
|
||||
PageIndex = 0
|
||||
TabIndex = 0
|
||||
TabOrder = 1
|
||||
object pgGeneral: TPage
|
||||
object pgGeneral: TTabSheet
|
||||
Caption = 'General'
|
||||
ClientWidth = 451
|
||||
ClientHeight = 390
|
||||
ClientHeight = 397
|
||||
ClientWidth = 449
|
||||
object labPaperSize: TLabel
|
||||
Left = 15
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 19
|
||||
Width = 64
|
||||
Width = 50
|
||||
Caption = 'Paper size'
|
||||
ParentColor = False
|
||||
end
|
||||
object labPaperType: TLabel
|
||||
Left = 15
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 55
|
||||
Width = 68
|
||||
Width = 54
|
||||
Caption = 'Paper type'
|
||||
ParentColor = False
|
||||
end
|
||||
object labPaperSrc: TLabel
|
||||
Left = 15
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 92
|
||||
Width = 84
|
||||
Width = 64
|
||||
Caption = 'Paper source'
|
||||
ParentColor = False
|
||||
end
|
||||
object labResolution: TLabel
|
||||
Left = 15
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 125
|
||||
Width = 66
|
||||
Width = 51
|
||||
Caption = 'Resolution'
|
||||
ParentColor = False
|
||||
end
|
||||
object cbPaperSize: TComboBox
|
||||
Left = 130
|
||||
Height = 29
|
||||
Height = 21
|
||||
Top = 9
|
||||
Width = 310
|
||||
AutoComplete = False
|
||||
DropDownCount = 10
|
||||
ItemHeight = 0
|
||||
ItemWidth = 0
|
||||
ItemHeight = 13
|
||||
OnKeyPress = cbPaperSizeKEYPRESS
|
||||
Style = csDropDownList
|
||||
TabOrder = 0
|
||||
end
|
||||
object cbPaperType: TComboBox
|
||||
Left = 130
|
||||
Height = 29
|
||||
Height = 21
|
||||
Top = 45
|
||||
Width = 310
|
||||
AutoComplete = False
|
||||
ItemHeight = 0
|
||||
ItemWidth = 0
|
||||
ItemHeight = 13
|
||||
OnKeyPress = cbPaperSizeKEYPRESS
|
||||
Style = csDropDownList
|
||||
TabOrder = 1
|
||||
end
|
||||
object cbPaperSrc: TComboBox
|
||||
Left = 130
|
||||
Height = 29
|
||||
Height = 21
|
||||
Top = 81
|
||||
Width = 310
|
||||
AutoComplete = False
|
||||
ItemHeight = 0
|
||||
ItemWidth = 0
|
||||
ItemHeight = 13
|
||||
OnKeyPress = cbPaperSizeKEYPRESS
|
||||
Style = csDropDownList
|
||||
TabOrder = 3
|
||||
@ -137,7 +132,7 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
|
||||
Top = 162
|
||||
Width = 233
|
||||
Caption = ' Orientation '
|
||||
ClientHeight = 102
|
||||
ClientHeight = 101
|
||||
ClientWidth = 229
|
||||
TabOrder = 5
|
||||
object imgOrientation: TImage
|
||||
@ -148,52 +143,45 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
|
||||
end
|
||||
object rbPortrait: TRadioButton
|
||||
Left = 7
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 5
|
||||
Width = 71
|
||||
AllowGrayed = True
|
||||
Width = 54
|
||||
Caption = 'Portrait'
|
||||
Checked = True
|
||||
DragCursor = crDefault
|
||||
OnClick = rbPortraitCLICK
|
||||
State = cbChecked
|
||||
TabOrder = 0
|
||||
TabStop = True
|
||||
end
|
||||
object rbLandscape: TRadioButton
|
||||
Left = 7
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 29
|
||||
Width = 92
|
||||
AllowGrayed = True
|
||||
Width = 69
|
||||
Caption = 'Landscape'
|
||||
DragCursor = crDefault
|
||||
OnClick = rbPortraitCLICK
|
||||
TabOrder = 1
|
||||
TabStop = False
|
||||
end
|
||||
object rbrev_Landscape: TRadioButton
|
||||
Left = 7
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 53
|
||||
Width = 142
|
||||
AllowGrayed = True
|
||||
Width = 109
|
||||
Caption = 'Reverse landscape'
|
||||
DragCursor = crDefault
|
||||
OnClick = rbPortraitCLICK
|
||||
TabOrder = 2
|
||||
TabStop = False
|
||||
end
|
||||
object rbrev_portrait: TRadioButton
|
||||
Left = 7
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 77
|
||||
Width = 124
|
||||
AllowGrayed = True
|
||||
Width = 97
|
||||
Caption = 'Reverse portrait'
|
||||
DragCursor = crDefault
|
||||
OnClick = rbPortraitCLICK
|
||||
TabOrder = 3
|
||||
TabStop = False
|
||||
end
|
||||
end
|
||||
object gbBanners: TGroupBox
|
||||
@ -202,45 +190,41 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
|
||||
Top = 290
|
||||
Width = 427
|
||||
Caption = ' Banners '
|
||||
ClientHeight = 79
|
||||
ClientHeight = 78
|
||||
ClientWidth = 423
|
||||
TabOrder = 2
|
||||
object labBanStart: TLabel
|
||||
Left = 6
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 9
|
||||
Width = 32
|
||||
Width = 25
|
||||
Caption = 'Start'
|
||||
ParentColor = False
|
||||
end
|
||||
object labBanEnd: TLabel
|
||||
Left = 6
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 49
|
||||
Width = 25
|
||||
Width = 19
|
||||
Caption = 'End'
|
||||
ParentColor = False
|
||||
end
|
||||
object cbBanStart: TComboBox
|
||||
Left = 94
|
||||
Height = 29
|
||||
Height = 21
|
||||
Top = 1
|
||||
Width = 317
|
||||
AutoComplete = False
|
||||
ItemHeight = 0
|
||||
ItemWidth = 0
|
||||
ItemHeight = 13
|
||||
OnKeyPress = cbPaperSizeKEYPRESS
|
||||
Style = csDropDownList
|
||||
TabOrder = 0
|
||||
end
|
||||
object cbBanEnd: TComboBox
|
||||
Left = 94
|
||||
Height = 29
|
||||
Height = 21
|
||||
Top = 41
|
||||
Width = 317
|
||||
AutoComplete = False
|
||||
ItemHeight = 0
|
||||
ItemWidth = 0
|
||||
ItemHeight = 13
|
||||
OnKeyPress = cbPaperSizeKEYPRESS
|
||||
Style = csDropDownList
|
||||
TabOrder = 1
|
||||
@ -252,7 +236,7 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
|
||||
Top = 163
|
||||
Width = 185
|
||||
Caption = ' Pages per sheet '
|
||||
ClientHeight = 101
|
||||
ClientHeight = 100
|
||||
ClientWidth = 181
|
||||
TabOrder = 4
|
||||
object imgPageSheet: TImage
|
||||
@ -263,67 +247,60 @@ object dlgpropertiesprinter: Tdlgpropertiesprinter
|
||||
end
|
||||
object rbSheet1: TRadioButton
|
||||
Left = 6
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 5
|
||||
Width = 32
|
||||
AllowGrayed = True
|
||||
Width = 24
|
||||
Caption = '1'
|
||||
Checked = True
|
||||
DragCursor = crDefault
|
||||
OnClick = rbPortraitCLICK
|
||||
State = cbChecked
|
||||
TabOrder = 0
|
||||
TabStop = True
|
||||
end
|
||||
object rbSheet2: TRadioButton
|
||||
Left = 6
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 29
|
||||
Width = 32
|
||||
AllowGrayed = True
|
||||
Width = 24
|
||||
Caption = '2'
|
||||
DragCursor = crDefault
|
||||
OnClick = rbPortraitCLICK
|
||||
TabOrder = 1
|
||||
TabStop = False
|
||||
end
|
||||
object rbSheet4: TRadioButton
|
||||
Left = 6
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 53
|
||||
Width = 32
|
||||
AllowGrayed = True
|
||||
Width = 24
|
||||
Caption = '4'
|
||||
DragCursor = crDefault
|
||||
OnClick = rbPortraitCLICK
|
||||
TabOrder = 2
|
||||
TabStop = False
|
||||
end
|
||||
end
|
||||
object cbResolution: TComboBox
|
||||
Left = 130
|
||||
Height = 29
|
||||
Height = 21
|
||||
Top = 117
|
||||
Width = 310
|
||||
AutoComplete = False
|
||||
ItemHeight = 0
|
||||
ItemWidth = 0
|
||||
ItemHeight = 13
|
||||
OnKeyPress = cbPaperSizeKEYPRESS
|
||||
Style = csDropDownList
|
||||
TabOrder = 6
|
||||
end
|
||||
end
|
||||
object pgMargins: TPage
|
||||
object pgMargins: TTabSheet
|
||||
Caption = 'Margins'
|
||||
end
|
||||
object pgAdvanced: TPage
|
||||
object pgAdvanced: TTabSheet
|
||||
Caption = 'Advanced'
|
||||
ClientWidth = 451
|
||||
ClientHeight = 390
|
||||
ClientHeight = 397
|
||||
ClientWidth = 449
|
||||
object sb: TScrollBox
|
||||
Left = 0
|
||||
Height = 390
|
||||
Height = 397
|
||||
Top = 0
|
||||
Width = 451
|
||||
Width = 449
|
||||
Align = alClient
|
||||
TabOrder = 0
|
||||
end
|
||||
|
@ -6,7 +6,7 @@ LazarusResources.Add('Tdlgpropertiesprinter','FORMDATA',[
|
||||
+#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
|
||||
+'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'
|
||||
+'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
|
||||
@ -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
|
||||
+'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'
|
||||
+'on'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#0#9'TNoteb'
|
||||
+'ook'#9'Notebook1'#4'Left'#2#0#6'Height'#3#167#1#3'Top'#2#0#5'Width'#3#201#1
|
||||
+#5'Align'#7#8'alClient'#9'PageIndex'#2#0#8'TabOrder'#2#1#0#5'TPage'#9'pgGene'
|
||||
+'ral'#7'Caption'#6#7'General'#11'ClientWidth'#3#195#1#12'ClientHeight'#3#134
|
||||
+#1#0#6'TLabel'#12'labPaperSize'#4'Left'#2#15#6'Height'#2#16#3'Top'#2#19#5'Wi'
|
||||
+'dth'#2'@'#7'Caption'#6#10'Paper size'#11'ParentColor'#8#0#0#6'TLabel'#12'la'
|
||||
+'bPaperType'#4'Left'#2#15#6'Height'#2#16#3'Top'#2'7'#5'Width'#2'D'#7'Caption'
|
||||
+#6#10'Paper type'#11'ParentColor'#8#0#0#6'TLabel'#11'labPaperSrc'#4'Left'#2
|
||||
+#15#6'Height'#2#16#3'Top'#2'\'#5'Width'#2'T'#7'Caption'#6#12'Paper source'#11
|
||||
+'ParentColor'#8#0#0#6'TLabel'#13'labResolution'#4'Left'#2#15#6'Height'#2#16#3
|
||||
+'Top'#2'}'#5'Width'#2'B'#7'Caption'#6#10'Resolution'#11'ParentColor'#8#0#0#9
|
||||
+'TComboBox'#11'cbPaperSize'#4'Left'#3#130#0#6'Height'#2#29#3'Top'#2#9#5'Widt'
|
||||
+'h'#3'6'#1#12'AutoComplete'#8#13'DropDownCount'#2#10#10'ItemHeight'#2#0#9'It'
|
||||
+'emWidth'#2#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropD'
|
||||
+'ownList'#8'TabOrder'#2#0#0#0#9'TComboBox'#11'cbPaperType'#4'Left'#3#130#0#6
|
||||
+'Height'#2#29#3'Top'#2'-'#5'Width'#3'6'#1#12'AutoComplete'#8#10'ItemHeight'#2
|
||||
+#0#9'ItemWidth'#2#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'c'
|
||||
+'sDropDownList'#8'TabOrder'#2#1#0#0#9'TComboBox'#10'cbPaperSrc'#4'Left'#3#130
|
||||
+#0#6'Height'#2#29#3'Top'#2'Q'#5'Width'#3'6'#1#12'AutoComplete'#8#10'ItemHeig'
|
||||
+'ht'#2#0#9'ItemWidth'#2#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7
|
||||
+#14'csDropDownList'#8'TabOrder'#2#3#0#0#9'TGroupBox'#13'gbOrientation'#4'Lef'
|
||||
+'t'#2#13#6'Height'#2'w'#3'Top'#3#162#0#5'Width'#3#233#0#7'Caption'#6#13' Ori'
|
||||
+'entation '#12'ClientHeight'#2'f'#11'ClientWidth'#3#229#0#8'TabOrder'#2#5#0#6
|
||||
+'TImage'#14'imgOrientation'#4'Left'#3#167#0#6'Height'#2'0'#3'Top'#2#25#5'Wid'
|
||||
+'th'#2'4'#0#0#12'TRadioButton'#10'rbPortrait'#4'Left'#2#7#6'Height'#2#22#3'T'
|
||||
+'op'#2#5#5'Width'#2'G'#11'AllowGrayed'#9#7'Caption'#6#8'Portrait'#7'Checked'
|
||||
+#9#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#5'State'#7
|
||||
+#9'cbChecked'#8'TabOrder'#2#0#0#0#12'TRadioButton'#11'rbLandscape'#4'Left'#2
|
||||
+#7#6'Height'#2#22#3'Top'#2#29#5'Width'#2'\'#11'AllowGrayed'#9#7'Caption'#6#9
|
||||
+'Landscape'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8
|
||||
+'TabOrder'#2#1#7'TabStop'#8#0#0#12'TRadioButton'#15'rbrev_Landscape'#4'Left'
|
||||
+#2#7#6'Height'#2#22#3'Top'#2'5'#5'Width'#3#142#0#11'AllowGrayed'#9#7'Caption'
|
||||
+#6#17'Reverse landscape'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPor'
|
||||
+'traitCLICK'#8'TabOrder'#2#2#7'TabStop'#8#0#0#12'TRadioButton'#14'rbrev_port'
|
||||
+'rait'#4'Left'#2#7#6'Height'#2#22#3'Top'#2'M'#5'Width'#2'|'#11'AllowGrayed'#9
|
||||
+#7'Caption'#6#16'Reverse portrait'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7
|
||||
+#15'rbPortraitCLICK'#8'TabOrder'#2#3#7'TabStop'#8#0#0#0#9'TGroupBox'#9'gbBan'
|
||||
+'ners'#4'Left'#2#13#6'Height'#2'`'#3'Top'#3'"'#1#5'Width'#3#171#1#7'Caption'
|
||||
+#6#9' Banners '#12'ClientHeight'#2'O'#11'ClientWidth'#3#167#1#8'TabOrder'#2#2
|
||||
+#0#6'TLabel'#11'labBanStart'#4'Left'#2#6#6'Height'#2#16#3'Top'#2#9#5'Width'#2
|
||||
+' '#7'Caption'#6#5'Start'#11'ParentColor'#8#0#0#6'TLabel'#9'labBanEnd'#4'Lef'
|
||||
+'t'#2#6#6'Height'#2#16#3'Top'#2'1'#5'Width'#2#25#7'Caption'#6#3'End'#11'Pare'
|
||||
+'ntColor'#8#0#0#9'TComboBox'#10'cbBanStart'#4'Left'#2'^'#6'Height'#2#29#3'To'
|
||||
+'p'#2#1#5'Width'#3'='#1#12'AutoComplete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2
|
||||
+#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'#8
|
||||
+'TabOrder'#2#0#0#0#9'TComboBox'#8'cbBanEnd'#4'Left'#2'^'#6'Height'#2#29#3'To'
|
||||
+'p'#2')'#5'Width'#3'='#1#12'AutoComplete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2
|
||||
+#0#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'#8
|
||||
+'TabOrder'#2#1#0#0#0#9'TGroupBox'#12'gbPagesSheet'#4'Left'#3#0#1#6'Height'#2
|
||||
+'v'#3'Top'#3#163#0#5'Width'#3#185#0#7'Caption'#6#17' Pages per sheet '#12'Cl'
|
||||
,'ientHeight'#2'e'#11'ClientWidth'#3#181#0#8'TabOrder'#2#4#0#6'TImage'#12'img'
|
||||
+'PageSheet'#4'Left'#2'N'#6'Height'#2'2'#3'Top'#2#17#5'Width'#2'P'#0#0#12'TRa'
|
||||
+'dioButton'#8'rbSheet1'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#5#5'Width'#2' '
|
||||
+#11'AllowGrayed'#9#7'Caption'#6#1'1'#7'Checked'#9#10'DragCursor'#7#9'crDefau'
|
||||
+'lt'#7'OnClick'#7#15'rbPortraitCLICK'#5'State'#7#9'cbChecked'#8'TabOrder'#2#0
|
||||
+#0#0#12'TRadioButton'#8'rbSheet2'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#29#5'W'
|
||||
+'idth'#2' '#11'AllowGrayed'#9#7'Caption'#6#1'2'#10'DragCursor'#7#9'crDefault'
|
||||
+#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#1#7'TabStop'#8#0#0#12'TRadio'
|
||||
+'Button'#8'rbSheet4'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'5'#5'Width'#2' '#11
|
||||
+'AllowGrayed'#9#7'Caption'#6#1'4'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7
|
||||
+#15'rbPortraitCLICK'#8'TabOrder'#2#2#7'TabStop'#8#0#0#0#9'TComboBox'#12'cbRe'
|
||||
+'solution'#4'Left'#3#130#0#6'Height'#2#29#3'Top'#2'u'#5'Width'#3'6'#1#12'Aut'
|
||||
+'oComplete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2#0#10'OnKeyPress'#7#19'cbPape'
|
||||
+'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
|
||||
+'on'#6#2'Ok'#7'Default'#9#11'ModalResult'#2#1#8'TabOrder'#2#1#0#0#0#12'TPage'
|
||||
+'Control'#9'Notebook1'#4'Left'#2#0#6'Height'#3#167#1#3'Top'#2#0#5'Width'#3
|
||||
+#201#1#10'ActivePage'#7#9'pgGeneral'#5'Align'#7#8'alClient'#8'TabIndex'#2#0#8
|
||||
+'TabOrder'#2#1#0#9'TTabSheet'#9'pgGeneral'#7'Caption'#6#7'General'#12'Client'
|
||||
+'Height'#3#141#1#11'ClientWidth'#3#193#1#0#6'TLabel'#12'labPaperSize'#4'Left'
|
||||
+#2#15#6'Height'#2#14#3'Top'#2#19#5'Width'#2'2'#7'Caption'#6#10'Paper size'#11
|
||||
+'ParentColor'#8#0#0#6'TLabel'#12'labPaperType'#4'Left'#2#15#6'Height'#2#14#3
|
||||
+'Top'#2'7'#5'Width'#2'6'#7'Caption'#6#10'Paper type'#11'ParentColor'#8#0#0#6
|
||||
+'TLabel'#11'labPaperSrc'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'\'#5'Width'#2
|
||||
+'@'#7'Caption'#6#12'Paper source'#11'ParentColor'#8#0#0#6'TLabel'#13'labReso'
|
||||
+'lution'#4'Left'#2#15#6'Height'#2#14#3'Top'#2'}'#5'Width'#2'3'#7'Caption'#6
|
||||
+#10'Resolution'#11'ParentColor'#8#0#0#9'TComboBox'#11'cbPaperSize'#4'Left'#3
|
||||
+#130#0#6'Height'#2#21#3'Top'#2#9#5'Width'#3'6'#1#13'DropDownCount'#2#10#10'I'
|
||||
+'temHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDr'
|
||||
+'opDownList'#8'TabOrder'#2#0#0#0#9'TComboBox'#11'cbPaperType'#4'Left'#3#130#0
|
||||
+#6'Height'#2#21#3'Top'#2'-'#5'Width'#3'6'#1#10'ItemHeight'#2#13#10'OnKeyPres'
|
||||
+'s'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#0
|
||||
+#0#9'TComboBox'#10'cbPaperSrc'#4'Left'#3#130#0#6'Height'#2#21#3'Top'#2'Q'#5
|
||||
+'Width'#3'6'#1#10'ItemHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5
|
||||
+'Style'#7#14'csDropDownList'#8'TabOrder'#2#3#0#0#9'TGroupBox'#13'gbOrientati'
|
||||
+'on'#4'Left'#2#13#6'Height'#2'w'#3'Top'#3#162#0#5'Width'#3#233#0#7'Caption'#6
|
||||
+#13' Orientation '#12'ClientHeight'#2'e'#11'ClientWidth'#3#229#0#8'TabOrder'
|
||||
+#2#5#0#6'TImage'#14'imgOrientation'#4'Left'#3#167#0#6'Height'#2'0'#3'Top'#2
|
||||
+#25#5'Width'#2'4'#0#0#12'TRadioButton'#10'rbPortrait'#4'Left'#2#7#6'Height'#2
|
||||
+#17#3'Top'#2#5#5'Width'#2'6'#7'Caption'#6#8'Portrait'#7'Checked'#9#10'DragCu'
|
||||
+'rsor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#0#7'Tab'
|
||||
+'Stop'#9#0#0#12'TRadioButton'#11'rbLandscape'#4'Left'#2#7#6'Height'#2#17#3'T'
|
||||
+'op'#2#29#5'Width'#2'E'#7'Caption'#6#9'Landscape'#10'DragCursor'#7#9'crDefau'
|
||||
+'lt'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#1#0#0#12'TRadioButton'#15
|
||||
+'rbrev_Landscape'#4'Left'#2#7#6'Height'#2#17#3'Top'#2'5'#5'Width'#2'm'#7'Cap'
|
||||
+'tion'#6#17'Reverse landscape'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15
|
||||
+'rbPortraitCLICK'#8'TabOrder'#2#2#0#0#12'TRadioButton'#14'rbrev_portrait'#4
|
||||
+'Left'#2#7#6'Height'#2#17#3'Top'#2'M'#5'Width'#2'a'#7'Caption'#6#16'Reverse '
|
||||
+'portrait'#10'DragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8
|
||||
+'TabOrder'#2#3#0#0#0#9'TGroupBox'#9'gbBanners'#4'Left'#2#13#6'Height'#2'`'#3
|
||||
+'Top'#3'"'#1#5'Width'#3#171#1#7'Caption'#6#9' Banners '#12'ClientHeight'#2'N'
|
||||
+#11'ClientWidth'#3#167#1#8'TabOrder'#2#2#0#6'TLabel'#11'labBanStart'#4'Left'
|
||||
+#2#6#6'Height'#2#14#3'Top'#2#9#5'Width'#2#25#7'Caption'#6#5'Start'#11'Parent'
|
||||
+'Color'#8#0#0#6'TLabel'#9'labBanEnd'#4'Left'#2#6#6'Height'#2#14#3'Top'#2'1'#5
|
||||
+'Width'#2#19#7'Caption'#6#3'End'#11'ParentColor'#8#0#0#9'TComboBox'#10'cbBan'
|
||||
+'Start'#4'Left'#2'^'#6'Height'#2#21#3'Top'#2#1#5'Width'#3'='#1#10'ItemHeight'
|
||||
+#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'#5'Style'#7#14'csDropDownList'
|
||||
+#8'TabOrder'#2#0#0#0#9'TComboBox'#8'cbBanEnd'#4'Left'#2'^'#6'Height'#2#21#3
|
||||
+'Top'#2')'#5'Width'#3'='#1#10'ItemHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSi'
|
||||
+'zeKEYPRESS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#0#0#0#9'TGroupBox'
|
||||
+#12'gbPagesSheet'#4'Left'#3#0#1#6'Height'#2'v'#3'Top'#3#163#0#5'Width'#3#185
|
||||
+#0#7'Caption'#6#17' Pages per sheet '#12'ClientHeight'#2'd'#11'ClientWidth'#3
|
||||
+#181#0#8'TabOrder'#2#4#0#6'TImage'#12'imgPageSheet'#4'Left'#2'N'#6'Height'#2
|
||||
+'2'#3'Top'#2#17#5'Width'#2'P'#0#0#12'TRadioButton'#8'rbSheet1'#4'Left'#2#6#6
|
||||
+'Height'#2#17#3'Top'#2#5#5'Width'#2#24#7'Caption'#6#1'1'#7'Checked'#9#10'Dra'
|
||||
,'gCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#0#7
|
||||
+'TabStop'#9#0#0#12'TRadioButton'#8'rbSheet2'#4'Left'#2#6#6'Height'#2#17#3'To'
|
||||
+'p'#2#29#5'Width'#2#24#7'Caption'#6#1'2'#10'DragCursor'#7#9'crDefault'#7'OnC'
|
||||
+'lick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#1#0#0#12'TRadioButton'#8'rbSheet4'
|
||||
+#4'Left'#2#6#6'Height'#2#17#3'Top'#2'5'#5'Width'#2#24#7'Caption'#6#1'4'#10'D'
|
||||
+'ragCursor'#7#9'crDefault'#7'OnClick'#7#15'rbPortraitCLICK'#8'TabOrder'#2#2#0
|
||||
+#0#0#9'TComboBox'#12'cbResolution'#4'Left'#3#130#0#6'Height'#2#21#3'Top'#2'u'
|
||||
+#5'Width'#3'6'#1#10'ItemHeight'#2#13#10'OnKeyPress'#7#19'cbPaperSizeKEYPRESS'
|
||||
+#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#6#0#0#0#9'TTabSheet'#9'pgMargin'
|
||||
+'s'#7'Caption'#6#7'Margins'#0#0#9'TTabSheet'#10'pgAdvanced'#7'Caption'#6#8'A'
|
||||
+'dvanced'#12'ClientHeight'#3#141#1#11'ClientWidth'#3#193#1#0#10'TScrollBox'#2
|
||||
+'sb'#4'Left'#2#0#6'Height'#3#141#1#3'Top'#2#0#5'Width'#3#193#1#5'Align'#7#8
|
||||
+'alClient'#8'TabOrder'#2#0#0#0#0#0#0
|
||||
]);
|
||||
|
@ -62,10 +62,10 @@ type
|
||||
labResolution: TLabel;
|
||||
labPaperType: TLABEL;
|
||||
labPaperSize: TLABEL;
|
||||
pgAdvanced: TPage;
|
||||
Notebook1: TNotebook;
|
||||
pgGeneral: TPAGE;
|
||||
pgMargins: TPage;
|
||||
pgAdvanced: TTabSheet;
|
||||
Notebook1: TPageControl;
|
||||
pgGeneral: TTabSheet;
|
||||
pgMargins: TTabSheet;
|
||||
Panel1: TPANEL;
|
||||
rbSheet1: TRADIOBUTTON;
|
||||
rbSheet2: TRADIOBUTTON;
|
||||
|
@ -1,16 +1,16 @@
|
||||
object dlgSelectPrinter: TdlgSelectPrinter
|
||||
Left = 330
|
||||
Height = 217
|
||||
Height = 406
|
||||
Top = 111
|
||||
Width = 530
|
||||
ActiveControl = btnProp
|
||||
Caption = 'Printing'
|
||||
ClientHeight = 217
|
||||
ClientHeight = 406
|
||||
ClientWidth = 530
|
||||
OnCreate = dlgSelectPrinterCREATE
|
||||
OnShow = dlgSelectPrinterSHOW
|
||||
Position = poScreenCenter
|
||||
LCLVersion = '0.9.27'
|
||||
LCLVersion = '0.9.31'
|
||||
object PrinterGroupbox: TGroupBox
|
||||
Left = 6
|
||||
Height = 137
|
||||
@ -19,30 +19,30 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
Align = alTop
|
||||
BorderSpacing.Around = 6
|
||||
Caption = ' Printer '
|
||||
ClientHeight = 118
|
||||
ClientHeight = 119
|
||||
ClientWidth = 514
|
||||
TabOrder = 0
|
||||
object labState: TLabel
|
||||
Left = 96
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 49
|
||||
Width = 55
|
||||
Width = 41
|
||||
Caption = 'labState'
|
||||
ParentColor = False
|
||||
end
|
||||
object labLocation: TLabel
|
||||
Left = 96
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 73
|
||||
Width = 74
|
||||
Width = 55
|
||||
Caption = 'labLocation'
|
||||
ParentColor = False
|
||||
end
|
||||
object labComment: TLabel
|
||||
Left = 96
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 97
|
||||
Width = 84
|
||||
Width = 60
|
||||
Caption = 'labComment'
|
||||
ParentColor = False
|
||||
end
|
||||
@ -53,53 +53,53 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
Width = 17
|
||||
end
|
||||
object PrinterNameLabel: TLabel
|
||||
Left = 234
|
||||
Height = 18
|
||||
Top = 7
|
||||
Width = 40
|
||||
Left = 240
|
||||
Height = 14
|
||||
Top = 9
|
||||
Width = 28
|
||||
Anchors = []
|
||||
Caption = 'Name'
|
||||
ParentColor = False
|
||||
end
|
||||
object PrinterStateLabel: TLabel
|
||||
Left = 10
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 49
|
||||
Width = 36
|
||||
Width = 27
|
||||
Caption = 'State'
|
||||
ParentColor = False
|
||||
OnChangeBounds = PrinterStateLabelChangeBounds
|
||||
end
|
||||
object PrinterLocationLabel: TLabel
|
||||
Left = 10
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 73
|
||||
Width = 55
|
||||
Width = 41
|
||||
Caption = 'Location'
|
||||
ParentColor = False
|
||||
end
|
||||
object PrinterDescriptionLabel: TLabel
|
||||
Left = 10
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 97
|
||||
Width = 73
|
||||
Width = 54
|
||||
Caption = 'Description'
|
||||
ParentColor = False
|
||||
end
|
||||
object labPrinterName: TLabel
|
||||
Left = 10
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 12
|
||||
Width = 40
|
||||
Width = 28
|
||||
Caption = 'Name'
|
||||
ParentColor = False
|
||||
OnChangeBounds = PrinterStateLabelChangeBounds
|
||||
end
|
||||
object btnProp: TButton
|
||||
Left = 416
|
||||
Height = 29
|
||||
Top = 6
|
||||
Width = 93
|
||||
Left = 417
|
||||
Height = 23
|
||||
Top = 9
|
||||
Width = 90
|
||||
Anchors = []
|
||||
AutoSize = True
|
||||
Caption = 'Properties ...'
|
||||
@ -107,54 +107,53 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
TabOrder = 0
|
||||
end
|
||||
object cbPrintToFile: TCheckBox
|
||||
Left = 414
|
||||
Height = 22
|
||||
Top = 41
|
||||
Width = 92
|
||||
Left = 436
|
||||
Height = 17
|
||||
Top = 47
|
||||
Width = 70
|
||||
Anchors = [akRight, akBottom]
|
||||
Caption = 'Print to file'
|
||||
TabOrder = 1
|
||||
end
|
||||
object cbPrinters: TComboBox
|
||||
Left = 120
|
||||
Height = 31
|
||||
Height = 21
|
||||
Top = 7
|
||||
Width = 287
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
AutoComplete = False
|
||||
ItemHeight = 0
|
||||
ItemWidth = 0
|
||||
ItemHeight = 13
|
||||
OnChange = cbPrintersCHANGE
|
||||
OnKeyPress = cbPrintersKEYPRESS
|
||||
Style = csDropDownList
|
||||
TabOrder = 2
|
||||
end
|
||||
end
|
||||
object NbOpts: TNotebook
|
||||
object NbOpts: TPageControl
|
||||
Left = 6
|
||||
Height = 1
|
||||
Top = 174
|
||||
Height = 182
|
||||
Top = 177
|
||||
Width = 518
|
||||
ActivePage = pgCopies
|
||||
Align = alClient
|
||||
Anchors = [akLeft]
|
||||
BorderSpacing.Around = 6
|
||||
PageIndex = 0
|
||||
TabIndex = 0
|
||||
TabOrder = 1
|
||||
object pgCopies: TPage
|
||||
object pgCopies: TTabSheet
|
||||
Caption = 'Copies'
|
||||
ClientWidth = 516
|
||||
ClientHeight = 1
|
||||
ClientHeight = 156
|
||||
ClientWidth = 510
|
||||
object gbPages: TGroupBox
|
||||
AnchorSideBottom.Control = pgCopies
|
||||
AnchorSideBottom.Side = asrBottom
|
||||
Left = 8
|
||||
Height = 1
|
||||
Height = 143
|
||||
Top = 7
|
||||
Width = 262
|
||||
Anchors = [akTop, akLeft, akBottom]
|
||||
BorderSpacing.Around = 6
|
||||
Caption = ' Select pages '
|
||||
ClientHeight = 1
|
||||
ClientHeight = 125
|
||||
ClientWidth = 258
|
||||
TabOrder = 0
|
||||
object Bevel1: TBevel
|
||||
@ -162,7 +161,7 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 18
|
||||
Height = 3
|
||||
Top = 105
|
||||
Top = 86
|
||||
Width = 230
|
||||
BorderSpacing.Top = 6
|
||||
Shape = bsTopLine
|
||||
@ -172,9 +171,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Control = Bevel1
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 14
|
||||
Height = 18
|
||||
Top = 120
|
||||
Width = 39
|
||||
Height = 14
|
||||
Top = 101
|
||||
Width = 30
|
||||
BorderSpacing.Top = 12
|
||||
Caption = 'Pages'
|
||||
ParentColor = False
|
||||
@ -186,10 +185,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Side = asrCenter
|
||||
AnchorSideRight.Control = gbPages
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 93
|
||||
Height = 23
|
||||
Top = 76
|
||||
Width = 159
|
||||
Left = 78
|
||||
Height = 21
|
||||
Top = 59
|
||||
Width = 174
|
||||
Anchors = [akTop, akLeft, akRight]
|
||||
BorderSpacing.Left = 15
|
||||
BorderSpacing.Right = 6
|
||||
@ -201,21 +200,18 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideRight.Control = gbPages
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 104
|
||||
Height = 31
|
||||
Top = 114
|
||||
Height = 21
|
||||
Top = 98
|
||||
Width = 148
|
||||
Anchors = [akTop, akRight]
|
||||
AutoComplete = False
|
||||
AutoSelect = True
|
||||
BorderSpacing.Right = 6
|
||||
ItemHeight = 0
|
||||
ItemHeight = 13
|
||||
ItemIndex = 0
|
||||
Items.Strings = (
|
||||
'All pages'
|
||||
'Odd pages'
|
||||
'Even pages'
|
||||
)
|
||||
ItemWidth = 0
|
||||
Style = csDropDownList
|
||||
TabOrder = 1
|
||||
Text = 'All pages'
|
||||
@ -224,58 +220,51 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Control = rbAllPage
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 14
|
||||
Height = 22
|
||||
Top = 28
|
||||
Width = 108
|
||||
AllowGrayed = True
|
||||
Height = 17
|
||||
Top = 23
|
||||
Width = 82
|
||||
BorderSpacing.Around = 2
|
||||
Caption = 'Current page'
|
||||
DragCursor = crDefault
|
||||
Enabled = False
|
||||
TabOrder = 2
|
||||
TabStop = False
|
||||
end
|
||||
object rbRange: TRadioButton
|
||||
AnchorSideTop.Control = rbSelection
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 14
|
||||
Height = 22
|
||||
Top = 76
|
||||
Width = 64
|
||||
AllowGrayed = True
|
||||
Height = 17
|
||||
Top = 61
|
||||
Width = 49
|
||||
BorderSpacing.Around = 2
|
||||
Caption = 'Range'
|
||||
DragCursor = crDefault
|
||||
TabOrder = 4
|
||||
TabStop = False
|
||||
end
|
||||
object rbAllPage: TRadioButton
|
||||
Left = 14
|
||||
Height = 22
|
||||
Height = 17
|
||||
Top = 0
|
||||
Width = 43
|
||||
AllowGrayed = True
|
||||
Width = 32
|
||||
BorderSpacing.Around = 6
|
||||
Caption = 'All '
|
||||
Checked = True
|
||||
DragCursor = crDefault
|
||||
State = cbChecked
|
||||
TabOrder = 3
|
||||
TabStop = True
|
||||
end
|
||||
object rbSelection: TRadioButton
|
||||
AnchorSideTop.Control = rbCurrentPage
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 14
|
||||
Height = 22
|
||||
Top = 52
|
||||
Width = 83
|
||||
AllowGrayed = True
|
||||
Height = 17
|
||||
Top = 42
|
||||
Width = 61
|
||||
BorderSpacing.Around = 2
|
||||
Caption = 'Selection'
|
||||
DragCursor = crDefault
|
||||
Enabled = False
|
||||
TabOrder = 5
|
||||
TabStop = False
|
||||
end
|
||||
end
|
||||
object gbCopies: TGroupBox
|
||||
@ -286,21 +275,21 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideBottom.Control = pgCopies
|
||||
AnchorSideBottom.Side = asrBottom
|
||||
Left = 276
|
||||
Height = 1
|
||||
Height = 143
|
||||
Top = 7
|
||||
Width = 234
|
||||
Width = 228
|
||||
Anchors = [akTop, akLeft, akRight, akBottom]
|
||||
BorderSpacing.Around = 6
|
||||
Caption = ' Copies '
|
||||
ClientHeight = 1
|
||||
ClientWidth = 230
|
||||
ClientHeight = 125
|
||||
ClientWidth = 224
|
||||
TabOrder = 1
|
||||
object imgCollate: TImage
|
||||
AnchorSideTop.Control = lanNumCopies
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 6
|
||||
Height = 37
|
||||
Top = 30
|
||||
Top = 26
|
||||
Width = 93
|
||||
AutoSize = True
|
||||
BorderSpacing.Top = 6
|
||||
@ -308,9 +297,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
end
|
||||
object lanNumCopies: TLabel
|
||||
Left = 6
|
||||
Height = 18
|
||||
Height = 14
|
||||
Top = 6
|
||||
Width = 114
|
||||
Width = 84
|
||||
Caption = 'Number of copies'
|
||||
ParentColor = False
|
||||
end
|
||||
@ -319,9 +308,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideLeft.Side = asrBottom
|
||||
AnchorSideTop.Control = lanNumCopies
|
||||
AnchorSideTop.Side = asrCenter
|
||||
Left = 126
|
||||
Height = 20
|
||||
Top = 5
|
||||
Left = 96
|
||||
Height = 21
|
||||
Top = 3
|
||||
Width = 50
|
||||
BorderSpacing.Left = 6
|
||||
TabOrder = 0
|
||||
@ -330,9 +319,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Control = edCopies
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 119
|
||||
Height = 22
|
||||
Top = 31
|
||||
Width = 68
|
||||
Height = 17
|
||||
Top = 30
|
||||
Width = 51
|
||||
AllowGrayed = True
|
||||
BorderSpacing.Around = 6
|
||||
Caption = 'Collate'
|
||||
@ -344,9 +333,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Control = cbCollate
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 119
|
||||
Height = 22
|
||||
Top = 59
|
||||
Width = 74
|
||||
Height = 17
|
||||
Top = 53
|
||||
Width = 58
|
||||
AllowGrayed = True
|
||||
BorderSpacing.Around = 6
|
||||
Caption = 'Reverse'
|
||||
@ -356,15 +345,15 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
end
|
||||
end
|
||||
end
|
||||
object pgAdvance: TPage
|
||||
object pgAdvance: TTabSheet
|
||||
Caption = 'Advanced'
|
||||
ClientWidth = 516
|
||||
ClientHeight = 1
|
||||
ClientHeight = 156
|
||||
ClientWidth = 510
|
||||
object labTask: TLabel
|
||||
Left = 7
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 10
|
||||
Width = 82
|
||||
Width = 63
|
||||
Caption = 'Delayed task'
|
||||
ParentColor = False
|
||||
end
|
||||
@ -372,9 +361,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Control = labTask
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 7
|
||||
Height = 16
|
||||
Top = 52
|
||||
Width = 44
|
||||
Height = 14
|
||||
Top = 50
|
||||
Width = 35
|
||||
BorderSpacing.Top = 20
|
||||
BorderSpacing.Around = 6
|
||||
Caption = 'Priority'
|
||||
@ -382,11 +371,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
end
|
||||
object cbTasktime: TComboBox
|
||||
Left = 215
|
||||
Height = 29
|
||||
Height = 21
|
||||
Top = 7
|
||||
Width = 200
|
||||
AutoComplete = False
|
||||
ItemHeight = 0
|
||||
ItemHeight = 13
|
||||
ItemIndex = 0
|
||||
Items.Strings = (
|
||||
'Immediate'
|
||||
@ -399,7 +387,6 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
'After midnight'
|
||||
'At time'
|
||||
)
|
||||
ItemWidth = 0
|
||||
OnChange = cbTasktimeCHANGE
|
||||
OnKeyPress = cbPrintersKEYPRESS
|
||||
Style = csDropDownList
|
||||
@ -408,7 +395,7 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
end
|
||||
object edTimeTask: TEdit
|
||||
Left = 423
|
||||
Height = 23
|
||||
Height = 21
|
||||
Top = 9
|
||||
Width = 83
|
||||
DragCursor = crDefault
|
||||
@ -420,8 +407,8 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideTop.Control = PrioLabel
|
||||
AnchorSideTop.Side = asrCenter
|
||||
Left = 127
|
||||
Height = 20
|
||||
Top = 50
|
||||
Height = 21
|
||||
Top = 47
|
||||
Width = 50
|
||||
TabOrder = 3
|
||||
end
|
||||
@ -434,7 +421,7 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
AnchorSideRight.Side = asrBottom
|
||||
Left = 183
|
||||
Height = 38
|
||||
Top = 41
|
||||
Top = 38
|
||||
Width = 320
|
||||
Frequency = 10
|
||||
Max = 100
|
||||
@ -450,24 +437,24 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
end
|
||||
object BtnPanel: TPanel
|
||||
Left = 6
|
||||
Height = 41
|
||||
Top = 170
|
||||
Height = 35
|
||||
Top = 365
|
||||
Width = 518
|
||||
Align = alBottom
|
||||
Anchors = [akLeft, akBottom]
|
||||
AutoSize = True
|
||||
BorderSpacing.Around = 6
|
||||
BevelOuter = bvNone
|
||||
ClientHeight = 41
|
||||
ClientHeight = 35
|
||||
ClientWidth = 518
|
||||
FullRepaint = False
|
||||
TabOrder = 2
|
||||
TabStop = True
|
||||
object btnCancel: TButton
|
||||
Left = 457
|
||||
Height = 29
|
||||
Left = 454
|
||||
Height = 23
|
||||
Top = 6
|
||||
Width = 55
|
||||
Width = 58
|
||||
Align = alRight
|
||||
AutoSize = True
|
||||
BorderSpacing.Around = 6
|
||||
@ -477,10 +464,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
TabOrder = 0
|
||||
end
|
||||
object btnPrint: TButton
|
||||
Left = 410
|
||||
Height = 29
|
||||
Left = 400
|
||||
Height = 23
|
||||
Top = 6
|
||||
Width = 41
|
||||
Width = 48
|
||||
Align = alRight
|
||||
AutoSize = True
|
||||
BorderSpacing.Around = 6
|
||||
@ -492,9 +479,9 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
end
|
||||
object btnReduc: TButton
|
||||
Left = 6
|
||||
Height = 29
|
||||
Height = 23
|
||||
Top = 6
|
||||
Width = 60
|
||||
Width = 65
|
||||
Align = alLeft
|
||||
AutoSize = True
|
||||
BorderSpacing.Around = 6
|
||||
@ -503,10 +490,10 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
TabOrder = 2
|
||||
end
|
||||
object btnPreview: TButton
|
||||
Left = 344
|
||||
Height = 29
|
||||
Left = 330
|
||||
Height = 23
|
||||
Top = 6
|
||||
Width = 60
|
||||
Width = 64
|
||||
Align = alRight
|
||||
AutoSize = True
|
||||
BorderSpacing.Around = 6
|
||||
@ -529,18 +516,18 @@ object dlgSelectPrinter: TdlgSelectPrinter
|
||||
object labCUPS: TLabel
|
||||
AnchorSideTop.Side = asrBottom
|
||||
Left = 8
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 3
|
||||
Width = 233
|
||||
Width = 180
|
||||
Caption = 'CUPS (Common Unix Printing System)'
|
||||
ParentColor = False
|
||||
end
|
||||
object labCUPSServer: TLabel
|
||||
AnchorSideLeft.Side = asrBottom
|
||||
Left = 248
|
||||
Height = 16
|
||||
Height = 14
|
||||
Top = 3
|
||||
Width = 93
|
||||
Width = 73
|
||||
Caption = 'labCUPSServer'
|
||||
ParentColor = False
|
||||
end
|
||||
|
@ -2,151 +2,148 @@
|
||||
|
||||
LazarusResources.Add('TdlgSelectPrinter','FORMDATA',[
|
||||
'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'
|
||||
+#6#8'Printing'#12'ClientHeight'#3#217#0#11'ClientWidth'#3#18#2#8'OnCreate'#7
|
||||
+#150#1#3'Top'#2'o'#5'Width'#3#18#2#13'ActiveControl'#7#7'btnProp'#7'Caption'
|
||||
+#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'
|
||||
+#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
|
||||
+'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'
|
||||
+'ft'#2'`'#6'Height'#2#18#3'Top'#2'1'#5'Width'#2'7'#7'Caption'#6#8'labState'
|
||||
+#11'ParentColor'#8#0#0#6'TLabel'#11'labLocation'#4'Left'#2'`'#6'Height'#2#18
|
||||
+#3'Top'#2'I'#5'Width'#2'J'#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
|
||||
+'T'#7'Caption'#6#10'labComment'#11'ParentColor'#8#0#0#6'TImage'#6'ImgPrn'#4
|
||||
+'ht'#2'w'#11'ClientWidth'#3#2#2#8'TabOrder'#2#0#0#6'TLabel'#8'labState'#4'Le'
|
||||
+'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#14
|
||||
+#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#14#3'Top'#2'a'#5'Width'#2
|
||||
+'<'#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'
|
||||
+'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'
|
||||
+'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'
|
||||
+'ounds'#0#0#6'TLabel'#20'PrinterLocationLabel'#4'Left'#2#10#6'Height'#2#18#3
|
||||
+'Top'#2'I'#5'Width'#2'7'#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
|
||||
+'Width'#2'I'#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'
|
||||
+'ounds'#0#0#6'TLabel'#20'PrinterLocationLabel'#4'Left'#2#10#6'Height'#2#14#3
|
||||
+'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#14#3'Top'#2'a'#5
|
||||
+'Width'#2'6'#7'Caption'#6#11'Description'#11'ParentColor'#8#0#0#6'TLabel'#14
|
||||
+'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'
|
||||
+'ChangeBounds'#0#0#7'TButton'#7'btnProp'#4'Left'#3#160#1#6'Height'#2#29#3'To'
|
||||
+'p'#2#6#5'Width'#2']'#7'Anchors'#11#0#8'AutoSize'#9#7'Caption'#6#14'Properti'
|
||||
+'ChangeBounds'#0#0#7'TButton'#7'btnProp'#4'Left'#3#161#1#6'Height'#2#23#3'To'
|
||||
+'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'
|
||||
+'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'
|
||||
+'r'#2#1#0#0#9'TComboBox'#10'cbPrinters'#4'Left'#2'x'#6'Height'#2#31#3'Top'#2
|
||||
+#7#5'Width'#3#31#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#12'AutoComp'
|
||||
+'lete'#8#10'ItemHeight'#2#0#9'ItemWidth'#2#0#8'OnChange'#7#16'cbPrintersCHAN'
|
||||
+'GE'#10'OnKeyPress'#7#18'cbPrintersKEYPRESS'#5'Style'#7#14'csDropDownList'#8
|
||||
+'TabOrder'#2#2#0#0#0#9'TNotebook'#6'NbOpts'#4'Left'#2#6#6'Height'#2#1#3'Top'
|
||||
+#3#174#0#5'Width'#3#6#2#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#0#20
|
||||
+'BorderSpacing.Around'#2#6#9'PageIndex'#2#0#8'TabOrder'#2#1#0#5'TPage'#8'pgC'
|
||||
+'opies'#7'Caption'#6#6'Copies'#11'ClientWidth'#3#4#2#12'ClientHeight'#2#1#0#9
|
||||
+'TGroupBox'#7'gbPages'#24'AnchorSideBottom.Control'#7#8'pgCopies'#21'AnchorS'
|
||||
+'ideBottom.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#1#3'Top'#2#7#5'Width'
|
||||
+#3#6#1#7'Anchors'#11#5'akTop'#6'akLeft'#8'akBottom'#0#20'BorderSpacing.Aroun'
|
||||
+'d'#2#6#7'Caption'#6#14' Select pages '#12'ClientHeight'#2#1#11'ClientWidth'
|
||||
+#3#2#1#8'TabOrder'#2#0#0#6'TBevel'#6'Bevel1'#21'AnchorSideTop.Control'#7#7'e'
|
||||
+'dRange'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#18#6'Height'#2#3#3
|
||||
+'Top'#2'i'#5'Width'#3#230#0#17'BorderSpacing.Top'#2#6#5'Shape'#7#9'bsTopLine'
|
||||
+#5'Style'#7#8'bsRaised'#0#0#6'TLabel'#7'labPage'#21'AnchorSideTop.Control'#7
|
||||
+#6'Bevel1'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14#6'Height'#2#18
|
||||
+#3'Top'#2'x'#5'Width'#2''''#17'BorderSpacing.Top'#2#12#7'Caption'#6#5'Pages'
|
||||
+#11'ParentColor'#8#0#0#5'TEdit'#7'edRange'#22'AnchorSideLeft.Control'#7#7'rb'
|
||||
+'Range'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#7
|
||||
+'rbRange'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7
|
||||
+#7'gbPages'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2']'#6'Height'#2
|
||||
+#23#3'Top'#2'L'#5'Width'#3#159#0#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'
|
||||
+#0#18'BorderSpacing.Left'#2#15#19'BorderSpacing.Right'#2#6#8'TabOrder'#2#0#0
|
||||
+#0#9'TComboBox'#9'edPageSet'#21'AnchorSideTop.Control'#7#7'labPage'#18'Ancho'
|
||||
+'rSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#7'gbPages'#20'A'
|
||||
+'nchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'h'#6'Height'#2#31#3'Top'#2'r'
|
||||
+#5'Width'#3#148#0#7'Anchors'#11#5'akTop'#7'akRight'#0#12'AutoComplete'#8#10
|
||||
+'AutoSelect'#9#19'BorderSpacing.Right'#2#6#10'ItemHeight'#2#0#9'ItemIndex'#2
|
||||
+#0#13'Items.Strings'#1#6#9'All pages'#6#9'Odd pages'#6#10'Even pages'#0#9'It'
|
||||
+'emWidth'#2#0#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#9'All '
|
||||
+'pages'#0#0#12'TRadioButton'#13'rbCurrentPage'#21'AnchorSideTop.Control'#7#9
|
||||
+'rbAllPage'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14#6'Height'#2#22
|
||||
+#3'Top'#2#28#5'Width'#2'l'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#2#7
|
||||
+'Caption'#6#12'Current page'#10'DragCursor'#7#9'crDefault'#7'Enabled'#8#8'Ta'
|
||||
,'bOrder'#2#2#7'TabStop'#8#0#0#12'TRadioButton'#7'rbRange'#21'AnchorSideTop.C'
|
||||
+'ontrol'#7#11'rbSelection'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14
|
||||
+#6'Height'#2#22#3'Top'#2'L'#5'Width'#2'@'#11'AllowGrayed'#9#20'BorderSpacing'
|
||||
+'.Around'#2#2#7'Caption'#6#5'Range'#10'DragCursor'#7#9'crDefault'#8'TabOrder'
|
||||
+#2#4#7'TabStop'#8#0#0#12'TRadioButton'#9'rbAllPage'#4'Left'#2#14#6'Height'#2
|
||||
+#22#3'Top'#2#0#5'Width'#2'+'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7
|
||||
+'Caption'#6#4'All '#7'Checked'#9#10'DragCursor'#7#9'crDefault'#5'State'#7#9
|
||||
+'cbChecked'#8'TabOrder'#2#3#0#0#12'TRadioButton'#11'rbSelection'#21'AnchorSi'
|
||||
+'deTop.Control'#7#13'rbCurrentPage'#18'AnchorSideTop.Side'#7#9'asrBottom'#4
|
||||
+'Left'#2#14#6'Height'#2#22#3'Top'#2'4'#5'Width'#2'S'#11'AllowGrayed'#9#20'Bo'
|
||||
+'rderSpacing.Around'#2#2#7'Caption'#6#9'Selection'#10'DragCursor'#7#9'crDefa'
|
||||
+'ult'#7'Enabled'#8#8'TabOrder'#2#5#7'TabStop'#8#0#0#0#9'TGroupBox'#8'gbCopie'
|
||||
+'s'#22'AnchorSideLeft.Control'#7#7'gbPages'#19'AnchorSideLeft.Side'#7#9'asrB'
|
||||
+'ottom'#23'AnchorSideRight.Control'#7#8'pgCopies'#20'AnchorSideRight.Side'#7
|
||||
+#9'asrBottom'#24'AnchorSideBottom.Control'#7#8'pgCopies'#21'AnchorSideBottom'
|
||||
+'.Side'#7#9'asrBottom'#4'Left'#3#20#1#6'Height'#2#1#3'Top'#2#7#5'Width'#3#234
|
||||
+#0#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacin'
|
||||
+'g.Around'#2#6#7'Caption'#6#8' Copies '#12'ClientHeight'#2#1#11'ClientWidth'
|
||||
+#3#230#0#8'TabOrder'#2#1#0#6'TImage'#10'imgCollate'#21'AnchorSideTop.Control'
|
||||
+#7#12'lanNumCopies'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Heig'
|
||||
+'ht'#2'%'#3'Top'#2#30#5'Width'#2']'#8'AutoSize'#9#17'BorderSpacing.Top'#2#6
|
||||
+#12'Proportional'#9#0#0#6'TLabel'#12'lanNumCopies'#4'Left'#2#6#6'Height'#2#18
|
||||
+#3'Top'#2#6#5'Width'#2'r'#7'Caption'#6#16'Number of copies'#11'ParentColor'#8
|
||||
+#0#0#9'TSpinEdit'#8'edCopies'#22'AnchorSideLeft.Control'#7#12'lanNumCopies'
|
||||
+#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#12'lanNu'
|
||||
+'mCopies'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2'~'#6'Height'#2#20#3
|
||||
+'Top'#2#5#5'Width'#2'2'#18'BorderSpacing.Left'#2#6#8'TabOrder'#2#0#0#0#9'TCh'
|
||||
+'eckBox'#9'cbCollate'#21'AnchorSideTop.Control'#7#8'edCopies'#18'AnchorSideT'
|
||||
+'op.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#22#3'Top'#2#31#5'Width'#2
|
||||
+'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
|
||||
+'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#10'ItemHeig'
|
||||
+'ht'#2#13#8'OnChange'#7#16'cbPrintersCHANGE'#10'OnKeyPress'#7#18'cbPrintersK'
|
||||
+'EYPRESS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#2#0#0#0#12'TPageContro'
|
||||
+'l'#6'NbOpts'#4'Left'#2#6#6'Height'#3#182#0#3'Top'#3#177#0#5'Width'#3#6#2#10
|
||||
+'ActivePage'#7#8'pgCopies'#5'Align'#7#8'alClient'#7'Anchors'#11#6'akLeft'#0
|
||||
+#20'BorderSpacing.Around'#2#6#8'TabIndex'#2#0#8'TabOrder'#2#1#0#9'TTabSheet'
|
||||
+#8'pgCopies'#7'Caption'#6#6'Copies'#12'ClientHeight'#3#156#0#11'ClientWidth'
|
||||
+#3#254#1#0#9'TGroupBox'#7'gbPages'#24'AnchorSideBottom.Control'#7#8'pgCopies'
|
||||
+#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#3#143#0#3'To'
|
||||
+'p'#2#7#5'Width'#3#6#1#7'Anchors'#11#5'akTop'#6'akLeft'#8'akBottom'#0#20'Bor'
|
||||
+'derSpacing.Around'#2#6#7'Caption'#6#14' Select pages '#12'ClientHeight'#2'}'
|
||||
+#11'ClientWidth'#3#2#1#8'TabOrder'#2#0#0#6'TBevel'#6'Bevel1'#21'AnchorSideTo'
|
||||
+'p.Control'#7#7'edRange'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#18#6
|
||||
+'Height'#2#3#3'Top'#2'V'#5'Width'#3#230#0#17'BorderSpacing.Top'#2#6#5'Shape'
|
||||
+#7#9'bsTopLine'#5'Style'#7#8'bsRaised'#0#0#6'TLabel'#7'labPage'#21'AnchorSid'
|
||||
+'eTop.Control'#7#6'Bevel1'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#14
|
||||
+#6'Height'#2#14#3'Top'#2'e'#5'Width'#2#30#17'BorderSpacing.Top'#2#12#7'Capti'
|
||||
+'on'#6#5'Pages'#11'ParentColor'#8#0#0#5'TEdit'#7'edRange'#22'AnchorSideLeft.'
|
||||
+'Control'#7#7'rbRange'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideT'
|
||||
+'op.Control'#7#7'rbRange'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSid'
|
||||
+'eRight.Control'#7#7'gbPages'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'
|
||||
+#2'N'#6'Height'#2#21#3'Top'#2';'#5'Width'#3#174#0#7'Anchors'#11#5'akTop'#6'a'
|
||||
+'kLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#15#19'BorderSpacing.Right'#2#6
|
||||
+#8'TabOrder'#2#0#0#0#9'TComboBox'#9'edPageSet'#21'AnchorSideTop.Control'#7#7
|
||||
+'labPage'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7
|
||||
+#7'gbPages'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'h'#6'Height'#2
|
||||
+#21#3'Top'#2'b'#5'Width'#3#148#0#7'Anchors'#11#5'akTop'#7'akRight'#0#19'Bord'
|
||||
+'erSpacing.Right'#2#6#10'ItemHeight'#2#13#9'ItemIndex'#2#0#13'Items.Strings'
|
||||
+#1#6#9'All pages'#6#9'Odd pages'#6#10'Even pages'#0#5'Style'#7#14'csDropDown'
|
||||
+'List'#8'TabOrder'#2#1#4'Text'#6#9'All pages'#0#0#12'TRadioButton'#13'rbCurr'
|
||||
+'entPage'#21'AnchorSideTop.Control'#7#9'rbAllPage'#18'AnchorSideTop.Side'#7#9
|
||||
+'asrBottom'#4'Left'#2#14#6'Height'#2#17#3'Top'#2#23#5'Width'#2'R'#20'BorderS'
|
||||
+'pacing.Around'#2#2#7'Caption'#6#12'Current page'#10'DragCursor'#7#9'crDefau'
|
||||
+'lt'#7'Enabled'#8#8'TabOrder'#2#2#0#0#12'TRadioButton'#7'rbRange'#21'AnchorS'
|
||||
,'ideTop.Control'#7#11'rbSelection'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'L'
|
||||
+'eft'#2#14#6'Height'#2#17#3'Top'#2'='#5'Width'#2'1'#20'BorderSpacing.Around'
|
||||
+#2#2#7'Caption'#6#5'Range'#10'DragCursor'#7#9'crDefault'#8'TabOrder'#2#4#0#0
|
||||
+#12'TRadioButton'#9'rbAllPage'#4'Left'#2#14#6'Height'#2#17#3'Top'#2#0#5'Widt'
|
||||
+'h'#2' '#20'BorderSpacing.Around'#2#6#7'Caption'#6#4'All '#7'Checked'#9#10'D'
|
||||
+'ragCursor'#7#9'crDefault'#8'TabOrder'#2#3#7'TabStop'#9#0#0#12'TRadioButton'
|
||||
+#11'rbSelection'#21'AnchorSideTop.Control'#7#13'rbCurrentPage'#18'AnchorSide'
|
||||
+'Top.Side'#7#9'asrBottom'#4'Left'#2#14#6'Height'#2#17#3'Top'#2'*'#5'Width'#2
|
||||
+'='#20'BorderSpacing.Around'#2#2#7'Caption'#6#9'Selection'#10'DragCursor'#7#9
|
||||
+'crDefault'#7'Enabled'#8#8'TabOrder'#2#5#0#0#0#9'TGroupBox'#8'gbCopies'#22'A'
|
||||
+'nchorSideLeft.Control'#7#7'gbPages'#19'AnchorSideLeft.Side'#7#9'asrBottom'
|
||||
+#23'AnchorSideRight.Control'#7#8'pgCopies'#20'AnchorSideRight.Side'#7#9'asrB'
|
||||
+'ottom'#24'AnchorSideBottom.Control'#7#8'pgCopies'#21'AnchorSideBottom.Side'
|
||||
+#7#9'asrBottom'#4'Left'#3#20#1#6'Height'#3#143#0#3'Top'#2#7#5'Width'#3#228#0
|
||||
+#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'BorderSpacing.'
|
||||
+'Around'#2#6#7'Caption'#6#8' Copies '#12'ClientHeight'#2'}'#11'ClientWidth'#3
|
||||
+#224#0#8'TabOrder'#2#1#0#6'TImage'#10'imgCollate'#21'AnchorSideTop.Control'#7
|
||||
+#12'lanNumCopies'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'
|
||||
+#2'%'#3'Top'#2#26#5'Width'#2']'#8'AutoSize'#9#17'BorderSpacing.Top'#2#6#12'P'
|
||||
+'roportional'#9#0#0#6'TLabel'#12'lanNumCopies'#4'Left'#2#6#6'Height'#2#14#3
|
||||
+'Top'#2#6#5'Width'#2'T'#7'Caption'#6#16'Number of copies'#11'ParentColor'#8#0
|
||||
+#0#9'TSpinEdit'#8'edCopies'#22'AnchorSideLeft.Control'#7#12'lanNumCopies'#19
|
||||
+'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#12'lanNumCo'
|
||||
+'pies'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2'`'#6'Height'#2#21#3'T'
|
||||
+'op'#2#3#5'Width'#2'2'#18'BorderSpacing.Left'#2#6#8'TabOrder'#2#0#0#0#9'TChe'
|
||||
+'ckBox'#9'cbCollate'#21'AnchorSideTop.Control'#7#8'edCopies'#18'AnchorSideTo'
|
||||
+'p.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#17#3'Top'#2#30#5'Width'#2'3'
|
||||
+#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Collate'#10'D'
|
||||
+'ragCursor'#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'
|
||||
+'horSideTop.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#22#3'Top'#2';'#5'W'
|
||||
+'idth'#2'J'#11'AllowGrayed'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Re'
|
||||
+'horSideTop.Side'#7#9'asrBottom'#4'Left'#2'w'#6'Height'#2#17#3'Top'#2'5'#5'W'
|
||||
+'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'
|
||||
+'rder'#2#1#0#0#0#0#5'TPage'#9'pgAdvance'#7'Caption'#6#8'Advanced'#11'ClientW'
|
||||
+'idth'#3#4#2#12'ClientHeight'#2#1#0#6'TLabel'#7'labTask'#4'Left'#2#7#6'Heigh'
|
||||
+'t'#2#16#3'Top'#2#10#5'Width'#2'R'#7'Caption'#6#12'Delayed task'#11'ParentCo'
|
||||
+'lor'#8#0#0#6'TLabel'#9'PrioLabel'#21'AnchorSideTop.Control'#7#7'labTask'#18
|
||||
+'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#7#6'Height'#2#16#3'Top'#2'4'#5
|
||||
+'Width'#2','#17'BorderSpacing.Top'#2#20#20'BorderSpacing.Around'#2#6#7'Capti'
|
||||
+'on'#6#8'Priority'#11'ParentColor'#8#0#0#9'TComboBox'#10'cbTasktime'#4'Left'
|
||||
+#3#215#0#6'Height'#2#29#3'Top'#2#7#5'Width'#3#200#0#12'AutoComplete'#8#10'It'
|
||||
+'emHeight'#2#0#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9'Immediate'#6#18'Neve'
|
||||
+'r (suspending)'#6#14'during the day'#6#7'evening'#6#5'night'#6#7'Weekend'#6
|
||||
+#23'After close of business'#6#14'After midnight'#6#7'At time'#0#9'ItemWidth'
|
||||
+#2#0#8'OnChange'#7#16'cbTasktimeCHANGE'#10'OnKeyPress'#7#18'cbPrintersKEYPRE'
|
||||
+'SS'#5'Style'#7#14'csDropDownList'#8'TabOrder'#2#1#4'Text'#6#9'Immediate'#0#0
|
||||
+#5'TEdit'#10'edTimeTask'#4'Left'#3#167#1#6'Height'#2#23#3'Top'#2#9#5'Width'#2
|
||||
+'S'#10'DragCursor'#7#9'crDefault'#9'MaxLength'#2#8#8'TabOrder'#2#0#4'Text'#6
|
||||
+#8'23:00:00'#0#0#9'TSpinEdit'#10'edPriority'#21'AnchorSideTop.Control'#7#9'P'
|
||||
+'rioLabel'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2''#6'Height'#2#20
|
||||
+#3'Top'#2'2'#5'Width'#2'2'#8'TabOrder'#2#3#0#0#9'TTrackBar'#11'tkbPriority'
|
||||
+#22'AnchorSideLeft.Control'#7#10'edPriority'#19'AnchorSideLeft.Side'#7#9'asr'
|
||||
+'Bottom'#21'AnchorSideTop.Control'#7#9'PrioLabel'#18'AnchorSideTop.Side'#7#9
|
||||
+'asrCenter'#23'AnchorSideRight.Control'#7#9'pgAdvance'#20'AnchorSideRight.Si'
|
||||
+'de'#7#9'asrBottom'#4'Left'#3#183#0#6'Height'#2'&'#3'Top'#2')'#5'Width'#3'@'
|
||||
+#1#9'Frequency'#2#10#3'Max'#2'd'#8'OnChange'#7#17'tkbPriorityCHANGE'#8'Posit'
|
||||
+'ion'#2#10#7'TabStop'#8#9'TickMarks'#7#6'tmBoth'#20'BorderSpacing.Around'#2#6
|
||||
+#10'DragCursor'#7#9'crDefault'#8'TabOrder'#2#2#0#0#0#0#6'TPanel'#8'BtnPanel'
|
||||
+#4'Left'#2#6#6'Height'#2')'#3'Top'#3#170#0#5'Width'#3#6#2#5'Align'#7#8'alBot'
|
||||
+'tom'#7'Anchors'#11#6'akLeft'#8'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.A'
|
||||
+'round'#2#6#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2')'#11'ClientWidth'
|
||||
+#3#6#2#11'FullRepaint'#8#8'TabOrder'#2#2#7'TabStop'#9#0#7'TButton'#9'btnCanc'
|
||||
,'el'#4'Left'#3#201#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2'7'#5'Align'#7#7'al'
|
||||
+'Right'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#6'Cancel'#9#7'Caption'#6#6
|
||||
+'Cancel'#11'ModalResult'#2#2#8'TabOrder'#2#0#0#0#7'TButton'#8'btnPrint'#4'Le'
|
||||
+'ft'#3#154#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2')'#5'Align'#7#7'alRight'#8
|
||||
+'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#5'Print'#7'Default'#9
|
||||
+#11'ModalResult'#2#1#7'OnClick'#7#13'btnPrintCLICK'#8'TabOrder'#2#1#0#0#7'TB'
|
||||
+'utton'#8'btnReduc'#4'Left'#2#6#6'Height'#2#29#3'Top'#2#6#5'Width'#2'<'#5'Al'
|
||||
+'ign'#7#6'alLeft'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#8
|
||||
+'More ...'#7'OnClick'#7#13'btnReducCLICK'#8'TabOrder'#2#2#0#0#7'TButton'#10
|
||||
+'btnPreview'#4'Left'#3'X'#1#6'Height'#2#29#3'Top'#2#6#5'Width'#2'<'#5'Align'
|
||||
+#7#7'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Prev'
|
||||
+'iew'#11'ModalResult'#2#6#8'TabOrder'#2#3#0#0#0#6'TPanel'#9'panLabels'#4'Lef'
|
||||
+'t'#2#6#6'Height'#2#22#3'Top'#3#149#0#5'Width'#3#6#2#5'Align'#7#5'alTop'#20
|
||||
+'BorderSpacing.Around'#2#6#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2#22
|
||||
+#11'ClientWidth'#3#6#2#8'TabOrder'#2#3#0#6'TLabel'#7'labCUPS'#18'AnchorSideT'
|
||||
+'op.Side'#7#9'asrBottom'#4'Left'#2#8#6'Height'#2#16#3'Top'#2#3#5'Width'#3#233
|
||||
+#0#7'Caption'#6'"CUPS (Common Unix Printing System)'#11'ParentColor'#8#0#0#6
|
||||
+'TLabel'#13'labCUPSServer'#19'AnchorSideLeft.Side'#7#9'asrBottom'#4'Left'#3
|
||||
+#248#0#6'Height'#2#16#3'Top'#2#3#5'Width'#2']'#7'Caption'#6#13'labCUPSServer'
|
||||
+#11'ParentColor'#8#0#0#0#0
|
||||
+'rder'#2#1#0#0#0#0#9'TTabSheet'#9'pgAdvance'#7'Caption'#6#8'Advanced'#12'Cli'
|
||||
+'entHeight'#3#156#0#11'ClientWidth'#3#254#1#0#6'TLabel'#7'labTask'#4'Left'#2
|
||||
+#7#6'Height'#2#14#3'Top'#2#10#5'Width'#2'?'#7'Caption'#6#12'Delayed task'#11
|
||||
+'ParentColor'#8#0#0#6'TLabel'#9'PrioLabel'#21'AnchorSideTop.Control'#7#7'lab'
|
||||
+'Task'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#7#6'Height'#2#14#3'To'
|
||||
+'p'#2'2'#5'Width'#2'#'#17'BorderSpacing.Top'#2#20#20'BorderSpacing.Around'#2
|
||||
+#6#7'Caption'#6#8'Priority'#11'ParentColor'#8#0#0#9'TComboBox'#10'cbTasktime'
|
||||
+#4'Left'#3#215#0#6'Height'#2#21#3'Top'#2#7#5'Width'#3#200#0#10'ItemHeight'#2
|
||||
+#13#9'ItemIndex'#2#0#13'Items.Strings'#1#6#9'Immediate'#6#18'Never (suspendi'
|
||||
+'ng)'#6#14'during the day'#6#7'evening'#6#5'night'#6#7'Weekend'#6#23'After c'
|
||||
+'lose of business'#6#14'After midnight'#6#7'At time'#0#8'OnChange'#7#16'cbTa'
|
||||
+'sktimeCHANGE'#10'OnKeyPress'#7#18'cbPrintersKEYPRESS'#5'Style'#7#14'csDropD'
|
||||
+'ownList'#8'TabOrder'#2#1#4'Text'#6#9'Immediate'#0#0#5'TEdit'#10'edTimeTask'
|
||||
+#4'Left'#3#167#1#6'Height'#2#21#3'Top'#2#9#5'Width'#2'S'#10'DragCursor'#7#9
|
||||
+'crDefault'#9'MaxLength'#2#8#8'TabOrder'#2#0#4'Text'#6#8'23:00:00'#0#0#9'TSp'
|
||||
+'inEdit'#10'edPriority'#21'AnchorSideTop.Control'#7#9'PrioLabel'#18'AnchorSi'
|
||||
+'deTop.Side'#7#9'asrCenter'#4'Left'#2#127#6'Height'#2#21#3'Top'#2'/'#5'Width'
|
||||
+#2'2'#8'TabOrder'#2#3#0#0#9'TTrackBar'#11'tkbPriority'#22'AnchorSideLeft.Con'
|
||||
+'trol'#7#10'edPriority'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSide'
|
||||
+'Top.Control'#7#9'PrioLabel'#18'AnchorSideTop.Side'#7#9'asrCenter'#23'Anchor'
|
||||
+'SideRight.Control'#7#9'pgAdvance'#20'AnchorSideRight.Side'#7#9'asrBottom'#4
|
||||
+'Left'#3#183#0#6'Height'#2'&'#3'Top'#2'&'#5'Width'#3'@'#1#9'Frequency'#2#10#3
|
||||
+'Max'#2'd'#8'OnChange'#7#17'tkbPriorityCHANGE'#8'Position'#2#10#7'TabStop'#8
|
||||
+#9'TickMarks'#7#6'tmBoth'#20'BorderSpacing.Around'#2#6#10'DragCursor'#7#9'cr'
|
||||
+'Default'#8'TabOrder'#2#2#0#0#0#0#6'TPanel'#8'BtnPanel'#4'Left'#2#6#6'Height'
|
||||
+#2'#'#3'Top'#3'm'#1#5'Width'#3#6#2#5'Align'#7#8'alBottom'#7'Anchors'#11#6'ak'
|
||||
+'Left'#8'akBottom'#0#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#10'BevelOute'
|
||||
+'r'#7#6'bvNone'#12'ClientHeight'#2'#'#11'ClientWidth'#3#6#2#11'FullRepaint'#8
|
||||
+#8'TabOrder'#2#2#7'TabStop'#9#0#7'TButton'#9'btnCancel'#4'Left'#3#198#1#6'He'
|
||||
+'ight'#2#23#3'Top'#2#6#5'Width'#2':'#5'Align'#7#7'alRight'#8'AutoSize'#9#20
|
||||
+'BorderSpacing.Around'#2#6#6'Cancel'#9#7'Caption'#6#6'Cancel'#11'ModalResult'
|
||||
,#2#2#8'TabOrder'#2#0#0#0#7'TButton'#8'btnPrint'#4'Left'#3#144#1#6'Height'#2
|
||||
+#23#3'Top'#2#6#5'Width'#2'0'#5'Align'#7#7'alRight'#8'AutoSize'#9#20'BorderSp'
|
||||
+'acing.Around'#2#6#7'Caption'#6#5'Print'#7'Default'#9#11'ModalResult'#2#1#7
|
||||
+'OnClick'#7#13'btnPrintCLICK'#8'TabOrder'#2#1#0#0#7'TButton'#8'btnReduc'#4'L'
|
||||
+'eft'#2#6#6'Height'#2#23#3'Top'#2#6#5'Width'#2'A'#5'Align'#7#6'alLeft'#8'Aut'
|
||||
+'oSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#8'More ...'#7'OnClick'#7
|
||||
+#13'btnReducCLICK'#8'TabOrder'#2#2#0#0#7'TButton'#10'btnPreview'#4'Left'#3'J'
|
||||
+#1#6'Height'#2#23#3'Top'#2#6#5'Width'#2'@'#5'Align'#7#7'alRight'#8'AutoSize'
|
||||
+#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#7'Preview'#11'ModalResult'#2#6#8
|
||||
+'TabOrder'#2#3#0#0#0#6'TPanel'#9'panLabels'#4'Left'#2#6#6'Height'#2#22#3'Top'
|
||||
+#3#149#0#5'Width'#3#6#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#10
|
||||
+'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2#22#11'ClientWidth'#3#6#2#8'TabOr'
|
||||
+'der'#2#3#0#6'TLabel'#7'labCUPS'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Lef'
|
||||
+'t'#2#8#6'Height'#2#14#3'Top'#2#3#5'Width'#3#180#0#7'Caption'#6'"CUPS (Commo'
|
||||
+'n Unix Printing System)'#11'ParentColor'#8#0#0#6'TLabel'#13'labCUPSServer'
|
||||
+#19'AnchorSideLeft.Side'#7#9'asrBottom'#4'Left'#3#248#0#6'Height'#2#14#3'Top'
|
||||
+#2#3#5'Width'#2'I'#7'Caption'#6#13'labCUPSServer'#11'ParentColor'#8#0#0#0#0
|
||||
]);
|
||||
|
@ -84,8 +84,8 @@ type
|
||||
labState: TLABEL;
|
||||
edTimeTask: TEDIT;
|
||||
NbOpts: TNOTEBOOK;
|
||||
pgAdvance: TPAGE;
|
||||
pgCopies: TPAGE;
|
||||
pgAdvance: TTabSheet;
|
||||
pgCopies: TTabSheet;
|
||||
BtnPanel: TPanel;
|
||||
rbSelection: TRadioButton;
|
||||
rbRange: TRADIOBUTTON;
|
||||
|
Loading…
Reference in New Issue
Block a user