IDE.GotoFileForm.dfm 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. object GotoFileForm: TGotoFileForm
  2. Left = 330
  3. Top = 188
  4. BorderIcons = [biSystemMenu]
  5. Caption = 'Goto File'
  6. ClientHeight = 497
  7. ClientWidth = 577
  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. Position = poScreenCenter
  15. OnCreate = FormCreate
  16. DesignSize = (
  17. 577
  18. 497)
  19. TextHeight = 13
  20. object OKButton: TButton
  21. Left = 416
  22. Top = 467
  23. Width = 73
  24. Height = 23
  25. Anchors = [akRight, akBottom]
  26. Caption = 'OK'
  27. Default = True
  28. ModalResult = 1
  29. TabOrder = 1
  30. end
  31. object CancelButton: TButton
  32. Left = 496
  33. Top = 467
  34. Width = 73
  35. Height = 23
  36. Anchors = [akRight, akBottom]
  37. Cancel = True
  38. Caption = 'Cancel'
  39. ModalResult = 2
  40. TabOrder = 2
  41. end
  42. object GotoFileListBox: TListBox
  43. Left = 8
  44. Top = 37
  45. Width = 561
  46. Height = 422
  47. Anchors = [akLeft, akTop, akRight, akBottom]
  48. ItemHeight = 13
  49. TabOrder = 3
  50. OnDblClick = GotoFileListBoxDblClick
  51. OnKeyDown = GotoFileEditOrListBoxKeyDown
  52. end
  53. object GotoFileEdit: TEdit
  54. Left = 8
  55. Top = 8
  56. Width = 561
  57. Height = 21
  58. Anchors = [akLeft, akTop, akRight]
  59. TabOrder = 0
  60. OnChange = GotoFileEditChange
  61. OnKeyDown = GotoFileEditOrListBoxKeyDown
  62. end
  63. end