summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6e16a66)
raw | patch | inline | side by side (parent: 6e16a66)
author | JucaBlues <JucaBlues@users.sourceforge.net> | |
Tue, 27 May 2008 02:28:04 +0000 (02:28 +0000) | ||
committer | JucaBlues <JucaBlues@users.sourceforge.net> | |
Tue, 27 May 2008 02:28:04 +0000 (02:28 +0000) |
* Implemented C++ binding for cairo userfonts. This will probably be sent to cairomm soon.
* Added a second font to the svgfont.svg test file.
* Added a second font to the svgfont.svg test file.
share/examples/svgfont.svg | patch | blob | history | |
src/display/nr-svgfonts.cpp | patch | blob | history | |
src/display/nr-svgfonts.h | patch | blob | history | |
src/sp-font.cpp | patch | blob | history |
index 10bac6e9178440dc51447cc4c01493647c711efb..6ac420df09c864dac4c9dc13366f8cf6c1ac1c19 100644 (file)
<hkern u1="!" u2="@" k="1000" />
</font>
+ <font id="Font2" horiz-adv-x="1000">
+ <font-face font-family="Super Sans2" font-style="oblique" font-stretch="ultra-expanded" />
+ <glyph unicode="!" d="M0,0h500v500h-500v-300h100v200h300v-300h-400z">
+ <circle r='500' cx='500' cy='500' style="fill:none;stroke:green;"/>
+ </glyph>
+ <glyph unicode="@" d="M500,500h250v250h-250z">
+ <circle r='250' cx='500' cy='500' style="fill:blue;"/>
+ </glyph>
+ <missing-glyph d="M0,0h1000v1000z"></missing-glyph>
+ <hkern u1="!" u2="@" k="1000" />
+ </font>
<text x="100" y="100" style="font-size:70;font-family:'Super Sans';fill:red;">This text is not used yet. Currently test strings are hardcoded...</text>
</svg>
index 472d232cf4600a379650bac0476255560568659b..9b760c0bc97a7b4ccf7cf0cc775d00b646535424 100644 (file)
#include <libnr/n-art-bpath.h>
#include "../style.h"
-#include "../sp-glyph.h"
-#include "../sp-missing-glyph.h"
-#include "../sp-font.h"
#include <cairo.h>
#include <vector>
#include "svg/svg.h"
#include "inkscape-cairo.h"
-#include <gtk/gtk.h>
+#include "nr-svgfonts.h"
+
+//***********************************//
+// SvgFontDrawingArea Implementation //
+//***********************************//
+class SvgFontDrawingArea : Gtk::DrawingArea{
+public:
+SvgFontDrawingArea(SvgFont* svgfont){
+ this->svgfont = svgfont;
+}
+private:
+SvgFont* svgfont;
+
+bool on_expose_event (GdkEventExpose *event){
+ Glib::RefPtr<Gdk::Window> window = get_window();
+ Cairo::RefPtr<Cairo::Context> cr = window->create_cairo_context();
+ cr->set_font_face( Cairo::RefPtr<Cairo::FontFace>(new Cairo::FontFace(this->svgfont->get_font_face(), false /* does not have reference */)) );
+ cr->set_font_size (200);
+ cr->move_to (200, 200);
+ cr->show_text ("A@!A");
+
+ cr->move_to (200, 400);
+ cr->show_text ("A!@A");
+
+ return TRUE;
+}
+};//class SvgFontDrawingArea
+
+//*************************//
+// UserFont Implementation //
+//*************************//
+static cairo_user_data_key_t key;
+
+static cairo_status_t font_init_cb (cairo_scaled_font_t *scaled_font,
+ cairo_font_extents_t *metrics){
+ cairo_font_face_t* face;
+ face = cairo_scaled_font_get_font_face(scaled_font);
+ SvgFont* instance = (SvgFont*) cairo_font_face_get_user_data(face, &key);
+ return instance->scaled_font_init(scaled_font, metrics);
+}
+
+static cairo_status_t font_unicode_to_glyph_cb (cairo_scaled_font_t *scaled_font,
+ unsigned long unicode,
+ unsigned long *glyph){
+ cairo_font_face_t* face;
+ face = cairo_scaled_font_get_font_face(scaled_font);
+ SvgFont* instance = (SvgFont*) cairo_font_face_get_user_data(face, &key);
+ return instance->scaled_font_unicode_to_glyph(scaled_font, unicode, glyph);
+}
+
+static cairo_status_t font_render_glyph_cb (cairo_scaled_font_t *scaled_font,
+ unsigned long glyph,
+ cairo_t *cr,
+ cairo_text_extents_t *metrics){
+ cairo_font_face_t* face;
+ face = cairo_scaled_font_get_font_face(scaled_font);
+ SvgFont* instance = (SvgFont*) cairo_font_face_get_user_data(face, &key);
+ return instance->scaled_font_render_glyph(scaled_font, glyph, cr, metrics);
+}
-static std::vector<SPGlyph*> glyphs;
-static SPMissingGlyph* missingglyph = NULL;
-static std::vector<SPFont*> svgfonts;
+UserFont::UserFont(SvgFont* instance){
+ this->face = cairo_user_font_face_create ();
+ cairo_user_font_face_set_init_func (this->face, font_init_cb);
+ cairo_user_font_face_set_render_glyph_func (this->face, font_render_glyph_cb);
+ cairo_user_font_face_set_unicode_to_glyph_func (this->face, font_unicode_to_glyph_cb);
-cairo_font_face_t* nr_svgfonts_get_user_font_face();
-void nr_svgfonts_append_spfont(SPFont* font);
-static cairo_status_t scaled_font_init (cairo_scaled_font_t *scaled_font, cairo_font_extents_t *metrics);
-static cairo_status_t scaled_font_unicode_to_glyph (cairo_scaled_font_t *scaled_font, unsigned long unicode, unsigned long *glyph);
-static cairo_status_t scaled_font_render_glyph (cairo_scaled_font_t *scaled_font, unsigned long glyph, cairo_t *cr, cairo_text_extents_t *metrics);
+ cairo_font_face_set_user_data (this->face, &key, (void*)instance, (cairo_destroy_func_t) NULL);
+}
-void nr_svgfonts_append_spfont(SPFont* font){
- svgfonts.push_back(font);
- nr_svgfonts_get_user_font_face();
+//******************************//
+// SvgFont class Implementation //
+//******************************//
+SvgFont::SvgFont(SPFont* spfont){
+ this->font = spfont;
+ this->missingglyph = NULL;
+ this->userfont = NULL;
+
+ Gtk::Window* window;
+ SvgFontDrawingArea* font_da;
+
+ window = new Gtk::Window();
+ window->set_default_size (1200, 850);
+ font_da = new SvgFontDrawingArea(this);
+ window->add((Gtk::Widget&) *font_da);
+ window->show_all();
}
-static cairo_status_t
-scaled_font_init (cairo_scaled_font_t *scaled_font,
+cairo_status_t
+SvgFont::scaled_font_init (cairo_scaled_font_t *scaled_font,
cairo_font_extents_t *metrics)
{
//TODO
return CAIRO_STATUS_SUCCESS;
}
-static cairo_status_t
-scaled_font_unicode_to_glyph (cairo_scaled_font_t *scaled_font,
+cairo_status_t
+SvgFont::scaled_font_unicode_to_glyph (cairo_scaled_font_t *scaled_font,
unsigned long unicode,
unsigned long *glyph)
{
//g_warning("scaled_font_unicode_to_glyph CALL. unicode=%c", (char)unicode);
unsigned long i;
- for (i=0; i < (unsigned long) glyphs.size(); i++){
+ for (i=0; i < (unsigned long) this->glyphs.size(); i++){
//TODO: compare unicode strings for ligadure glyphs (i.e. scaled_font_text_to_glyph)
- if ( ((unsigned long) glyphs[i]->unicode[0]) == unicode){
+ if ( ((unsigned long) this->glyphs[i]->unicode[0]) == unicode){
*glyph = i;
return CAIRO_STATUS_SUCCESS;
}
return CAIRO_STATUS_SUCCESS;
}
-static cairo_status_t
-scaled_font_render_glyph (cairo_scaled_font_t *scaled_font,
+cairo_status_t
+SvgFont::scaled_font_render_glyph (cairo_scaled_font_t *scaled_font,
unsigned long glyph,
cairo_t *cr,
cairo_text_extents_t *metrics)
{
//g_warning("scaled_font_render_glyph CALL. glyph=%d", (int)glyph);
- if (glyph > glyphs.size()) return CAIRO_STATUS_SUCCESS;
+ if (glyph > this->glyphs.size()) return CAIRO_STATUS_SUCCESS;
SPObject* node;
- if (glyph == glyphs.size()){
- if (!missingglyph) return CAIRO_STATUS_SUCCESS;
- node = (SPObject*) missingglyph;
+ if (glyph == this->glyphs.size()){
+ if (!this->missingglyph) return CAIRO_STATUS_SUCCESS;
+ node = (SPObject*) this->missingglyph;
g_warning("RENDER MISSING-GLYPH");
} else {
- node = (SPObject*) glyphs[glyph];
- g_warning("RENDER %c", glyphs[glyph]->unicode[0]);
+ node = (SPObject*) this->glyphs[glyph];
+ g_warning("RENDER %c", this->glyphs[glyph]->unicode[0]);
}
NArtBpath *bpath = NULL;
return CAIRO_STATUS_SUCCESS;
}
-
-bool drawing_expose_cb (GtkWidget *widget, GdkEventExpose *event, gpointer data)
-{
- cairo_t *cr = gdk_cairo_create (widget->window);
-
- cairo_set_font_face (cr, nr_svgfonts_get_user_font_face());
- cairo_set_font_size (cr, 200);
- cairo_move_to (cr, 200, 200);
- cairo_show_text (cr, "A@!A");
-
- cairo_move_to (cr, 200, 400);
- cairo_show_text (cr, "A!@A");
-
- cairo_destroy (cr);
-
- return TRUE;
-}
-
-
-cairo_font_face_t * nr_svgfonts_get_user_font_face(){
- static cairo_font_face_t *user_font_face = NULL;
-
- if (!user_font_face) {
- for(SPObject* node = svgfonts[0]->children;node;node=node->next){
+cairo_font_face_t*
+SvgFont::get_font_face(){
+ if (!this->userfont) {
+ for(SPObject* node = this->font->children;node;node=node->next){
if (SP_IS_GLYPH(node)){
g_warning("glyphs.push_back((SPGlyph*)node); (node->unicode[0]='%c')", ((SPGlyph*)node)->unicode[0]);
- glyphs.push_back((SPGlyph*)node);
+ this->glyphs.push_back((SPGlyph*)node);
}
if (SP_IS_MISSING_GLYPH(node)){
g_warning("missingglyph=(SPMissingGlyph*)node;");
- missingglyph=(SPMissingGlyph*)node;
+ this->missingglyph=(SPMissingGlyph*)node;
}
}
- user_font_face = cairo_user_font_face_create ();
- cairo_user_font_face_set_init_func (user_font_face, scaled_font_init);
- cairo_user_font_face_set_render_glyph_func (user_font_face, scaled_font_render_glyph);
- cairo_user_font_face_set_unicode_to_glyph_func (user_font_face, scaled_font_unicode_to_glyph);
-
- GtkWidget *window;
- GtkWidget *drawing;
-
- window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
- gtk_window_set_default_size (GTK_WINDOW(window), 1200, 850);
- drawing = gtk_drawing_area_new ();
- gtk_container_add (GTK_CONTAINER (window), drawing);
- gtk_widget_show_all (window);
- g_signal_connect (drawing, "expose-event", G_CALLBACK (drawing_expose_cb), NULL);
+ this->userfont = new UserFont(this);
}
- return user_font_face;
+ return this->userfont->face;
}
#endif //#ifdef ENABLE_SVG_FONTS
index f1671cb7deeaf2f10be8b6274581378b3ca88e48..3873d2324ac814379a3dd68aa6e0ff88f7f9365b 100644 (file)
#include "../sp-font.h"
#include "cairo.h"
+#include <gtkmm.h>
-void nr_svgfonts_append_spfont(SPFont* font);
-cairo_font_face_t* nr_svgfonts_get_user_font_face();
+#include <gtkmm/widget.h>
+#include <gtkmm/window.h>
+#include <gdkmm/drawable.h>
+#include <gdkmm/general.h> // for cairo helper functions
+
+#include "../sp-glyph.h"
+#include "../sp-missing-glyph.h"
+#include "../sp-font.h"
+
+class SvgFont;
+
+class UserFont{
+public:
+UserFont(SvgFont* instance);
+cairo_font_face_t* face;
+};
+
+class SvgFont{
+public:
+SvgFont(SPFont* spfont);
+cairo_font_face_t* get_font_face();
+cairo_status_t scaled_font_init (cairo_scaled_font_t *scaled_font, cairo_font_extents_t *metrics);
+cairo_status_t scaled_font_unicode_to_glyph (cairo_scaled_font_t *scaled_font, unsigned long unicode, unsigned long *glyph);
+cairo_status_t scaled_font_render_glyph (cairo_scaled_font_t *scaled_font, unsigned long glyph, cairo_t *cr, cairo_text_extents_t *metrics);
+
+private:
+SPFont* font;
+UserFont* userfont;
+std::vector<SPGlyph*> glyphs;
+SPMissingGlyph* missingglyph;
+
+bool drawing_expose_cb (Gtk::Widget *widget, GdkEventExpose *event, gpointer data);
+};
#endif //#ifndef __SVGFONTS_H__
#endif //#ifdef ENABLE_SVG_FONTS
diff --git a/src/sp-font.cpp b/src/sp-font.cpp
index 5f8d3440a6f35f17cc2eb7d0c6b3099264f14662..528aabaab18f7d2853c06357642f5032018abc5e 100644 (file)
--- a/src/sp-font.cpp
+++ b/src/sp-font.cpp
@@ -101,7 +101,7 @@ static void sp_font_build(SPObject *object, SPDocument *document, Inkscape::XML:
sp_object_read_attr(object, "vert-origin-y");
sp_object_read_attr(object, "vert-adv-y");
- nr_svgfonts_append_spfont(SP_FONT(object));
+ SvgFont* svgfont = new SvgFont(SP_FONT(object));
}