summaryrefslogtreecommitdiff
path: root/test/toy-font-face.c
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-08-06 21:37:36 -0400
committerBehdad Esfahbod <behdad@behdad.org>2008-08-08 03:01:14 -0400
commit7e57892983bbc639fe4a402a427b255e4d4ab746 (patch)
tree8d535d5bf6b819543a868e7ce5d025d1704f06ec /test/toy-font-face.c
parentbca9a21e98c870cdb4695c9155517377757beaea (diff)
downloadcairo-7e57892983bbc639fe4a402a427b255e4d4ab746.tar.gz
Add toy font constructor and getters
New public API: cairo_toy_font_face_create() cairo_toy_font_face_get_family() cairo_toy_font_face_get_slant() cairo_toy_font_face_get_weight()
Diffstat (limited to 'test/toy-font-face.c')
-rw-r--r--test/toy-font-face.c129
1 files changed, 129 insertions, 0 deletions
diff --git a/test/toy-font-face.c b/test/toy-font-face.c
new file mode 100644
index 000000000..262f7ce5f
--- /dev/null
+++ b/test/toy-font-face.c
@@ -0,0 +1,129 @@
+/*
+ * Copyright © 2005,2008 Red Hat, Inc.
+ *
+ * Permission to use, copy, modify, distribute, and sell this software
+ * and its documentation for any purpose is hereby granted without
+ * fee, provided that the above copyright notice appear in all copies
+ * and that both that copyright notice and this permission notice
+ * appear in supporting documentation, and that the name of
+ * Red Hat, Inc. not be used in advertising or publicity pertaining to
+ * distribution of the software without specific, written prior
+ * permission. Red Hat, Inc. makes no representations about the
+ * suitability of this software for any purpose. It is provided "as
+ * is" without express or implied warranty.
+ *
+ * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
+ * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
+ * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
+ * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
+ * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
+ * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ *
+ * Author: Carl D. Worth <cworth@cworth.org>
+ * Behdad Esfahbod <behdad@behdad.org>
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <cairo.h>
+#include <assert.h>
+#include <stdlib.h>
+#include <string.h>
+
+#if HAVE_FCFINI
+#include <fontconfig/fontconfig.h>
+#endif
+
+int
+main (void)
+{
+ cairo_t *cr;
+ cairo_surface_t *surface;
+ cairo_font_face_t *font_face;
+
+ surface = cairo_image_surface_create (CAIRO_FORMAT_RGB24, 0, 0);
+ cr = cairo_create (surface);
+ cairo_surface_destroy (surface);
+
+ font_face = cairo_font_face_reference (cairo_get_font_face (cr));
+ assert (cairo_font_face_get_type (font_face) == CAIRO_FONT_TYPE_TOY);
+ assert (cairo_toy_font_face_get_family (font_face) != NULL);
+ assert (cairo_toy_font_face_get_slant (font_face) == CAIRO_FONT_SLANT_NORMAL);
+ assert (cairo_toy_font_face_get_weight (font_face) == CAIRO_FONT_WEIGHT_NORMAL);
+ assert (cairo_font_face_status(font_face) == CAIRO_STATUS_SUCCESS);
+ cairo_font_face_destroy (font_face);
+
+ cairo_select_font_face (cr,
+ "bizarre",
+ CAIRO_FONT_SLANT_OBLIQUE,
+ CAIRO_FONT_WEIGHT_BOLD);
+ font_face = cairo_font_face_reference (cairo_get_font_face (cr));
+ assert (cairo_font_face_get_type (font_face) == CAIRO_FONT_TYPE_TOY);
+ assert (0 == (strcmp) (cairo_toy_font_face_get_family (font_face), "bizarre"));
+ assert (cairo_toy_font_face_get_slant (font_face) == CAIRO_FONT_SLANT_OBLIQUE);
+ assert (cairo_toy_font_face_get_weight (font_face) == CAIRO_FONT_WEIGHT_BOLD);
+ assert (cairo_font_face_status(font_face) == CAIRO_STATUS_SUCCESS);
+ cairo_font_face_destroy (font_face);
+
+ font_face = cairo_toy_font_face_create ("bozarre",
+ CAIRO_FONT_SLANT_OBLIQUE,
+ CAIRO_FONT_WEIGHT_BOLD);
+ assert (cairo_font_face_get_type (font_face) == CAIRO_FONT_TYPE_TOY);
+ assert (0 == (strcmp) (cairo_toy_font_face_get_family (font_face), "bozarre"));
+ assert (cairo_toy_font_face_get_slant (font_face) == CAIRO_FONT_SLANT_OBLIQUE);
+ assert (cairo_toy_font_face_get_weight (font_face) == CAIRO_FONT_WEIGHT_BOLD);
+ assert (cairo_font_face_status(font_face) == CAIRO_STATUS_SUCCESS);
+ cairo_font_face_destroy (font_face);
+
+ font_face = cairo_toy_font_face_create (NULL,
+ CAIRO_FONT_SLANT_OBLIQUE,
+ CAIRO_FONT_WEIGHT_BOLD);
+ assert (cairo_font_face_get_type (font_face) == CAIRO_FONT_TYPE_TOY);
+ assert (0 == (strcmp) (cairo_toy_font_face_get_family (font_face), ""));
+ assert (cairo_toy_font_face_get_slant (font_face) == CAIRO_FONT_SLANT_NORMAL);
+ assert (cairo_toy_font_face_get_weight (font_face) == CAIRO_FONT_WEIGHT_NORMAL);
+ assert (cairo_font_face_status(font_face) == CAIRO_STATUS_NULL_POINTER);
+ cairo_font_face_destroy (font_face);
+
+ font_face = cairo_toy_font_face_create ("\xff",
+ CAIRO_FONT_SLANT_OBLIQUE,
+ CAIRO_FONT_WEIGHT_BOLD);
+ assert (cairo_font_face_get_type (font_face) == CAIRO_FONT_TYPE_TOY);
+ assert (0 == (strcmp) (cairo_toy_font_face_get_family (font_face), ""));
+ assert (cairo_toy_font_face_get_slant (font_face) == CAIRO_FONT_SLANT_NORMAL);
+ assert (cairo_toy_font_face_get_weight (font_face) == CAIRO_FONT_WEIGHT_NORMAL);
+ assert (cairo_font_face_status(font_face) == CAIRO_STATUS_INVALID_STRING);
+ cairo_font_face_destroy (font_face);
+
+ font_face = cairo_toy_font_face_create ("sans",
+ -1,
+ CAIRO_FONT_WEIGHT_BOLD);
+ assert (cairo_font_face_get_type (font_face) == CAIRO_FONT_TYPE_TOY);
+ assert (0 == (strcmp) (cairo_toy_font_face_get_family (font_face), ""));
+ assert (cairo_toy_font_face_get_slant (font_face) == CAIRO_FONT_SLANT_NORMAL);
+ assert (cairo_toy_font_face_get_weight (font_face) == CAIRO_FONT_WEIGHT_NORMAL);
+ assert (cairo_font_face_status(font_face) == CAIRO_STATUS_INVALID_SLANT);
+ cairo_font_face_destroy (font_face);
+
+ font_face = cairo_toy_font_face_create ("sans",
+ CAIRO_FONT_SLANT_OBLIQUE,
+ -1);
+ assert (cairo_font_face_get_type (font_face) == CAIRO_FONT_TYPE_TOY);
+ assert (0 == (strcmp) (cairo_toy_font_face_get_family (font_face), ""));
+ assert (cairo_toy_font_face_get_slant (font_face) == CAIRO_FONT_SLANT_NORMAL);
+ assert (cairo_toy_font_face_get_weight (font_face) == CAIRO_FONT_WEIGHT_NORMAL);
+ assert (cairo_font_face_status(font_face) == CAIRO_STATUS_INVALID_WEIGHT);
+ cairo_font_face_destroy (font_face);
+
+ cairo_destroy (cr);
+
+ cairo_debug_reset_static_data ();
+#if HAVE_FCFINI
+ FcFini ();
+#endif
+
+ return 0;
+}