You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 regels
963 B

  1. unit utsFontCreator;
  2. {$IFDEF FPC}
  3. {$mode objfpc}{$H+}
  4. {$ENDIF}
  5. interface
  6. uses
  7. Classes, SysUtils,
  8. utsUtils, utsContext;
  9. type
  10. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  11. TtsFontCreator = class(TtsRefManager)
  12. private
  13. fContext: TtsContext;
  14. public
  15. property Context: TtsContext read fContext;
  16. constructor Create(const aContext: TtsContext);
  17. end;
  18. implementation
  19. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  20. //TtsFontCreator////////////////////////////////////////////////////////////////////////////////////////////////////////
  21. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  22. constructor TtsFontCreator.Create(const aContext: TtsContext);
  23. begin
  24. inherited Create(aContext);
  25. fContext := aContext;
  26. end;
  27. end.