summaryrefslogtreecommitdiff
path: root/src/cairo-dwrite.h
diff options
context:
space:
mode:
authorAdrian Johnson <ajohnson@redneon.com>2023-01-31 06:36:56 +1030
committerAdrian Johnson <ajohnson@redneon.com>2023-01-31 06:54:32 +1030
commit15855876685f01af828c29ca2a1608eb06de2a89 (patch)
tree155faa3b3e7b73b2a1d752daca6eb42c56d6f9a7 /src/cairo-dwrite.h
parent47a932bffc16323b58e3c8f9bc3fe0d821838a84 (diff)
downloadcairo-15855876685f01af828c29ca2a1608eb06de2a89.tar.gz
dwrite: create C++ dwrite header
Diffstat (limited to 'src/cairo-dwrite.h')
-rw-r--r--src/cairo-dwrite.h60
1 files changed, 60 insertions, 0 deletions
diff --git a/src/cairo-dwrite.h b/src/cairo-dwrite.h
new file mode 100644
index 000000000..f512c3152
--- /dev/null
+++ b/src/cairo-dwrite.h
@@ -0,0 +1,60 @@
+/* cairo - a vector graphics library with display and print output
+ *
+ * Copyright © 2023 Adrian Johnson
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it either under the terms of the GNU Lesser General Public
+ * License version 2.1 as published by the Free Software Foundation
+ * (the "LGPL") or, at your option, under the terms of the Mozilla
+ * Public License Version 1.1 (the "MPL"). If you do not alter this
+ * notice, a recipient may use your version of this file under either
+ * the MPL or the LGPL.
+ *
+ * You should have received a copy of the LGPL along with this library
+ * in the file COPYING-LGPL-2.1; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA
+ * You should have received a copy of the MPL along with this library
+ * in the file COPYING-MPL-1.1
+ *
+ * The contents of this file are subject to the Mozilla Public License
+ * Version 1.1 (the "License"); you may not use this file except in
+ * compliance with the License. You may obtain a copy of the License at
+ * http://www.mozilla.org/MPL/
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
+ * OF ANY KIND, either express or implied. See the LGPL or the MPL for
+ * the specific language governing rights and limitations.
+ *
+ * The Original Code is the cairo graphics library.
+ *
+ * Contributor(s):
+ * Adrian Johnson <ajohnson@redneon.com>
+ */
+
+#ifndef _CAIRO_DWRITE_H_
+#define _CAIRO_DWRITE_H_
+
+#include "cairo.h"
+
+#if CAIRO_HAS_DWRITE_FONT
+
+#ifdef __cplusplus
+
+#include <dwrite.h>
+
+CAIRO_BEGIN_DECLS
+
+cairo_public cairo_font_face_t *
+cairo_dwrite_font_face_create_for_dwrite_fontface (IDWriteFontFace *dwrite_font_face);
+
+CAIRO_END_DECLS
+
+#else /* __cplusplus */
+#error DWrite font backend requires C++
+#endif /* __cplusplus */
+
+#else /* CAIRO_HAS_DWRITE_FONT */
+# error Cairo was not compiled with support for DWrite font backend
+#endif /* CAIRO_HAS_DWRITE_FONT */
+
+#endif /* _CAIRO_DWRITE_H_ */