uEditor.dfm 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. object CEditorForm: TCEditorForm
  2. Left = 606
  3. Top = 118
  4. AutoSize = True
  5. BorderStyle = bsToolWindow
  6. BorderWidth = 2
  7. Caption = 'Completion Editor'
  8. ClientHeight = 288
  9. ClientWidth = 441
  10. Color = clBtnFace
  11. Font.Charset = ANSI_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -11
  14. Font.Name = 'Arial'
  15. Font.Style = []
  16. OldCreateOrder = False
  17. Position = poOwnerFormCenter
  18. OnCloseQuery = FormCloseQuery
  19. OnCreate = FormCreate
  20. OnDestroy = FormDestroy
  21. PixelsPerInch = 96
  22. TextHeight = 14
  23. object MenuPnl: TPanel
  24. Left = 0
  25. Top = 0
  26. Width = 441
  27. Height = 26
  28. BevelInner = bvLowered
  29. Font.Charset = ANSI_CHARSET
  30. Font.Color = clWindowText
  31. Font.Height = -11
  32. Font.Name = 'Arial'
  33. Font.Style = [fsBold]
  34. ParentFont = False
  35. TabOrder = 0
  36. object NewBtn: TSpeedButton
  37. Left = 2
  38. Top = 2
  39. Width = 103
  40. Height = 22
  41. Caption = 'New'
  42. Flat = True
  43. OnClick = NewBtnClick
  44. end
  45. object SaveBtn: TSpeedButton
  46. Left = 222
  47. Top = 2
  48. Width = 103
  49. Height = 22
  50. Caption = 'Save'
  51. Flat = True
  52. OnClick = SaveBtnClick
  53. end
  54. object OpenBtn: TSpeedButton
  55. Left = 112
  56. Top = 2
  57. Width = 103
  58. Height = 22
  59. Caption = 'Open'
  60. Flat = True
  61. OnClick = OpenBtnClick
  62. end
  63. object ToolsBtn: TSpeedButton
  64. Left = 336
  65. Top = 2
  66. Width = 103
  67. Height = 22
  68. Caption = 'Tools'
  69. Flat = True
  70. OnClick = ToolsBtnClick
  71. end
  72. end
  73. object MainPageControl: TPageControl
  74. Left = 0
  75. Top = 32
  76. Width = 441
  77. Height = 256
  78. ActivePage = InfoTab
  79. Font.Charset = ANSI_CHARSET
  80. Font.Color = clWindowText
  81. Font.Height = -11
  82. Font.Name = 'Arial'
  83. Font.Style = [fsBold, fsItalic]
  84. ParentFont = False
  85. TabOrder = 1
  86. object InfoTab: TTabSheet
  87. Caption = 'General Information'
  88. Font.Charset = ANSI_CHARSET
  89. Font.Color = clWindowText
  90. Font.Height = -11
  91. Font.Name = 'Arial'
  92. Font.Style = [fsUnderline]
  93. ParentFont = False
  94. object UNameLbl: TLabel
  95. Left = 4
  96. Top = 4
  97. Width = 321
  98. Height = 14
  99. Caption =
  100. 'Source file name (without path, but with extension, like "tigccl' +
  101. 'ib.h")'
  102. end
  103. object IncludeLbl: TLabel
  104. Left = 4
  105. Top = 52
  106. Width = 219
  107. Height = 14
  108. Caption = 'Included files (list files included in the source)'
  109. end
  110. object UNameEdit: TEdit
  111. Left = 32
  112. Top = 24
  113. Width = 393
  114. Height = 22
  115. Font.Charset = ANSI_CHARSET
  116. Font.Color = clWindowText
  117. Font.Height = -11
  118. Font.Name = 'Arial'
  119. Font.Style = []
  120. ParentFont = False
  121. TabOrder = 0
  122. OnChange = SetModified
  123. end
  124. object IncludeMemo: TMemo
  125. Left = 32
  126. Top = 72
  127. Width = 393
  128. Height = 147
  129. Font.Charset = ANSI_CHARSET
  130. Font.Color = clWindowText
  131. Font.Height = -11
  132. Font.Name = 'Arial'
  133. Font.Style = []
  134. ParentFont = False
  135. ScrollBars = ssVertical
  136. TabOrder = 1
  137. OnChange = SetModified
  138. end
  139. end
  140. object ItemsTab: TTabSheet
  141. Caption = 'Completion items'
  142. ImageIndex = 1
  143. object ItemsLbl: TLabel
  144. Left = 4
  145. Top = 4
  146. Width = 41
  147. Height = 14
  148. Caption = 'Items list'
  149. Font.Charset = ANSI_CHARSET
  150. Font.Color = clWindowText
  151. Font.Height = -11
  152. Font.Name = 'Arial'
  153. Font.Style = [fsUnderline]
  154. ParentFont = False
  155. end
  156. object ItemsList: TListBox
  157. Left = 0
  158. Top = 20
  159. Width = 169
  160. Height = 180
  161. Style = lbVirtual
  162. Font.Charset = ANSI_CHARSET
  163. Font.Color = clWindowText
  164. Font.Height = -11
  165. Font.Name = 'Arial'
  166. Font.Style = []
  167. ItemHeight = 16
  168. MultiSelect = True
  169. ParentFont = False
  170. TabOrder = 0
  171. OnClick = ItemsListClick
  172. OnData = ItemsListData
  173. end
  174. object ItemBox: TGroupBox
  175. Left = 172
  176. Top = 4
  177. Width = 261
  178. Height = 224
  179. Caption = 'Selected items properties'
  180. Font.Charset = ANSI_CHARSET
  181. Font.Color = clWindowText
  182. Font.Height = -11
  183. Font.Name = 'Arial'
  184. Font.Style = [fsUnderline]
  185. ParentFont = False
  186. TabOrder = 1
  187. object PreviewBox: TPaintBox
  188. Left = 5
  189. Top = 112
  190. Width = 251
  191. Height = 81
  192. Font.Charset = ANSI_CHARSET
  193. Font.Color = clWindowText
  194. Font.Height = -11
  195. Font.Name = 'Arial'
  196. Font.Style = []
  197. ParentFont = False
  198. OnPaint = PreviewBoxPaint
  199. end
  200. object ItemEditor: TValueListEditor
  201. Left = 4
  202. Top = 16
  203. Width = 253
  204. Height = 95
  205. BorderStyle = bsNone
  206. DefaultColWidth = 96
  207. DisplayOptions = [doAutoColResize, doKeyColFixed]
  208. FixedCols = 1
  209. Font.Charset = ANSI_CHARSET
  210. Font.Color = clWindowText
  211. Font.Height = -11
  212. Font.Name = 'Arial'
  213. Font.Style = []
  214. ParentFont = False
  215. Strings.Strings = (
  216. '=')
  217. TabOrder = 0
  218. OnStringsChange = ItemEditorStringsChange
  219. ColWidths = (
  220. 96
  221. 155)
  222. RowHeights = (
  223. 18)
  224. end
  225. object ApplyBtn: TButton
  226. Left = 165
  227. Top = 195
  228. Width = 92
  229. Height = 25
  230. Caption = 'Apply'
  231. Font.Charset = ANSI_CHARSET
  232. Font.Color = clWindowText
  233. Font.Height = -11
  234. Font.Name = 'Arial'
  235. Font.Style = []
  236. ParentFont = False
  237. TabOrder = 1
  238. OnClick = ApplyBtnClick
  239. end
  240. end
  241. object DelBtn: TButton
  242. Left = 0
  243. Top = 202
  244. Width = 169
  245. Height = 25
  246. Caption = 'Clear selection'
  247. Font.Charset = ANSI_CHARSET
  248. Font.Color = clWindowText
  249. Font.Height = -11
  250. Font.Name = 'Arial'
  251. Font.Style = []
  252. ParentFont = False
  253. TabOrder = 2
  254. OnClick = DelBtnClick
  255. end
  256. end
  257. end
  258. object OpenDialog: TOpenDialog
  259. DefaultExt = 'lst'
  260. Filter = 'Completion informations (*.ccf)|*.ccf|All files (*.*)|*.*'
  261. Left = 288
  262. Top = 32
  263. end
  264. object SaveDialog: TSaveDialog
  265. DefaultExt = 'lst'
  266. Filter = 'Completion informations (*.ccf)|*.ccf|All files (*.*)|*.*'
  267. Left = 320
  268. Top = 32
  269. end
  270. object ToolsMenu: TPopupMenu
  271. Left = 352
  272. Top = 32
  273. object ParseHeader: TMenuItem
  274. Caption = 'Parse header (*.h)'
  275. OnClick = ParseHeaderClick
  276. end
  277. object ParseHSF: TMenuItem
  278. Caption = 'Parse HSF files'
  279. OnClick = ParseHSFClick
  280. end
  281. object N1: TMenuItem
  282. Caption = '-'
  283. end
  284. object Batch1: TMenuItem
  285. Caption = 'Batch processing'
  286. OnClick = Batch1Click
  287. end
  288. end
  289. object OpenHeaderDialog: TOpenDialog
  290. DefaultExt = 'lst'
  291. Filter = 'C Header (*.h)|*.h|Tous (*.*)|*.*'
  292. Left = 384
  293. Top = 32
  294. end
  295. end