Settings.dfm 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. object frmSettings: TfrmSettings
  2. Left = 488
  3. Top = 343
  4. BorderStyle = bsToolWindow
  5. Caption = 'Header Builder Settings'
  6. ClientHeight = 216
  7. ClientWidth = 392
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. Position = poScreenCenter
  16. OnShow = FormShow
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object Panel1: TPanel
  20. Left = 0
  21. Top = 181
  22. Width = 392
  23. Height = 35
  24. Align = alBottom
  25. BevelOuter = bvNone
  26. TabOrder = 0
  27. object btnCancel: TButton
  28. Left = 312
  29. Top = 6
  30. Width = 75
  31. Height = 25
  32. Cancel = True
  33. Caption = '&Cancel'
  34. ModalResult = 2
  35. TabOrder = 1
  36. end
  37. object btnOK: TButton
  38. Left = 232
  39. Top = 6
  40. Width = 75
  41. Height = 25
  42. Caption = '&OK'
  43. Default = True
  44. ModalResult = 1
  45. TabOrder = 0
  46. OnClick = btnOKClick
  47. end
  48. end
  49. object Panel2: TPanel
  50. Left = 0
  51. Top = 0
  52. Width = 392
  53. Height = 181
  54. Align = alClient
  55. BevelOuter = bvNone
  56. TabOrder = 1
  57. object pgcMain: TPageControl
  58. Left = 0
  59. Top = 0
  60. Width = 392
  61. Height = 181
  62. ActivePage = TabSheet3
  63. Align = alClient
  64. TabOrder = 0
  65. object TabSheet3: TTabSheet
  66. Caption = 'Tags'
  67. ImageIndex = 2
  68. object lvwTags: TListView
  69. Left = 0
  70. Top = 30
  71. Width = 384
  72. Height = 123
  73. Align = alClient
  74. Columns = <
  75. item
  76. Caption = 'Name'
  77. Width = 125
  78. end
  79. item
  80. AutoSize = True
  81. Caption = 'Value'
  82. end>
  83. ReadOnly = True
  84. RowSelect = True
  85. TabOrder = 0
  86. ViewStyle = vsReport
  87. OnDblClick = lvwTagsDblClick
  88. end
  89. object tlbMain: TToolBar
  90. Left = 0
  91. Top = 0
  92. Width = 384
  93. Height = 30
  94. AutoSize = True
  95. BorderWidth = 2
  96. EdgeInner = esNone
  97. EdgeOuter = esNone
  98. Flat = True
  99. Images = imlToolbar
  100. TabOrder = 1
  101. object tbtnAddTag: TToolButton
  102. Left = 0
  103. Top = 0
  104. Hint = 'Add Tag Element'
  105. Caption = 'tbtnAddTag'
  106. ImageIndex = 0
  107. ParentShowHint = False
  108. ShowHint = True
  109. OnClick = tbtnAddTagClick
  110. end
  111. object tbtnRemoveTag: TToolButton
  112. Left = 23
  113. Top = 0
  114. Hint = 'Remove Selected Tag Element'
  115. ImageIndex = 1
  116. OnClick = tbtnRemoveTagClick
  117. end
  118. object tbtnEdit: TToolButton
  119. Left = 46
  120. Top = 0
  121. Hint = 'Edit Selected Tag...'
  122. ImageIndex = 2
  123. OnClick = tbtnEditClick
  124. end
  125. end
  126. end
  127. object TabSheet1: TTabSheet
  128. Caption = 'Functions'
  129. object Label1: TLabel
  130. Left = 8
  131. Top = 11
  132. Width = 72
  133. Height = 13
  134. Caption = 'Template Path:'
  135. end
  136. object txtFctTemplatePath: TEdit
  137. Left = 8
  138. Top = 26
  139. Width = 345
  140. Height = 21
  141. TabOrder = 0
  142. OnChange = txtFctTemplatePathChange
  143. end
  144. object btnBrowseFctTpl: TButton
  145. Left = 360
  146. Top = 27
  147. Width = 19
  148. Height = 19
  149. Caption = '...'
  150. TabOrder = 1
  151. OnClick = btnBrowseFctTplClick
  152. end
  153. object btnEditFctTpl: TButton
  154. Left = 8
  155. Top = 51
  156. Width = 75
  157. Height = 25
  158. Caption = 'Edit...'
  159. Enabled = False
  160. TabOrder = 2
  161. end
  162. end
  163. object TabSheet2: TTabSheet
  164. Caption = 'Files'
  165. ImageIndex = 1
  166. object Label2: TLabel
  167. Left = 8
  168. Top = 11
  169. Width = 72
  170. Height = 13
  171. Caption = 'Template Path:'
  172. end
  173. object txtFileTemplatePath: TEdit
  174. Left = 8
  175. Top = 26
  176. Width = 345
  177. Height = 21
  178. TabOrder = 0
  179. OnChange = txtFileTemplatePathChange
  180. end
  181. object btnBrowseFileTpl: TButton
  182. Left = 360
  183. Top = 27
  184. Width = 19
  185. Height = 19
  186. Caption = '...'
  187. TabOrder = 1
  188. OnClick = btnBrowseFileTplClick
  189. end
  190. object btnEditFileTpl: TButton
  191. Left = 8
  192. Top = 51
  193. Width = 75
  194. Height = 25
  195. Caption = 'Edit...'
  196. Enabled = False
  197. TabOrder = 2
  198. end
  199. end
  200. end
  201. end
  202. object odlgTemplate: TOpenDialog
  203. Filter = 'Template Files (*.tpl)|*.tpl'
  204. Options = [ofHideReadOnly, ofPathMustExist, ofEnableSizing]
  205. Title = 'Open Template File'
  206. Left = 10
  207. Top = 184
  208. end
  209. object xmpMenuPainter: TXPMenu
  210. DimLevel = 30
  211. GrayLevel = 10
  212. Font.Charset = DEFAULT_CHARSET
  213. Font.Color = clMenuText
  214. Font.Height = -11
  215. Font.Name = 'Tahoma'
  216. Font.Style = []
  217. Color = clWhite
  218. DrawMenuBar = True
  219. IconBackColor = clBtnFace
  220. MenuBarColor = clBtnFace
  221. SelectColor = 15717318
  222. SelectBorderColor = 13003057
  223. SelectFontColor = clMenuText
  224. DisabledColor = clGrayText
  225. SeparatorColor = clBtnFace
  226. CheckedColor = clHighlight
  227. IconWidth = 24
  228. DrawSelect = True
  229. UseSystemColors = False
  230. UseDimColor = False
  231. OverrideOwnerDraw = False
  232. Gradient = False
  233. FlatMenu = False
  234. AutoDetect = False
  235. XPContainers = [xccToolbar, xccCoolbar, xccControlbar, xccScrollBox, xccPageScroller]
  236. Active = True
  237. Left = 72
  238. Top = 185
  239. end
  240. object imlToolbar: TImageList
  241. Left = 40
  242. Top = 185
  243. Bitmap = {
  244. 494C010103000400040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  245. 0000000000003600000028000000400000001000000001002000000000000010
  246. 0000000000000000000000000000000000000000000000000000000000000000
  247. 0000000000000000000000000000000000000000000000000000000000000000
  248. 0000000000000000000000000000000000000000000000000000000000000000
  249. 0000000000000000000000000000000000000000000000000000000000000000
  250. 0000000000000000000000000000000000000000000000000000000000000000
  251. 0000000000000000000000000000000000000000000000000000000000000000
  252. 0000000000000000000000000000000000000000000000000000000000000000
  253. 0000000000000000000000000000000000000000000000000000000000000000
  254. 0000000000000000000000000000000000000000000000000000848484008484
  255. 8400848484008484840084848400848484008484840084848400848484008484
  256. 8400848484008484840084848400848484000000000000000000000000000000
  257. 0000000000000000000000000000000000000000000000000000000000000000
  258. 0000000000000000000000000000000000000000000000000000000000000000
  259. 0000000000000000000000000000000000000000000000000000000000000000
  260. 0000000000000000000000000000000000000000000000000000000000000000
  261. 0000000000000000000000000000000000000000000000000000000000000000
  262. 0000000000000000000000000000000000000000000000000000000000000000
  263. 0000000000000000000000000000000000000000000000000000000000000000
  264. 0000000000000000000000000000848484000000000000000000848484008484
  265. 8400848484008484840084848400848484008484840084848400848484008484
  266. 8400848484008484840084848400848484000000000000000000848484000000
  267. 0000000000000000000084848400848484008484840084848400848484008484
  268. 8400848484008484840084848400848484000000000000000000000000000000
  269. 0000000000000000000000000000000000000000000000000000000000000000
  270. 0000000000000000000000000000000000000000000000000000FFFFFF0000FF
  271. FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00000000000000
  272. 0000FFFFFF0000FFFF0000000000848484000000000000000000000000000000
  273. 0000000000000000000000000000000000000000000000000000000000000000
  274. 0000000000000000000000000000848484000000000000000000000000000000
  275. 0000000000000000000000000000000000000000000000000000000000000000
  276. 0000000000000000000000000000848484000000000000000000000000000000
  277. 0000000000000000000000000000000000000000000000000000000000000000
  278. 000000000000000000000000000000000000000000000000000000FFFF00FFFF
  279. FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000000000C6C6
  280. C60000000000FFFFFF0000000000848484000000000000000000FFFFFF0000FF
  281. FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00000000000000
  282. 0000FFFFFF0000FFFF0000000000848484000000000000000000FFFFFF000000
  283. 00000000000000000000FFFFFF0000FFFF00FFFFFF0000FFFF00000000000000
  284. 0000FFFFFF0000FFFF0000000000848484000000000000000000000000000000
  285. 0000000000000000000000000000000000000000000000000000000000000000
  286. 0000000000000000000000000000000000000000000000000000FFFFFF0000FF
  287. FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF000000000000FF
  288. FF00C6C6C600000000000000000084848400848484000000000000FFFF00FFFF
  289. FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000000000C6C6
  290. C60000000000FFFFFF000000000084848400000000000000000000FFFF000000
  291. 0000000000000000000000FFFF00FFFFFF0000FFFF00FFFFFF0000000000C6C6
  292. C60000000000FFFFFF0000000000848484000000000000000000000000000000
  293. 0000000000000000000000000000000000000000000000000000000000000000
  294. 000000000000000000000000000000000000000000000000000000FFFF00FFFF
  295. FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF00000000000000
  296. 0000000000000000000000000000848484000000840000000000FFFFFF0000FF
  297. FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF000000000000FF
  298. FF00C6C6C6000000000000000000848484000000000000000000FFFFFF000000
  299. 00000000000000000000FFFFFF0000FFFF00FFFFFF0000FFFF000000000000FF
  300. FF00C6C6C6000000000000000000848484000000000000000000000000000000
  301. 0000000000000000000000000000000000000000000000000000000000000000
  302. 000000000000000000000000000000000000FFFFFF0000000000FFFFFF008484
  303. 840000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF0000FFFF00FFFFFF0000FF
  304. FF00FFFFFF0000FFFF000000000084848400000084000000840000FFFF00FFFF
  305. FF0000FFFF00FFFFFF00848484000000840000FFFF00FFFFFF00000000000000
  306. 000000000000000000000000000084848400000000000000000000FFFF000000
  307. 0000000000000000000000FFFF00FFFFFF0000FFFF00FFFFFF00000000000000
  308. 0000000000000000000000000000848484000000000000000000000000000000
  309. 0000000000000000000000000000000000000000000000000000000000000000
  310. 0000000000000000000000000000000000008484840000FFFF0000FFFF008484
  311. 8400FFFFFF0000FFFF008484840000FFFF00FFFFFF00FFFFFF0000FFFF00FFFF
  312. FF0000FFFF00FFFFFF00000000008484840084848400000084008484840000FF
  313. FF00FFFFFF00848484000000840084848400FFFFFF0000FFFF00FFFFFF0000FF
  314. FF00FFFFFF0000FFFF0000000000848484000000000000000000FFFFFF000000
  315. 00000000000000000000FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FF
  316. FF00FFFFFF0000FFFF0000000000848484000000000000000000000000000000
  317. 0000000000000000000000000000000000000000000000000000000000000000
  318. 0000000000000000000000000000000000000000000084848400FFFFFF008484
  319. 840000FFFF008484840000FFFF00FFFFFF0000FFFF0000FFFF00FFFFFF0000FF
  320. FF00FFFFFF0000FFFF0000000000848484000000000000008400000084008484
  321. 840000FFFF000000840000008400FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  322. FF0000FFFF00FFFFFF000000000084848400000000000000000000FFFF000000
  323. 0000000000000000000000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  324. FF0000FFFF00FFFFFF0000000000848484000000000000000000000000000000
  325. 0000000000000000000000000000000000000000000000000000000000000000
  326. 000000000000000000000000000000000000848484008484840084848400FFFF
  327. FF0084848400FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  328. FF0000FFFF00FFFFFF0000000000848484000000000084848400000084000000
  329. 84000000840000008400FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FF
  330. FF00FFFFFF0000FFFF0000000000848484000000000000000000FFFFFF000000
  331. 00000000000000000000FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FF
  332. FF00FFFFFF0000FFFF0000000000848484000000000000000000000000000000
  333. 0000000000000000000000000000000000000000000000000000000000000000
  334. 000000000000000000000000000000000000FFFFFF0000FFFF008484840000FF
  335. FF00FFFFFF008484840084848400848484008484840000000000000000000000
  336. 0000000000000000000000000000000000000000000084848400000084000000
  337. 840000008400FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  338. FF0000FFFF00FFFFFF000000000084848400000000000000000000FFFF000000
  339. 0000000000000000000000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  340. FF0000FFFF00FFFFFF0000000000848484000000000000000000000000000000
  341. 0000000000000000000000000000000000000000000000000000000000000000
  342. 000000000000000000000000000000000000000000008484840000FFFF008484
  343. 840000FFFF008484840000FFFF00000000000000000000000000000000000000
  344. 0000000000000000000000000000000000008484840000008400000084000000
  345. 8400000084008484840000000000000000000000000000000000000000000000
  346. 0000000000000000000000000000000000000000000000000000000000000000
  347. 0000000000000000000000000000000000000000000000000000000000000000
  348. 0000000000000000000000000000000000000000000000000000000000000000
  349. 0000000000000000000000000000000000000000000000000000000000000000
  350. 0000000000000000000000000000000000008484840000FFFF00000000008484
  351. 8400FFFFFF00000000008484840000FFFF000000000000000000000000000000
  352. 0000000000000000000000000000000000000000840000008400848484000000
  353. 0000000084000000840084848400000000000000000000000000000000000000
  354. 0000000000000000000000000000000000000000000000000000000000000000
  355. 0000000000000000000000000000000000000000000000000000000000000000
  356. 0000000000000000000000000000000000000000000000000000000000000000
  357. 0000000000000000000000000000000000000000000000000000000000000000
  358. 00000000000000000000000000000000000000FFFF0000000000000000008484
  359. 840000FFFF000000000000000000848484000000000000000000000000000000
  360. 0000000000000000000000000000000000000000000000000000000000000000
  361. 0000000000000000840000008400848484000000000000000000000000000000
  362. 0000000000000000000000000000000000000000000000000000000000000000
  363. 0000000000000000000000000000000000000000000000000000000000000000
  364. 0000000000000000000000000000000000000000000000000000000000000000
  365. 0000000000000000000000000000000000000000000000000000000000000000
  366. 0000000000000000000000000000000000000000000000000000000000008484
  367. 8400FFFFFF000000000000000000000000000000000000000000000000000000
  368. 0000000000000000000000000000000000000000000000000000000000000000
  369. 0000000000000000000000008400000084008484840000000000000000000000
  370. 0000000000000000000000000000000000000000000000000000000000000000
  371. 0000000000000000000000000000000000000000000000000000000000000000
  372. 0000000000000000000000000000000000000000000000000000000000000000
  373. 0000000000000000000000000000000000000000000000000000000000000000
  374. 000000000000000000000000000000000000424D3E000000000000003E000000
  375. 2800000040000000100000000100010000000000800000000000000000000000
  376. 000000000000000000000000FFFFFF00FFFFFFFF80FF0000C000FFFF80FF0000
  377. 8000C000C0000000800080008000000080008000800000008000000080000000
  378. 8000000080000000000000008000000000000000800000008000800080000000
  379. 0000800080000000000180008000000081FF00018001000024FF11FFE3FF0000
  380. 66FFF8FF80FF0000E7FFFC7F80FF000000000000000000000000000000000000
  381. 000000000000}
  382. end
  383. end