summary refs log tree commit diff stats
path: root/src/fe-gtk
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-11-03 02:57:24 +0100
committerBerke Viktor <bviktor@hexchat.org>2012-11-03 02:57:24 +0100
commit98ef77406d84aa4a0c635d02ffff6c1b512af1d4 (patch)
treeadc72e50d02f20fee841d365035d74b2ff2aaa39 /src/fe-gtk
parentc65e16fd00dd3ceacac301f2f774bdf29cf211d2 (diff)
Varname consolidation for the rest of pixmaps
Diffstat (limited to 'src/fe-gtk')
-rw-r--r--src/fe-gtk/maingui.c10
-rw-r--r--src/fe-gtk/pixmaps.c36
-rw-r--r--src/fe-gtk/pixmaps.h14
-rw-r--r--src/fe-gtk/plugin-tray.c6
4 files changed, 33 insertions, 33 deletions
diff --git a/src/fe-gtk/maingui.c b/src/fe-gtk/maingui.c
index 1868512b..e6817dc6 100644
--- a/src/fe-gtk/maingui.c
+++ b/src/fe-gtk/maingui.c
@@ -1737,13 +1737,13 @@ mg_add_chan (session *sess)
 	switch (sess->type)
 	{
 	case SESS_CHANNEL:
-		icon = pix_channel;
+		icon = pix_tree_channel;
 		break;
 	case SESS_SERVER:
-		icon = pix_server;
+		icon = pix_tree_server;
 		break;
 	default:
-		icon = pix_dialog;
+		icon = pix_tree_dialog;
 	}
 
 	sess->res->tab = chanview_add (sess->gui->chanview, name, sess->server, sess,
@@ -2923,7 +2923,7 @@ mg_create_tabs (session_gui *gui)
 
 	/* if any one of these PNGs exist, the chanview will create
 	 * the extra column for icons. */
-	if (prefs.hex_gui_tab_icons && (pix_channel || pix_dialog || pix_server || pix_util))
+	if (prefs.hex_gui_tab_icons && (pix_tree_channel || pix_tree_dialog || pix_tree_server || pix_tree_util))
 	{
 		use_icons = TRUE;
 	}
@@ -3187,7 +3187,7 @@ mg_add_generic_tab (char *name, char *title, void *family, GtkWidget *box)
 	gtk_notebook_append_page (GTK_NOTEBOOK (mg_gui->note_book), box, NULL);
 	gtk_widget_show (box);
 
-	ch = chanview_add (mg_gui->chanview, name, NULL, box, TRUE, TAG_UTIL, pix_util);
+	ch = chanview_add (mg_gui->chanview, name, NULL, box, TRUE, TAG_UTIL, pix_tree_util);
 	chan_set_color (ch, plain_list);
 	/* FIXME: memory leak */
 	g_object_set_data (G_OBJECT (box), "title", strdup (title));
diff --git a/src/fe-gtk/pixmaps.c b/src/fe-gtk/pixmaps.c
index 24439219..1a5add8c 100644
--- a/src/fe-gtk/pixmaps.c
+++ b/src/fe-gtk/pixmaps.c
@@ -38,14 +38,14 @@ GdkPixbuf *pix_ulist_owner;
 GdkPixbuf *pix_ulist_founder;
 GdkPixbuf *pix_ulist_netop;
 
-GdkPixbuf *pix_tray_msg;
-GdkPixbuf *pix_tray_hilight;
-GdkPixbuf *pix_tray_file;
+GdkPixbuf *pix_tray_fileoffer;
+GdkPixbuf *pix_tray_highlight;
+GdkPixbuf *pix_tray_message;
 
-GdkPixbuf *pix_channel;
-GdkPixbuf *pix_dialog;
-GdkPixbuf *pix_server;
-GdkPixbuf *pix_util;
+GdkPixbuf *pix_tree_channel;
+GdkPixbuf *pix_tree_dialog;
+GdkPixbuf *pix_tree_server;
+GdkPixbuf *pix_tree_util;
 
 GdkPixbuf *pix_book;
 GdkPixbuf *pix_hexchat;
@@ -129,22 +129,22 @@ pixmaps_init (void)
 	pix_ulist_netop = load_pixmap ("ulist_netop", png_ulist_netop, 1);
 
 	/* tray icons, with inlined defaults */
-	pix_tray_msg = load_pixmap ("message", traymsgpng, 1);
-	pix_tray_hilight = load_pixmap ("highlight", trayhilightpng, 1);
-	pix_tray_file = load_pixmap ("fileoffer", trayfilepng, 1);
+	pix_tray_fileoffer = load_pixmap ("tray_fileoffer", png_tray_fileoffer, 1);
+	pix_tray_highlight = load_pixmap ("highlight", png_tray_highlight, 1);
+	pix_tray_message = load_pixmap ("message", png_tray_message, 1);
 
 #if 0
 	/* treeview icons, no defaults, load from disk only */
-	pix_channel = load_pixmap ("channel", NULL, 0);
-	pix_dialog = load_pixmap ("dialog", NULL, 0);
-	pix_server = load_pixmap ("server", NULL, 0);
-	pix_util = load_pixmap ("util", NULL, 0);
+	pix_tree_channel = load_pixmap ("tree_channel", NULL, 0);
+	pix_tree_dialog = load_pixmap ("tree_dialog", NULL, 0);
+	pix_tree_server = load_pixmap ("tree_server", NULL, 0);
+	pix_tree_util = load_pixmap ("tree_util", NULL, 0);
 #endif
 	/* provide inline defaults for these coz they are nice! */
-	pix_channel = load_pixmap ("channel", channelpng, 1);
-	pix_dialog = load_pixmap ("dialog", dialogpng, 1);
-	pix_server = load_pixmap ("server", serverpng, 1);
-	pix_util = load_pixmap ("util", utilpng, 1);
+	pix_tree_channel = load_pixmap ("tree_channel", png_tree_channel, 1);
+	pix_tree_dialog = load_pixmap ("tree_dialog", png_tree_dialog, 1);
+	pix_tree_server = load_pixmap ("tree_server", png_tree_server, 1);
+	pix_tree_util = load_pixmap ("tree_util", png_tree_util, 1);
 
 	/* non-replaceable book pixmap */
 	pix_book = gdk_pixbuf_new_from_inline (-1, png_book, FALSE, 0);
diff --git a/src/fe-gtk/pixmaps.h b/src/fe-gtk/pixmaps.h
index 8a364264..64607582 100644
--- a/src/fe-gtk/pixmaps.h
+++ b/src/fe-gtk/pixmaps.h
@@ -5,14 +5,14 @@ extern GdkPixbuf *pix_ulist_owner;
 extern GdkPixbuf *pix_ulist_founder;
 extern GdkPixbuf *pix_ulist_netop;
 
-extern GdkPixbuf *pix_tray_msg;
-extern GdkPixbuf *pix_tray_hilight;
-extern GdkPixbuf *pix_tray_file;
+extern GdkPixbuf *pix_tray_fileoffer;
+extern GdkPixbuf *pix_tray_highlight;
+extern GdkPixbuf *pix_tray_message;
 
-extern GdkPixbuf *pix_channel;
-extern GdkPixbuf *pix_dialog;
-extern GdkPixbuf *pix_server;
-extern GdkPixbuf *pix_util;
+extern GdkPixbuf *pix_tree_channel;
+extern GdkPixbuf *pix_tree_dialog;
+extern GdkPixbuf *pix_tree_server;
+extern GdkPixbuf *pix_tree_util;
 
 extern GdkPixbuf *pix_book;
 extern GdkPixbuf *pix_hexchat;
diff --git a/src/fe-gtk/plugin-tray.c b/src/fe-gtk/plugin-tray.c
index 489b4822..adbddf8f 100644
--- a/src/fe-gtk/plugin-tray.c
+++ b/src/fe-gtk/plugin-tray.c
@@ -52,9 +52,9 @@ typedef GdkPixbuf* TrayIcon;
 #define tray_icon_free(i) g_object_unref(i)
 
 #define ICON_NORMAL pix_hexchat
-#define ICON_MSG pix_tray_msg
-#define ICON_HILIGHT pix_tray_hilight
-#define ICON_FILE pix_tray_file
+#define ICON_MSG pix_tray_message
+#define ICON_HILIGHT pix_tray_highlight
+#define ICON_FILE pix_tray_fileoffer
 #define TIMEOUT 500
 
 static GtkStatusIcon *sticon;