From 98ef77406d84aa4a0c635d02ffff6c1b512af1d4 Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sat, 3 Nov 2012 02:57:24 +0100 Subject: Varname consolidation for the rest of pixmaps --- src/fe-gtk/maingui.c | 10 ++++----- src/fe-gtk/pixmaps.c | 36 ++++++++++++++++----------------- src/fe-gtk/pixmaps.h | 14 ++++++------- src/fe-gtk/plugin-tray.c | 6 +++--- src/pixmaps/Makefile.am | 16 +++++++-------- src/pixmaps/channel.png | Bin 422 -> 0 bytes src/pixmaps/dialog.png | Bin 911 -> 0 bytes src/pixmaps/fileoffer.png | Bin 5077 -> 0 bytes src/pixmaps/highlight.png | Bin 4781 -> 0 bytes src/pixmaps/message.png | Bin 4678 -> 0 bytes src/pixmaps/pixmaps-xp.vcxproj | 16 +++++++-------- src/pixmaps/pixmaps-xp.vcxproj.filters | 14 ++++++------- src/pixmaps/pixmaps.vcxproj | 16 +++++++-------- src/pixmaps/pixmaps.vcxproj.filters | 14 ++++++------- src/pixmaps/server.png | Bin 568 -> 0 bytes src/pixmaps/tray_fileoffer.png | Bin 0 -> 5077 bytes src/pixmaps/tray_highlight.png | Bin 0 -> 4781 bytes src/pixmaps/tray_message.png | Bin 0 -> 4678 bytes src/pixmaps/tree_channel.png | Bin 0 -> 422 bytes src/pixmaps/tree_dialog.png | Bin 0 -> 911 bytes src/pixmaps/tree_server.png | Bin 0 -> 568 bytes src/pixmaps/tree_util.png | Bin 0 -> 611 bytes src/pixmaps/util.png | Bin 611 -> 0 bytes 23 files changed, 71 insertions(+), 71 deletions(-) delete mode 100644 src/pixmaps/channel.png delete mode 100644 src/pixmaps/dialog.png delete mode 100644 src/pixmaps/fileoffer.png delete mode 100644 src/pixmaps/highlight.png delete mode 100644 src/pixmaps/message.png delete mode 100644 src/pixmaps/server.png create mode 100644 src/pixmaps/tray_fileoffer.png create mode 100644 src/pixmaps/tray_highlight.png create mode 100644 src/pixmaps/tray_message.png create mode 100644 src/pixmaps/tree_channel.png create mode 100644 src/pixmaps/tree_dialog.png create mode 100644 src/pixmaps/tree_server.png create mode 100644 src/pixmaps/tree_util.png delete mode 100644 src/pixmaps/util.png (limited to 'src') 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; diff --git a/src/pixmaps/Makefile.am b/src/pixmaps/Makefile.am index 3658c5d7..57ab72b5 100644 --- a/src/pixmaps/Makefile.am +++ b/src/pixmaps/Makefile.am @@ -6,17 +6,17 @@ LIST = png_ulist_voice $(srcdir)/ulist_voice.png \ png_ulist_owner $(srcdir)/ulist_owner.png \ png_ulist_founder $(srcdir)/ulist_founder.png \ png_ulist_netop $(srcdir)/ulist_netop.png \ - traymsgpng $(srcdir)/message.png \ - trayhilightpng $(srcdir)/highlight.png \ - trayfilepng $(srcdir)/fileoffer.png \ - channelpng $(srcdir)/channel.png \ - dialogpng $(srcdir)/dialog.png \ - serverpng $(srcdir)/server.png \ - utilpng $(srcdir)/util.png \ + png_tray_fileoffer $(srcdir)/tray_fileoffer.png \ + png_tray_highlight $(srcdir)/tray_highlight.png \ + png_tray_message $(srcdir)/tray_message.png \ + png_tree_channel $(srcdir)/tree_channel.png \ + png_tree_dialog $(srcdir)/tree_dialog.png \ + png_tree_server $(srcdir)/tree_server.png \ + png_tree_util $(srcdir)/tree_util.png \ png_book $(srcdir)/book.png \ png_hexchat $(srcdir)/hexchat.png -PNGS = ulist_voice.png ulist_halfop.png ulist_op.png ulist_owner.png ulist_founder.png ulist_netop.png message.png highlight.png fileoffer.png channel.png dialog.png server.png util.png book.png +PNGS = ulist_voice.png ulist_halfop.png ulist_op.png ulist_owner.png ulist_founder.png ulist_netop.png tray_fileoffer.png tray_highlight.png tray_message.png tree_channel.png tree_dialog.png tree_server.png tree_util.png book.png noinst_HEADERS = inline_pngs.h CLEANFILES = $(noinst_HEADERS) EXTRA_DIST = $(PNGS) diff --git a/src/pixmaps/channel.png b/src/pixmaps/channel.png deleted file mode 100644 index f6e83254..00000000 Binary files a/src/pixmaps/channel.png and /dev/null differ diff --git a/src/pixmaps/dialog.png b/src/pixmaps/dialog.png deleted file mode 100644 index 9d2d5008..00000000 Binary files a/src/pixmaps/dialog.png and /dev/null differ diff --git a/src/pixmaps/fileoffer.png b/src/pixmaps/fileoffer.png deleted file mode 100644 index f1afc029..00000000 Binary files a/src/pixmaps/fileoffer.png and /dev/null differ diff --git a/src/pixmaps/highlight.png b/src/pixmaps/highlight.png deleted file mode 100644 index 1a2f4910..00000000 Binary files a/src/pixmaps/highlight.png and /dev/null differ diff --git a/src/pixmaps/message.png b/src/pixmaps/message.png deleted file mode 100644 index 8beb9b56..00000000 Binary files a/src/pixmaps/message.png and /dev/null differ diff --git a/src/pixmaps/pixmaps-xp.vcxproj b/src/pixmaps/pixmaps-xp.vcxproj index 06a6615e..8f7538ab 100644 --- a/src/pixmaps/pixmaps-xp.vcxproj +++ b/src/pixmaps/pixmaps-xp.vcxproj @@ -92,19 +92,19 @@ - + - - - - - - - + + + + + + + diff --git a/src/pixmaps/pixmaps-xp.vcxproj.filters b/src/pixmaps/pixmaps-xp.vcxproj.filters index bfc9366d..1351b32f 100644 --- a/src/pixmaps/pixmaps-xp.vcxproj.filters +++ b/src/pixmaps/pixmaps-xp.vcxproj.filters @@ -25,25 +25,25 @@ Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files diff --git a/src/pixmaps/pixmaps.vcxproj b/src/pixmaps/pixmaps.vcxproj index b3943bce..a7df8989 100644 --- a/src/pixmaps/pixmaps.vcxproj +++ b/src/pixmaps/pixmaps.vcxproj @@ -89,19 +89,19 @@ - + - - - - - - - + + + + + + + diff --git a/src/pixmaps/pixmaps.vcxproj.filters b/src/pixmaps/pixmaps.vcxproj.filters index bfc9366d..1351b32f 100644 --- a/src/pixmaps/pixmaps.vcxproj.filters +++ b/src/pixmaps/pixmaps.vcxproj.filters @@ -25,25 +25,25 @@ Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files - + Resource Files diff --git a/src/pixmaps/server.png b/src/pixmaps/server.png deleted file mode 100644 index acddccc9..00000000 Binary files a/src/pixmaps/server.png and /dev/null differ diff --git a/src/pixmaps/tray_fileoffer.png b/src/pixmaps/tray_fileoffer.png new file mode 100644 index 00000000..f1afc029 Binary files /dev/null and b/src/pixmaps/tray_fileoffer.png differ diff --git a/src/pixmaps/tray_highlight.png b/src/pixmaps/tray_highlight.png new file mode 100644 index 00000000..1a2f4910 Binary files /dev/null and b/src/pixmaps/tray_highlight.png differ diff --git a/src/pixmaps/tray_message.png b/src/pixmaps/tray_message.png new file mode 100644 index 00000000..8beb9b56 Binary files /dev/null and b/src/pixmaps/tray_message.png differ diff --git a/src/pixmaps/tree_channel.png b/src/pixmaps/tree_channel.png new file mode 100644 index 00000000..f6e83254 Binary files /dev/null and b/src/pixmaps/tree_channel.png differ diff --git a/src/pixmaps/tree_dialog.png b/src/pixmaps/tree_dialog.png new file mode 100644 index 00000000..9d2d5008 Binary files /dev/null and b/src/pixmaps/tree_dialog.png differ diff --git a/src/pixmaps/tree_server.png b/src/pixmaps/tree_server.png new file mode 100644 index 00000000..acddccc9 Binary files /dev/null and b/src/pixmaps/tree_server.png differ diff --git a/src/pixmaps/tree_util.png b/src/pixmaps/tree_util.png new file mode 100644 index 00000000..9460dfc7 Binary files /dev/null and b/src/pixmaps/tree_util.png differ diff --git a/src/pixmaps/util.png b/src/pixmaps/util.png deleted file mode 100644 index 9460dfc7..00000000 Binary files a/src/pixmaps/util.png and /dev/null differ -- cgit 1.4.1