[balsa] Use John Jack's new icons for queue actions



commit f21a0b3508d7ccb83be6d90a0056d85f5931eba2
Author: Albrecht Dreß <albrecht dress arcor de>
Date:   Wed Jun 14 21:39:00 2017 -0400

    Use John Jack's new icons for queue actions
    
        * images/16x16/Makefile.am: add the file names.
        * images/24x24/Makefile.am: ditto.
        * src/balsa-icons.c (balsa_register_pixmaps): use them.
        * src/balsa-icons.h: ditto.
        * src/main-window.c: ditto.
        * src/sendmsg-window.c: ditto.
        * src/toolbar-factory.c: ditto.
    
    Signed-off-by: Peter Bloomfield <PeterBloomfield bellsouth net>

 ChangeLog                |   13 +++++++++++++
 images/16x16/Makefile.am |    2 ++
 images/24x24/Makefile.am |    2 ++
 src/balsa-icons.c        |    2 ++
 src/balsa-icons.h        |    2 ++
 src/main-window.c        |    2 +-
 src/sendmsg-window.c     |    3 ++-
 src/toolbar-factory.c    |    2 ++
 8 files changed, 26 insertions(+), 2 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 59b21fa..1ea6ee5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2017-06-14  Albrecht Dreß
+
+       Use John Jack John's new icons for "mail-queue" and
+       "balsa-send-queued" actions
+
+       * images/16x16/Makefile.am: add the file names.
+       * images/24x24/Makefile.am: ditto.
+       * src/balsa-icons.c (balsa_register_pixmaps): use them.
+       * src/balsa-icons.h: ditto.
+       * src/main-window.c: ditto.
+       * src/sendmsg-window.c: ditto.
+       * src/toolbar-factory.c: ditto.
+
 2017-06-13  Peter Bloomfield  <pbloomfield bellsouth net>
 
        * src/filter-run-dialog.c (balsa_filter_run_dialog_new): build
diff --git a/images/16x16/Makefile.am b/images/16x16/Makefile.am
index 401df51..c64cc37 100644
--- a/images/16x16/Makefile.am
+++ b/images/16x16/Makefile.am
@@ -13,6 +13,7 @@ extra_appicons_IMGS = \
        balsa-previous-part.png \
        balsa-previous.png      \
        balsa-reply-all.png     \
+       balsa-send-queued.png \
        balsa-signature-bad.png \
        balsa-signature-good.png        \
        balsa-signature-notrust.png     \
@@ -22,6 +23,7 @@ extra_appicons_IMGS = \
        stock_mail.png          \
        stock_book_red.png      \
        stock_book_open.png     \
+       mail-queue.png          \
        mail-inbox.png          \
        mail-outbox.png
 
diff --git a/images/24x24/Makefile.am b/images/24x24/Makefile.am
index 4669c5c..8aa1556 100644
--- a/images/24x24/Makefile.am
+++ b/images/24x24/Makefile.am
@@ -13,12 +13,14 @@ extra_appicons_IMGS = \
        balsa-previous-part.png \
        balsa-previous.png      \
        balsa-reply-all.png     \
+       balsa-send-queued.png \
        balsa-signature-bad.png \
        balsa-signature-good.png        \
        balsa-signature-notrust.png     \
        balsa-signature-unknown.png     \
        balsa-sign.png  \
        balsa-trash-empty.png   \
+       mail-queue.png          \
        stock_mail-receive.png  \
        stock_contact.png       \
        stock_mail.png          \
diff --git a/src/balsa-icons.c b/src/balsa-icons.c
index e0f8766..da679e8 100644
--- a/src/balsa-icons.c
+++ b/src/balsa-icons.c
@@ -107,6 +107,8 @@ balsa_register_pixmaps(void)
        { BALSA_PIXMAP_SEND,            "mail-send" },
        { BALSA_PIXMAP_RECEIVE,         "stock_mail-receive" },
        { BALSA_PIXMAP_SEND_RECEIVE,    "mail-send-receive" },
+       { BALSA_PIXMAP_QUEUE,           "mail-queue" },
+       { BALSA_PIXMAP_SEND_QUEUED,             "balsa-send-queued" },
        { BALSA_PIXMAP_FORWARD,         "mail-forward" },
        { BALSA_PIXMAP_IDENTITY,        "stock_contact" },
        { BALSA_PIXMAP_CONTINUE,        "stock_mail" },
diff --git a/src/balsa-icons.h b/src/balsa-icons.h
index 7238d25..90cfb43 100644
--- a/src/balsa-icons.h
+++ b/src/balsa-icons.h
@@ -42,6 +42,8 @@
 #define BALSA_PIXMAP_REQUEST_MDN                "balsa_request_mdn"
 #define BALSA_PIXMAP_SEND                      "balsa_send"
 #define BALSA_PIXMAP_SEND_RECEIVE              "balsa_send_receive"
+#define BALSA_PIXMAP_QUEUE                             "balsa_queue"
+#define BALSA_PIXMAP_SEND_QUEUED               "balsa_send_queued"
 #define BALSA_PIXMAP_TRASH_EMPTY               "balsa_trash_empty"
 #define BALSA_PIXMAP_NEXT_UNREAD               "balsa_next_unread"
 #define BALSA_PIXMAP_NEXT_FLAGGED              "balsa_next_flagged"
diff --git a/src/main-window.c b/src/main-window.c
index 0f58eaa..5460537 100644
--- a/src/main-window.c
+++ b/src/main-window.c
@@ -618,7 +618,7 @@ static const BalsaToolbarEntry main_toolbar_extras[] = {
     { "next-flagged",       BALSA_PIXMAP_NEXT_FLAGGED  },
     { "previous-part",      BALSA_PIXMAP_PREVIOUS_PART },
     { "next-part",          BALSA_PIXMAP_NEXT_PART     },
-    { "send-queued-mail",   BALSA_PIXMAP_SEND          },
+    { "send-queued-mail",   BALSA_PIXMAP_SEND_QUEUED   },
     { "send-and-receive-mail", BALSA_PIXMAP_SEND_RECEIVE  },
     { "save-part",         "document-save"             },
     { "identities",         BALSA_PIXMAP_IDENTITY      },
diff --git a/src/sendmsg-window.c b/src/sendmsg-window.c
index 8a139d8..225e513 100644
--- a/src/sendmsg-window.c
+++ b/src/sendmsg-window.c
@@ -4187,7 +4187,8 @@ static const BalsaToolbarEntry compose_toolbar_extras[] = {
     { "sign",        BALSA_PIXMAP_GPG_SIGN    },
     { "encrypt",     BALSA_PIXMAP_GPG_ENCRYPT },
 #endif /* HAVE_GPGME */
-    { "edit",       "gtk-edit"                }
+    { "edit",        "gtk-edit"               },
+       { "queue",               BALSA_PIXMAP_QUEUE               }
 };
 
 /* Create the toolbar model for the compose window's toolbar.
diff --git a/src/toolbar-factory.c b/src/toolbar-factory.c
index 9c1f70a..923b8f7 100644
--- a/src/toolbar-factory.c
+++ b/src/toolbar-factory.c
@@ -157,7 +157,9 @@ button_data toolbar_buttons[]={
     {"document-print",            N_("Print"),           FALSE},
     {BALSA_PIXMAP_REQUEST_MDN,   N_("Request\nMDN"),    FALSE},
     {BALSA_PIXMAP_SEND,          N_("Send"),            TRUE},
+    {BALSA_PIXMAP_SEND_QUEUED,   N_("Send queued"),     TRUE},
     {BALSA_PIXMAP_SEND_RECEIVE,  N_("Exchange"),        FALSE},
+       {BALSA_PIXMAP_QUEUE,         N_("Queue"),           TRUE},
     {BALSA_PIXMAP_ATTACHMENT,    N_("Attach"),          TRUE},
     {"document-save",             N_("Save"),            TRUE},
     {BALSA_PIXMAP_IDENTITY,      N_("Identity"),        FALSE},


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]