home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 September / Chip_2001-09_cd1.bin / zkuste / delphi / kolekce / d56 / RMCTL.ZIP / rmKeyBindingsEditForm.dfm < prev    next >
Text File  |  2001-06-22  |  4KB  |  171 lines

  1. object FrmEditKeyBindings: TFrmEditKeyBindings
  2.   Left = 237
  3.   Top = 183
  4.   BorderIcons = []
  5.   BorderStyle = bsDialog
  6.   Caption = 'Edit Application Key Bindings'
  7.   ClientHeight = 232
  8.   ClientWidth = 461
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'Tahoma'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object lblErrorInfo: TrmLabel
  20.     Left = 3
  21.     Top = 194
  22.     Width = 358
  23.     Height = 33
  24.     WordWrap = True
  25.     BorderStyle = rmbsSunken
  26.   end
  27.   object Label1: TLabel
  28.     Left = 5
  29.     Top = 5
  30.     Width = 56
  31.     Height = 13
  32.     Caption = 'Categories:'
  33.   end
  34.   object Label2: TLabel
  35.     Left = 155
  36.     Top = 5
  37.     Width = 56
  38.     Height = 13
  39.     Caption = 'Commands:'
  40.   end
  41.   object lbxCommands: TListBox
  42.     Left = 153
  43.     Top = 20
  44.     Width = 208
  45.     Height = 106
  46.     Style = lbOwnerDrawFixed
  47.     ItemHeight = 13
  48.     TabOrder = 1
  49.     OnClick = lbxCommandsClick
  50.     OnDrawItem = lbxCommandsDrawItem
  51.   end
  52.   object lbxCategories: TListBox
  53.     Left = 3
  54.     Top = 20
  55.     Width = 144
  56.     Height = 106
  57.     ItemHeight = 13
  58.     Sorted = True
  59.     TabOrder = 0
  60.     OnClick = lbxCategoriesClick
  61.   end
  62.   object btnClose: TButton
  63.     Left = 366
  64.     Top = 202
  65.     Width = 93
  66.     Height = 25
  67.     Caption = 'Close'
  68.     Default = True
  69.     TabOrder = 2
  70.   end
  71.   object btnChange: TButton
  72.     Left = 366
  73.     Top = 133
  74.     Width = 93
  75.     Height = 25
  76.     Action = actChange
  77.     TabOrder = 3
  78.   end
  79.   object btnResetAll: TButton
  80.     Left = 366
  81.     Top = 160
  82.     Width = 93
  83.     Height = 25
  84.     Action = actResetAll
  85.     TabOrder = 5
  86.   end
  87.   object GroupBox1: TGroupBox
  88.     Left = 153
  89.     Top = 128
  90.     Width = 208
  91.     Height = 61
  92.     Caption = 'Command Description'
  93.     TabOrder = 8
  94.     object lblDescription: TrmLabel
  95.       Left = 5
  96.       Top = 16
  97.       Width = 198
  98.       Height = 40
  99.       WordWrap = True
  100.     end
  101.   end
  102.   object GroupBox2: TGroupBox
  103.     Left = 3
  104.     Top = 128
  105.     Width = 144
  106.     Height = 42
  107.     Caption = 'Current Binding'
  108.     TabOrder = 9
  109.     object lblKeys: TrmLabel
  110.       Left = 5
  111.       Top = 16
  112.       Width = 134
  113.       Height = 21
  114.       Alignment = taCenter
  115.       Font.Charset = DEFAULT_CHARSET
  116.       Font.Color = clActiveCaption
  117.       Font.Height = -11
  118.       Font.Name = 'Tahoma'
  119.       Font.Style = [fsBold]
  120.       ParentFont = False
  121.       Layout = rmtlCenter
  122.     end
  123.   end
  124.   object cbxDesignLock: TCheckBox
  125.     Left = 5
  126.     Top = 172
  127.     Width = 140
  128.     Height = 17
  129.     Caption = 'Lock Command Binding'
  130.     TabOrder = 4
  131.     OnClick = cbxDesignLockClick
  132.   end
  133.   object btnSave: TButton
  134.     Left = 366
  135.     Top = 20
  136.     Width = 93
  137.     Height = 25
  138.     Action = actSaveBindings
  139.     TabOrder = 6
  140.   end
  141.   object btnLoad: TButton
  142.     Left = 366
  143.     Top = 47
  144.     Width = 93
  145.     Height = 25
  146.     Action = actLoadBindings
  147.     TabOrder = 7
  148.   end
  149.   object ActionList1: TActionList
  150.     OnUpdate = ActionList1Update
  151.     Left = 307
  152.     Top = 46
  153.     object actChange: TAction
  154.       Caption = 'Edit Binding...'
  155.       OnExecute = actChangeExecute
  156.     end
  157.     object actResetAll: TAction
  158.       Caption = 'Reset All'
  159.       OnExecute = actResetAllExecute
  160.     end
  161.     object actSaveBindings: TAction
  162.       Caption = 'Save Bindings...'
  163.       OnExecute = actSaveBindingsExecute
  164.     end
  165.     object actLoadBindings: TAction
  166.       Caption = 'Load Bindings...'
  167.       OnExecute = actLoadBindingsExecute
  168.     end
  169.   end
  170. end
  171.