aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/compose.c2
-rw-r--r--src/pixmaps/Makefile.am10
-rw-r--r--src/pixmaps/stock_hand-signed.pngbin0 -> 868 bytes
-rw-r--r--src/stock_pixmap.c12
-rw-r--r--src/stock_pixmap.h1
5 files changed, 15 insertions, 10 deletions
diff --git a/src/compose.c b/src/compose.c
index d875cbd8..ccfd393b 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -4404,7 +4404,7 @@ static void compose_toolbar_create(Compose *compose, GtkWidget *container)
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
- icon_wid = stock_pixbuf_widget(container, STOCK_PIXMAP_MAIL);
+ icon_wid = stock_pixbuf_widget(container, STOCK_PIXMAP_SIGN);
sig_btn = gtk_toolbar_append_item(GTK_TOOLBAR(toolbar),
_("Signature"),
_("Insert signature"),
diff --git a/src/pixmaps/Makefile.am b/src/pixmaps/Makefile.am
index e3d35225..426f0601 100644
--- a/src/pixmaps/Makefile.am
+++ b/src/pixmaps/Makefile.am
@@ -1,10 +1,9 @@
BUILT_SOURCES = \
- stock_mail_receive_all.h \
- stock_mail_send_queue.h \
stock_addressbook.h \
stock_attach.h \
stock_delete.h \
stock_delete_16.h \
+ stock_hand-signed.h \
stock_inbox.h \
stock_insert-file.h \
stock_mail-compose.h \
@@ -15,16 +14,17 @@ BUILT_SOURCES = \
stock_mail-reply.h \
stock_mail-send.h \
stock_mail.h \
+ stock_mail_receive_all.h \
+ stock_mail_send_queue.h \
stock_outbox.h \
stock_spam.h
EXTRA_DIST = \
- stock_mail_receive_all.png \
- stock_mail_send_queue.png \
stock_addressbook.png \
stock_attach.png \
stock_delete.png \
stock_delete_16.png \
+ stock_hand-signed.png \
stock_inbox.png \
stock_insert-file.png \
stock_mail-compose.png \
@@ -35,6 +35,8 @@ EXTRA_DIST = \
stock_mail-reply.png \
stock_mail-send.png \
stock_mail.png \
+ stock_mail_receive_all.png \
+ stock_mail_send_queue.png \
stock_outbox.png \
stock_spam.png \
clip.xpm \
diff --git a/src/pixmaps/stock_hand-signed.png b/src/pixmaps/stock_hand-signed.png
new file mode 100644
index 00000000..02774f24
--- /dev/null
+++ b/src/pixmaps/stock_hand-signed.png
Binary files differ
diff --git a/src/stock_pixmap.c b/src/stock_pixmap.c
index eef84a4f..f215a0ec 100644
--- a/src/stock_pixmap.c
+++ b/src/stock_pixmap.c
@@ -39,18 +39,18 @@
#include "pixmaps/error.xpm"
#include "pixmaps/forwarded.xpm"
#include "pixmaps/group.xpm"
-#include "pixmaps/stock_inbox.h"
#include "pixmaps/interface.xpm"
#include "pixmaps/jpilot.xpm"
#include "pixmaps/ldap.xpm"
#include "pixmaps/linewrap.xpm"
#include "pixmaps/mark.xpm"
#include "pixmaps/new.xpm"
-#include "pixmaps/stock_outbox.h"
#include "pixmaps/replied.xpm"
#include "pixmaps/stock_close.xpm"
#include "pixmaps/stock_down_arrow.xpm"
#include "pixmaps/stock_exec.xpm"
+#include "pixmaps/stock_inbox.h"
+#include "pixmaps/stock_outbox.h"
#include "pixmaps/stock_mail.h"
#include "pixmaps/stock_attach.h"
#include "pixmaps/stock_mail-compose.h"
@@ -63,16 +63,17 @@
#include "pixmaps/stock_mail-send.h"
#include "pixmaps/stock_mail_send_queue.h"
#include "pixmaps/stock_insert-file.h"
-#include "pixmaps/sylpheed-logo.xpm"
#include "pixmaps/stock_addressbook.h"
#include "pixmaps/stock_delete.h"
#include "pixmaps/stock_delete_16.h"
+#include "pixmaps/stock_spam.h"
+#include "pixmaps/stock_hand-signed.h"
+#include "pixmaps/sylpheed-logo.xpm"
#include "pixmaps/unread.xpm"
#include "pixmaps/vcard.xpm"
#include "pixmaps/online.xpm"
#include "pixmaps/offline.xpm"
#include "pixmaps/mail.xpm"
-#include "pixmaps/stock_spam.h"
typedef struct _StockPixmapData StockPixmapData;
@@ -138,7 +139,8 @@ static StockPixmapData pixmaps[] =
{offline_xpm , NULL, NULL},
{mail_xpm , NULL, NULL},
{NULL , NULL, NULL, NULL, stock_delete, sizeof(stock_delete), GTK_STOCK_DELETE, 24},
- {NULL , NULL, NULL, NULL, stock_spam, sizeof(stock_spam), "stock_spam", 24}
+ {NULL , NULL, NULL, NULL, stock_spam, sizeof(stock_spam), "stock_spam", 24},
+ {NULL , NULL, NULL, NULL, stock_hand_signed, sizeof(stock_hand_signed), "stock_hand-signed", 24}
};
/* return newly constructed GtkPixmap from GdkPixmap */
diff --git a/src/stock_pixmap.h b/src/stock_pixmap.h
index 8430ddd2..742912d3 100644
--- a/src/stock_pixmap.h
+++ b/src/stock_pixmap.h
@@ -74,6 +74,7 @@ typedef enum
STOCK_PIXMAP_MAIL_SMALL,
STOCK_PIXMAP_DELETE,
STOCK_PIXMAP_SPAM,
+ STOCK_PIXMAP_SIGN,
N_STOCK_PIXMAPS
} StockPixmap;