Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

37 Zeilen
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.