brookpropedits.pas 715 B

123456789101112131415161718192021222324252627282930313233
  1. (*
  2. Brook for Free Pascal
  3. Copyright (C) 2014-2019 Silvio Clecio
  4. See the file LICENSE.txt, included in this distribution,
  5. for details about the copyright.
  6. This library is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. *)
  10. { Property editors unit. }
  11. unit BrookPropEdits;
  12. {$i brook.inc}
  13. interface
  14. uses
  15. BrookClasses, PropEdits;
  16. implementation
  17. initialization
  18. RegisterPropertyEditor(TypeInfo(AnsiString), TBrookComponent, 'Directory',
  19. TDirectoryPropertyEditor);
  20. RegisterPropertyEditor(TypeInfo(AnsiString), TBrookComponent, 'FileName',
  21. TFileNamePropertyEditor);
  22. end.