summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ab77eca)
raw | patch | inline | side by side (parent: ab77eca)
author | JucaBlues <JucaBlues@users.sourceforge.net> | |
Wed, 25 Jun 2008 02:58:21 +0000 (02:58 +0000) | ||
committer | JucaBlues <JucaBlues@users.sourceforge.net> | |
Wed, 25 Jun 2008 02:58:21 +0000 (02:58 +0000) |
src/ui/dialog/svg-fonts-dialog.cpp | [new file with mode: 0644] | patch | blob |
src/ui/dialog/svg-fonts-dialog.h | [new file with mode: 0644] | patch | blob |
diff --git a/src/ui/dialog/svg-fonts-dialog.cpp b/src/ui/dialog/svg-fonts-dialog.cpp
--- /dev/null
@@ -0,0 +1,39 @@
+/**
+ * \brief SVG Fonts dialog
+ *
+ * Authors:
+ * Felipe C. da S. Sanches <felipe.sanches@gmail.com>
+ *
+ * Copyright (C) 2008 Authors
+ *
+ * Released under GNU GPLv2 (or later). Read the file 'COPYING' for more information.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#ifdef ENABLE_SVG_FONTS
+
+#include "svg-fonts-dialog.h"
+
+namespace Inkscape {
+namespace UI {
+namespace Dialog {
+
+/*** SvgFontsDialog ***/
+
+SvgFontsDialog::SvgFontsDialog()
+ : UI::Widget::Panel("", "dialogs.svgfonts", SP_VERB_DIALOG_SVG_FONTS)
+{
+ Gtk::Label* label = Gtk::manage(new Gtk::Label("Here we will have settings for the SVGFonts used in the document."));
+ _getContents()->add(*label);
+}
+
+SvgFontsDialog::~SvgFontsDialog(){}
+
+} // namespace Dialog
+} // namespace UI
+} // namespace Inkscape
+
+#endif //#ifdef ENABLE_SVG_FONTS
diff --git a/src/ui/dialog/svg-fonts-dialog.h b/src/ui/dialog/svg-fonts-dialog.h
--- /dev/null
@@ -0,0 +1,38 @@
+/**
+ * \brief SVG Fonts dialog
+ *
+ * Authors:
+ * Felipe CorrĂȘa da Silva Sanches <felipe.sanches@gmail.com>
+ *
+ * Copyright (C) 2008 Authors
+ *
+ * Released under GNU GPLv2 (or later). Read the file 'COPYING' for more information.
+ */
+
+#ifndef INKSCAPE_UI_DIALOG_SVG_FONTS_H
+#define INKSCAPE_UI_DIALOG_SVG_FONTS_H
+
+#include "ui/widget/panel.h"
+#include "sp-font.h"
+#include "verbs.h"
+
+using namespace Inkscape::UI::Widget;
+
+namespace Inkscape {
+namespace UI {
+namespace Dialog {
+
+class SvgFontsDialog : public UI::Widget::Panel {
+public:
+ SvgFontsDialog();
+ ~SvgFontsDialog();
+
+ static SvgFontsDialog &getInstance()
+ { return *new SvgFontsDialog(); }
+};
+
+} // namespace Dialog
+} // namespace UI
+} // namespace Inkscape
+
+#endif //#ifndef INKSCAPE_UI_DIALOG_SVG_FONTS_H