home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / tema / thebat / download / update / thebat.exe / 0 / RCDATA / TMSGPRINTSETUP / TMSGPRINTSETUP.txt
Text File  |  2001-09-09  |  9KB  |  405 lines

  1. object MsgPrintSetup: TMsgPrintSetup
  2.   Left = 246
  3.   Top = 121
  4.   HelpContext = 14061
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsDialog
  7.   Caption = 'Print Setup'
  8.   ClientHeight = 372
  9.   ClientWidth = 485
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   OnClose = FormClose
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Book: TPageControl
  21.     Left = 0
  22.     Top = 0
  23.     Width = 485
  24.     Height = 337
  25.     ActivePage = tsMain
  26.     Align = alTop
  27.     TabOrder = 0
  28.     OnChange = BookChange
  29.     object tsMain: TTabSheet
  30.       Caption = 'General'
  31.       object gbMargins: TGroupBox
  32.         Left = 8
  33.         Top = 8
  34.         Width = 177
  35.         Height = 225
  36.         Caption = 'Margins'
  37.         TabOrder = 0
  38.         object lLeft: TLabel
  39.           Left = 16
  40.           Top = 28
  41.           Width = 21
  42.           Height = 13
  43.           Caption = '&Left:'
  44.           FocusControl = eLeft
  45.         end
  46.         object lRight: TLabel
  47.           Left = 16
  48.           Top = 60
  49.           Width = 28
  50.           Height = 13
  51.           Caption = '&Right:'
  52.           FocusControl = eRight
  53.         end
  54.         object lTop: TLabel
  55.           Left = 16
  56.           Top = 92
  57.           Width = 22
  58.           Height = 13
  59.           Caption = '&Top:'
  60.           FocusControl = eTop
  61.         end
  62.         object lBottom: TLabel
  63.           Left = 16
  64.           Top = 124
  65.           Width = 36
  66.           Height = 13
  67.           Caption = '&Bottom:'
  68.           FocusControl = eBottom
  69.         end
  70.         object eLeft: TMaskEdit
  71.           Left = 96
  72.           Top = 24
  73.           Width = 73
  74.           Height = 21
  75.           EditMask = '99.9999;1;0'
  76.           MaxLength = 7
  77.           TabOrder = 0
  78.           Text = '  .    '
  79.         end
  80.         object eRight: TMaskEdit
  81.           Left = 96
  82.           Top = 56
  83.           Width = 73
  84.           Height = 21
  85.           EditMask = '99.9999;1;0'
  86.           MaxLength = 7
  87.           TabOrder = 1
  88.           Text = '  .    '
  89.         end
  90.         object eTop: TMaskEdit
  91.           Left = 96
  92.           Top = 88
  93.           Width = 73
  94.           Height = 21
  95.           EditMask = '99.9999;1;0'
  96.           MaxLength = 7
  97.           TabOrder = 2
  98.           Text = '  .    '
  99.         end
  100.         object eBottom: TMaskEdit
  101.           Left = 96
  102.           Top = 120
  103.           Width = 73
  104.           Height = 21
  105.           EditMask = '99.9999;1;0'
  106.           MaxLength = 7
  107.           TabOrder = 3
  108.           Text = '  .    '
  109.         end
  110.         object gbUnit: TRadioGroup
  111.           Left = 16
  112.           Top = 152
  113.           Width = 153
  114.           Height = 65
  115.           Caption = 'Units'
  116.           ItemIndex = 1
  117.           Items.Strings = (
  118.             '&Inches'
  119.             '&Millimeters')
  120.           TabOrder = 4
  121.           OnClick = gbUnitClick
  122.         end
  123.       end
  124.       object cbNumbers: TCheckBox
  125.         Left = 208
  126.         Top = 16
  127.         Width = 257
  128.         Height = 17
  129.         Caption = '&Print page numbers'
  130.         TabOrder = 1
  131.         OnClick = cbNumbersClick
  132.       end
  133.       object gbNumbers: TGroupBox
  134.         Left = 208
  135.         Top = 40
  136.         Width = 265
  137.         Height = 265
  138.         TabOrder = 2
  139.         object rgNumTop: TRadioGroup
  140.           Left = 8
  141.           Top = 16
  142.           Width = 249
  143.           Height = 33
  144.           Caption = 'Location'
  145.           Columns = 2
  146.           ItemIndex = 0
  147.           Items.Strings = (
  148.             'Top'
  149.             'Bottom')
  150.           TabOrder = 0
  151.         end
  152.         object rgNAlign: TRadioGroup
  153.           Left = 8
  154.           Top = 56
  155.           Width = 249
  156.           Height = 65
  157.           Caption = 'Alignment'
  158.           Columns = 2
  159.           ItemIndex = 1
  160.           Items.Strings = (
  161.             'Left'
  162.             'Centre'
  163.             'Right')
  164.           TabOrder = 1
  165.         end
  166.         object cbNUseTemplate: TCheckBox
  167.           Left = 8
  168.           Top = 136
  169.           Width = 249
  170.           Height = 17
  171.           Caption = '&Use the specified template:'
  172.           TabOrder = 2
  173.           OnClick = cbNUseTemplateClick
  174.         end
  175.         object eNTemplate: TMemo
  176.           Left = 8
  177.           Top = 160
  178.           Width = 249
  179.           Height = 97
  180.           Font.Color = clBlack
  181.           Font.Height = -12
  182.           Font.Name = 'Courier New'
  183.           Font.Style = []
  184.           ParentFont = False
  185.           PopupMenu = mPop
  186.           TabOrder = 3
  187.           WordWrap = False
  188.         end
  189.       end
  190.       object bSetup: TButton
  191.         Left = 8
  192.         Top = 256
  193.         Width = 177
  194.         Height = 25
  195.         Caption = '&Setup printer...'
  196.         TabOrder = 3
  197.         OnClick = bSetupClick
  198.       end
  199.     end
  200.     object tsTemplate: TTabSheet
  201.       Caption = 'Template'
  202.       object eTemplate: TMemo
  203.         Left = 0
  204.         Top = 0
  205.         Width = 477
  206.         Height = 309
  207.         Align = alClient
  208.         Font.Color = clBlack
  209.         Font.Height = -12
  210.         Font.Name = 'Courier New'
  211.         Font.Style = []
  212.         ParentFont = False
  213.         PopupMenu = mPop
  214.         TabOrder = 0
  215.         WordWrap = False
  216.       end
  217.     end
  218.     object tsFont: TTabSheet
  219.       Caption = 'Font layout'
  220.       object lNumberSample: TLabel
  221.         Left = 264
  222.         Top = 256
  223.         Width = 193
  224.         Height = 41
  225.         Alignment = taCenter
  226.         AutoSize = False
  227.         Caption = 'Sample of page footer/header'
  228.       end
  229.       object pnHTML: TPanel
  230.         Left = 16
  231.         Top = 16
  232.         Width = 225
  233.         Height = 273
  234.         BevelOuter = bvLowered
  235.         TabOrder = 0
  236.       end
  237.       object bSetFont0: TButton
  238.         Left = 264
  239.         Top = 16
  240.         Width = 193
  241.         Height = 25
  242.         Caption = '&Default font...'
  243.         TabOrder = 1
  244.         OnClick = bSetFont0Click
  245.       end
  246.       object bSetFont1: TButton
  247.         Tag = 1
  248.         Left = 264
  249.         Top = 56
  250.         Width = 193
  251.         Height = 25
  252.         Caption = '&Quotation font...'
  253.         TabOrder = 2
  254.         OnClick = bSetFont0Click
  255.       end
  256.       object bSetFont2: TButton
  257.         Tag = 2
  258.         Left = 264
  259.         Top = 96
  260.         Width = 193
  261.         Height = 25
  262.         Caption = 'PRE font (HTML only)...'
  263.         TabOrder = 3
  264.         OnClick = bSetFont0Click
  265.       end
  266.       object bSetFont3: TButton
  267.         Tag = 3
  268.         Left = 264
  269.         Top = 136
  270.         Width = 193
  271.         Height = 25
  272.         Caption = '&Hot Spot colour...'
  273.         TabOrder = 4
  274.         OnClick = bSetFont3Click
  275.       end
  276.       object bSetFont4: TButton
  277.         Tag = 4
  278.         Left = 264
  279.         Top = 216
  280.         Width = 193
  281.         Height = 25
  282.         Caption = 'Page numbers font...'
  283.         TabOrder = 5
  284.         OnClick = bSetFont0Click
  285.       end
  286.     end
  287.   end
  288.   object bMacro: TButton
  289.     Left = 8
  290.     Top = 344
  291.     Width = 75
  292.     Height = 25
  293.     Caption = '&Macros...'
  294.     TabOrder = 1
  295.     Visible = False
  296.     OnClick = bMacroClick
  297.   end
  298.   object bOK: TButton
  299.     Left = 240
  300.     Top = 344
  301.     Width = 75
  302.     Height = 25
  303.     Caption = '&OK'
  304.     Default = True
  305.     ModalResult = 1
  306.     TabOrder = 2
  307.   end
  308.   object bCancel: TButton
  309.     Left = 320
  310.     Top = 344
  311.     Width = 75
  312.     Height = 25
  313.     Cancel = True
  314.     Caption = 'Cancel'
  315.     ModalResult = 2
  316.     TabOrder = 3
  317.   end
  318.   object bHelp: TButton
  319.     Left = 400
  320.     Top = 344
  321.     Width = 75
  322.     Height = 25
  323.     Caption = 'Help'
  324.     TabOrder = 4
  325.     OnClick = bHelpClick
  326.   end
  327.   object dFont: TFontDialog
  328.     Font.Color = clWindowText
  329.     Font.Height = -11
  330.     Font.Name = 'MS Sans Serif'
  331.     Font.Style = []
  332.     MinFontSize = 0
  333.     MaxFontSize = 0
  334.     Options = [fdEffects, fdApplyButton]
  335.     OnApply = dFontApply
  336.     Left = 112
  337.     Top = 344
  338.   end
  339.   object dColor: TColorDialog
  340.     Ctl3D = True
  341.     Left = 152
  342.     Top = 344
  343.   end
  344.   object mPop: TPopupMenu
  345.     Left = 208
  346.     Top = 344
  347.     object mmText: TMenuItem
  348.       Caption = '&Text'
  349.       ShortCut = 0
  350.     end
  351.     object mmSender: TMenuItem
  352.       Caption = '&Sender info'
  353.       ShortCut = 0
  354.     end
  355.     object mmRece: TMenuItem
  356.       Caption = '&Recipient info'
  357.       ShortCut = 0
  358.     end
  359.     object mmDef: TMenuItem
  360.       Caption = '&Pre-defined fields'
  361.       ShortCut = 0
  362.     end
  363.     object mmMisc: TMenuItem
  364.       Caption = '&Miscellaneous'
  365.       ShortCut = 0
  366.     end
  367.     object N1: TMenuItem
  368.       Caption = '-'
  369.       ShortCut = 0
  370.     end
  371.     object mtAttachFile: TMenuItem
  372.       Caption = '&Attach a file...'
  373.       ShortCut = 32801
  374.       OnClick = mtAttachFileClick
  375.     end
  376.     object mtInclude: TMenuItem
  377.       Tag = 1
  378.       Caption = '&Include template file...'
  379.       ShortCut = 32813
  380.       OnClick = mtAttachFileClick
  381.     end
  382.     object mtPut: TMenuItem
  383.       Tag = 2
  384.       Caption = 'P&ut text file...'
  385.       ShortCut = 0
  386.       OnClick = mtAttachFileClick
  387.     end
  388.     object mtfCookie: TMenuItem
  389.       Tag = 3
  390.       Caption = '&Cookie from a file...'
  391.       ShortCut = 0
  392.       OnClick = mtAttachFileClick
  393.     end
  394.     object Popup1: TMenuItem
  395.       Caption = 'Popup'
  396.       ShortCut = 32889
  397.       Visible = False
  398.     end
  399.   end
  400.   object dPrinter: TPrinterSetupDialog
  401.     Left = 248
  402.     Top = 344
  403.   end
  404. end
  405.