summaryrefslogtreecommitdiffstats
path: root/src/inkscape-stock.cpp
diff options
context:
space:
mode:
authorMenTaLguY <mental@rydia.net>2006-01-16 02:36:01 +0000
committermental <mental@users.sourceforge.net>2006-01-16 02:36:01 +0000
commit179fa413b047bede6e32109e2ce82437c5fb8d34 (patch)
treea5a6ac2c1708bd02288fbd8edb2ff500ff2e0916 /src/inkscape-stock.cpp
downloadinkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.tar.gz
inkscape-179fa413b047bede6e32109e2ce82437c5fb8d34.zip
moving trunk for module inkscape
(bzr r1)
Diffstat (limited to 'src/inkscape-stock.cpp')
-rw-r--r--src/inkscape-stock.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/src/inkscape-stock.cpp b/src/inkscape-stock.cpp
new file mode 100644
index 000000000..16bf883d0
--- /dev/null
+++ b/src/inkscape-stock.cpp
@@ -0,0 +1,51 @@
+/*
+ * @file inkscape-stock.h GTK+ Stock resources
+ *
+ * Authors:
+ * Robert Crosbie
+ *
+ * Copyright (C) 1999-2002 Authors
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+#include "gtk/gtkiconfactory.h"
+
+
+void
+inkscape_gtk_stock_init() {
+ static bool stock_initialized = false;
+
+ if (stock_initialized)
+ return;
+
+ GtkIconFactory *icon_factory = gtk_icon_factory_new();
+ /* todo: Should we simply remove this file now that we're no longer
+ * calling gtk_icon_factory_add here? */
+ gtk_icon_factory_add_default(icon_factory);
+
+ stock_initialized = true;
+}
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :