summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2009-02-26 02:52:45 +0000
committertweenk <tweenk@users.sourceforge.net>2009-02-26 02:52:45 +0000
commit014dfe3aedbc0909f354068d2966f630f512a0e5 (patch)
treefd03a7ab222577b6a447f33480e4691d660b7e1a /src
parentadd #include <gtk/gtk.h> to fix defect #333767 (diff)
downloadinkscape-014dfe3aedbc0909f354068d2966f630f512a0e5.tar.gz
inkscape-014dfe3aedbc0909f354068d2966f630f512a0e5.zip
Several icon name fixes
(bzr r7373)
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp3
-rw-r--r--src/ui/icon-names.h2
-rw-r--r--src/ui/widget/layer-selector.cpp7
-rw-r--r--src/widgets/desktop-widget.cpp5
-rw-r--r--src/widgets/toolbox.cpp2
5 files changed, 13 insertions, 6 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9da8c3048..bfee432ba 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -836,7 +836,10 @@ sp_main_gui(int argc, char const **argv)
g_return_val_if_fail(retVal == 0, 1);
// Add our icon directory to the search path for icon theme lookups.
+ gchar *usericondir = profile_path("icons");
+ gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(), usericondir);
gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(), INKSCAPE_PIXMAPDIR);
+ g_free(usericondir);
gdk_event_handler_set((GdkEventFunc)snooper, NULL, NULL);
Inkscape::Debug::log_display_config();
diff --git a/src/ui/icon-names.h b/src/ui/icon-names.h
index 00341c4dd..535b14795 100644
--- a/src/ui/icon-names.h
+++ b/src/ui/icon-names.h
@@ -513,7 +513,7 @@
#define INKSCAPE_ICON_VIEW_FULLSCREEN \
"view-fullscreen"
#define INKSCAPE_ICON_WINDOW_NEW \
- "window-neW"
+ "window-new"
#define INKSCAPE_ICON_WINDOW_NEXT \
"window-next"
#define INKSCAPE_ICON_WINDOW_PREVIOUS \
diff --git a/src/ui/widget/layer-selector.cpp b/src/ui/widget/layer-selector.cpp
index 51084b127..f25192b2a 100644
--- a/src/ui/widget/layer-selector.cpp
+++ b/src/ui/widget/layer-selector.cpp
@@ -23,6 +23,7 @@
#include "layer-manager.h"
#include "sp-item.h"
#include "ui/dialog/layer-properties.h"
+#include "ui/icon-names.h"
#include "ui/widget/layer-selector.h"
#include "util/filter-list.h"
#include "util/reverse-list.h"
@@ -92,7 +93,8 @@ LayerSelector::LayerSelector(SPDesktop *desktop)
{
AlternateIcons *label;
- label = Gtk::manage(new AlternateIcons(Inkscape::ICON_SIZE_DECORATION, "visible", "hidden"));
+ label = Gtk::manage(new AlternateIcons(Inkscape::ICON_SIZE_DECORATION,
+ INKSCAPE_ICON_OBJECT_VISIBLE, INKSCAPE_ICON_OBJECT_HIDDEN));
_visibility_toggle.add(*label);
_visibility_toggle.signal_toggled().connect(
sigc::compose(
@@ -112,7 +114,8 @@ LayerSelector::LayerSelector(SPDesktop *desktop)
_tooltips.set_tip(_visibility_toggle, _("Toggle current layer visibility"));
pack_start(_visibility_toggle, Gtk::PACK_EXPAND_PADDING);
- label = Gtk::manage(new AlternateIcons(Inkscape::ICON_SIZE_DECORATION, "lock_unlocked", "width_height_lock"));
+ label = Gtk::manage(new AlternateIcons(Inkscape::ICON_SIZE_DECORATION,
+ INKSCAPE_ICON_OBJECT_UNLOCKED, INKSCAPE_ICON_OBJECT_LOCKED));
_lock_toggle.add(*label);
_lock_toggle.signal_toggled().connect(
sigc::compose(
diff --git a/src/widgets/desktop-widget.cpp b/src/widgets/desktop-widget.cpp
index 356a09418..6550ca0cd 100644
--- a/src/widgets/desktop-widget.cpp
+++ b/src/widgets/desktop-widget.cpp
@@ -51,6 +51,7 @@
#include "toolbox.h"
#include "ui/dialog/dialog-manager.h"
#include "ui/dialog/swatches.h"
+#include "ui/icon-names.h"
#include "ui/widget/dock.h"
#include "ui/widget/layer-selector.h"
#include "ui/widget/selected-style.h"
@@ -374,7 +375,7 @@ sp_desktop_widget_init (SPDesktopWidget *dtw)
dtw->sticky_zoom = sp_button_new_from_data ( Inkscape::ICON_SIZE_DECORATION,
SP_BUTTON_TYPE_TOGGLE,
NULL,
- "sticky_zoom",
+ INKSCAPE_ICON_ZOOM,
_("Zoom drawing if window size changes"),
dtw->tt);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (dtw->sticky_zoom), prefs->getBool("/options/stickyzoom/value"));
@@ -396,7 +397,7 @@ sp_desktop_widget_init (SPDesktopWidget *dtw)
dtw->cms_adjust = sp_button_new_from_data( Inkscape::ICON_SIZE_DECORATION,
SP_BUTTON_TYPE_TOGGLE,
NULL,
- "color_management",
+ INKSCAPE_ICON_COLOR_MANAGEMENT,
tip,
dtw->tt );
#if ENABLE_LCMS
diff --git a/src/widgets/toolbox.cpp b/src/widgets/toolbox.cpp
index 3049d53e7..690b434e4 100644
--- a/src/widgets/toolbox.cpp
+++ b/src/widgets/toolbox.cpp
@@ -4352,7 +4352,7 @@ static void sp_tweak_toolbox_prep(SPDesktop *desktop, GtkActionGroup* mainAction
InkToggleAction* act = ink_toggle_action_new( "TweakPressureAction",
_("Pressure"),
_("Use the pressure of the input device to alter the force of tweak action"),
- "use_pressure",
+ INKSCAPE_ICON_DRAW_USE_PRESSURE,
Inkscape::ICON_SIZE_DECORATION );
gtk_action_group_add_action( mainActions, GTK_ACTION( act ) );
g_signal_connect_after( G_OBJECT(act), "toggled", G_CALLBACK(sp_tweak_pressure_state_changed), NULL);