CompletionForm.dfm 1017 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. object CompForm: TCompForm
  2. Left = 236
  3. Top = 269
  4. Width = 328
  5. Height = 116
  6. Caption = 'Code Completion'
  7. Color = clBtnFace
  8. Constraints.MinHeight = 96
  9. Constraints.MinWidth = 128
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. FormStyle = fsStayOnTop
  16. OldCreateOrder = False
  17. Position = poDefaultPosOnly
  18. OnCreate = FormCreate
  19. OnDestroy = FormDestroy
  20. OnDeactivate = FormDeactivate
  21. PixelsPerInch = 96
  22. TextHeight = 13
  23. object CompList: TListBox
  24. Left = 0
  25. Top = 0
  26. Width = 320
  27. Height = 63
  28. Style = lbVirtual
  29. Align = alClient
  30. BorderStyle = bsNone
  31. ItemHeight = 16
  32. TabOrder = 0
  33. OnDblClick = CompListDblClick
  34. OnDrawItem = CompListDrawItem
  35. OnKeyDown = CompListKeyDown
  36. OnKeyPress = CompListKeyPress
  37. OnKeyUp = CompListKeyUp
  38. end
  39. object CompStatus: TStatusBar
  40. Left = 0
  41. Top = 63
  42. Width = 320
  43. Height = 19
  44. Panels = <>
  45. SimplePanel = True
  46. end
  47. end