FunctionsWinUnit.dfm 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. object FunctionsForm: TFunctionsForm
  2. Left = 190
  3. Top = 137
  4. ActiveControl = FuncList
  5. BorderStyle = bsDialog
  6. Caption = 'Functions'
  7. ClientHeight = 161
  8. ClientWidth = 313
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. OldCreateOrder = False
  16. Position = poScreenCenter
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object FuncList: TListBox
  20. Left = 16
  21. Top = 16
  22. Width = 177
  23. Height = 129
  24. ItemHeight = 13
  25. Sorted = True
  26. TabOrder = 0
  27. OnClick = FuncListClick
  28. OnDblClick = FuncListDblClick
  29. OnMouseDown = FuncListMouseDown
  30. end
  31. object PrototypeButton: TButton
  32. Left = 208
  33. Top = 24
  34. Width = 89
  35. Height = 25
  36. Caption = '&Prototype'
  37. ModalResult = 6
  38. TabOrder = 1
  39. end
  40. object ImplementationButton: TButton
  41. Left = 208
  42. Top = 64
  43. Width = 89
  44. Height = 25
  45. Caption = '&Implementation'
  46. Default = True
  47. ModalResult = 7
  48. TabOrder = 2
  49. end
  50. object CancelButton: TButton
  51. Left = 208
  52. Top = 112
  53. Width = 89
  54. Height = 25
  55. Cancel = True
  56. Caption = '&Cancel'
  57. ModalResult = 2
  58. TabOrder = 3
  59. end
  60. end