gvplugin_textlayout.h 850 B

1234567891011121314151617181920212223242526272829303132
  1. /// @file
  2. /// @ingroup plugin_api
  3. /*************************************************************************
  4. * Copyright (c) 2011 AT&T Intellectual Property
  5. * All rights reserved. This program and the accompanying materials
  6. * are made available under the terms of the Eclipse Public License v1.0
  7. * which accompanies this distribution, and is available at
  8. * https://www.eclipse.org/legal/epl-v10.html
  9. *
  10. * Contributors: Details at https://graphviz.org
  11. *************************************************************************/
  12. #pragma once
  13. #include "types.h"
  14. #include "gvplugin.h"
  15. #include "gvcjob.h"
  16. #include "gvcommon.h"
  17. #include <stdbool.h>
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. /// @ingroup plugin_api
  22. struct gvtextlayout_engine_s {
  23. bool (*textlayout) (textspan_t *span, char** fontpath);
  24. };
  25. #ifdef __cplusplus
  26. }
  27. #endif