home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / Chip_2004-10_cd1.bin / software / code / setup.exe / CodePad.exe / 0 / RCDATA / TTEMPLATEEDITORFORM / TTEMPLATEEDITORFORM.txt
Encoding:
Text File  |  2003-02-24  |  3.5 KB  |  181 lines

  1. object TemplateEditorForm: TTemplateEditorForm
  2.   Tag = 255
  3.   Left = 359
  4.   Top = 190
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsSingle
  7.   Caption = 'Code Template Editor'
  8.   ClientHeight = 246
  9.   ClientWidth = 438
  10.   Color = clBtnFace
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -11
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   OldCreateOrder = True
  17.   Position = poMainFormCenter
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   OnShow = FormShow
  21.   PixelsPerInch = 96
  22.   TextHeight = 13
  23.   object lTemplateFileName: TLabel
  24.     Left = 9
  25.     Top = 7
  26.     Width = 45
  27.     Height = 13
  28.     Caption = 'File name'
  29.     Transparent = True
  30.   end
  31.   object bLoadTemplate: TButton
  32.     Tag = 107
  33.     Left = 67
  34.     Top = 216
  35.     Width = 90
  36.     Height = 24
  37.     Caption = 'Load template'
  38.     TabOrder = 1
  39.     OnClick = bLoadTemplateClick
  40.   end
  41.   object bSaveTemplate: TButton
  42.     Tag = 108
  43.     Left = 162
  44.     Top = 216
  45.     Width = 90
  46.     Height = 24
  47.     Caption = 'Save template'
  48.     TabOrder = 2
  49.     OnClick = bSaveTemplateClick
  50.   end
  51.   object bOK: TButton
  52.     Tag = 100
  53.     Left = 257
  54.     Top = 216
  55.     Width = 83
  56.     Height = 24
  57.     Caption = 'OK'
  58.     Default = True
  59.     ModalResult = 1
  60.     TabOrder = 3
  61.   end
  62.   object bCancel: TButton
  63.     Tag = 101
  64.     Left = 345
  65.     Top = 216
  66.     Width = 83
  67.     Height = 24
  68.     Cancel = True
  69.     Caption = 'Cancel'
  70.     ModalResult = 2
  71.     TabOrder = 4
  72.   end
  73.   object gTemplates: TGroupBox
  74.     Left = 9
  75.     Top = 29
  76.     Width = 420
  77.     Height = 181
  78.     Caption = 'Templates'
  79.     TabOrder = 0
  80.     object bAdd: TButton
  81.       Tag = 109
  82.       Left = 326
  83.       Top = 19
  84.       Width = 83
  85.       Height = 24
  86.       Caption = 'Add'
  87.       TabOrder = 1
  88.       OnClick = bAddClick
  89.     end
  90.     object bDelete: TButton
  91.       Tag = 110
  92.       Left = 326
  93.       Top = 82
  94.       Width = 83
  95.       Height = 24
  96.       Caption = 'Delete'
  97.       TabOrder = 3
  98.       OnClick = bDeleteClick
  99.     end
  100.     object bEdit: TButton
  101.       Tag = 111
  102.       Left = 326
  103.       Top = 51
  104.       Width = 83
  105.       Height = 24
  106.       Caption = 'Edit'
  107.       TabOrder = 2
  108.       OnClick = bEditClick
  109.     end
  110.     object wTemplate: TListView
  111.       Left = 10
  112.       Top = 19
  113.       Width = 304
  114.       Height = 152
  115.       Columns = <
  116.         item
  117.           Caption = 'Name'
  118.           MinWidth = 50
  119.           Width = 90
  120.         end
  121.         item
  122.           Caption = 'Description'
  123.           MinWidth = 50
  124.           Width = 194
  125.         end>
  126.       ColumnClick = False
  127.       HideSelection = False
  128.       ReadOnly = True
  129.       RowSelect = True
  130.       ParentShowHint = False
  131.       ShowHint = True
  132.       TabOrder = 0
  133.       ViewStyle = vsReport
  134.       OnChange = wTemplateChange
  135.       OnDblClick = bEditClick
  136.       OnInfoTip = wTemplateInfoTip
  137.     end
  138.     object bUp: TButton
  139.       Tag = 110
  140.       Left = 326
  141.       Top = 114
  142.       Width = 83
  143.       Height = 24
  144.       Caption = 'Move up'
  145.       Enabled = False
  146.       TabOrder = 4
  147.       OnClick = bUpClick
  148.     end
  149.     object bDown: TButton
  150.       Tag = 110
  151.       Left = 326
  152.       Top = 146
  153.       Width = 83
  154.       Height = 24
  155.       Caption = 'Move down'
  156.       Enabled = False
  157.       TabOrder = 5
  158.       OnClick = bDownClick
  159.     end
  160.   end
  161.   object eFileName: TEdit
  162.     Left = 76
  163.     Top = 4
  164.     Width = 353
  165.     Height = 21
  166.     Color = clBtnFace
  167.     ReadOnly = True
  168.     TabOrder = 5
  169.   end
  170.   object OpenDialog: TJvOpenDialog2000
  171.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  172.     Left = 88
  173.     Top = 104
  174.   end
  175.   object SaveDialog: TJvSaveDialog2000
  176.     Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
  177.     Left = 120
  178.     Top = 104
  179.   end
  180. end
  181.