PrefFrame.dfm 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. object CodingExt: TCodingExt
  2. Left = 0
  3. Top = 0
  4. Width = 297
  5. Height = 245
  6. TabOrder = 0
  7. object TemplateBox: TGroupBox
  8. Left = 0
  9. Top = 0
  10. Width = 297
  11. Height = 200
  12. Align = alClient
  13. BiDiMode = bdRightToLeft
  14. Caption = 'Code te&mplates'
  15. ParentBiDiMode = False
  16. TabOrder = 0
  17. object IdLbl: TLabel
  18. Left = 8
  19. Top = 100
  20. Width = 40
  21. Height = 13
  22. Caption = '&Identifier'
  23. end
  24. object CodeLbl: TLabel
  25. Left = 8
  26. Top = 120
  27. Width = 25
  28. Height = 13
  29. Caption = 'Cod&e'
  30. end
  31. object TmpltList: TListBox
  32. Left = 8
  33. Top = 16
  34. Width = 281
  35. Height = 73
  36. Style = lbVirtual
  37. ItemHeight = 13
  38. MultiSelect = True
  39. TabOrder = 0
  40. OnClick = TmpltListClick
  41. OnData = TmpltListData
  42. end
  43. object IdEdit: TEdit
  44. Left = 56
  45. Top = 96
  46. Width = 233
  47. Height = 21
  48. TabOrder = 1
  49. end
  50. object CodeMemo: TMemo
  51. Left = 56
  52. Top = 120
  53. Width = 233
  54. Height = 57
  55. Font.Charset = ANSI_CHARSET
  56. Font.Color = clWindowText
  57. Font.Height = -11
  58. Font.Name = 'Courier New'
  59. Font.Style = []
  60. ParentFont = False
  61. TabOrder = 2
  62. WantTabs = True
  63. end
  64. object ClearBtn: TButton
  65. Left = 120
  66. Top = 180
  67. Width = 89
  68. Height = 17
  69. Caption = 'C&lear selection'
  70. TabOrder = 3
  71. OnClick = ClearBtnClick
  72. end
  73. object ApplyBtn: TButton
  74. Left = 216
  75. Top = 180
  76. Width = 73
  77. Height = 17
  78. Caption = '&Apply'
  79. TabOrder = 4
  80. OnClick = ApplyBtnClick
  81. end
  82. end
  83. object CompBox: TGroupBox
  84. Left = 0
  85. Top = 200
  86. Width = 297
  87. Height = 45
  88. Align = alBottom
  89. BiDiMode = bdRightToLeft
  90. Caption = 'Code completion'
  91. ParentBiDiMode = False
  92. TabOrder = 1
  93. object CompEditor: TButton
  94. Left = 8
  95. Top = 16
  96. Width = 281
  97. Height = 25
  98. Caption = 'Open t&he completion editor'
  99. TabOrder = 0
  100. OnClick = CompEditorClick
  101. end
  102. end
  103. end