]> www.fi.muni.cz Git - evince.git/commitdiff
Put back total number of pages as (1 of 1234)
authorMarco Pesenti Gritti <mpg@redhat.com>
Fri, 22 Apr 2005 09:01:30 +0000 (09:01 +0000)
committerMarco Pesenti Gritti <marco@src.gnome.org>
Fri, 22 Apr 2005 09:01:30 +0000 (09:01 +0000)
2005-04-22  Marco Pesenti Gritti <mpg@redhat.com>

        * shell/ev-page-action.c: (update_pages_label), (page_changed_cb),
        (create_tool_item):

        Put back total number of pages as (1 of 1234)

ChangeLog
shell/ev-page-action.c

index 11cf2667e21e25ee32392a1a7d57950d7d57e69e..a26f83ae0f34ded41a1534fe62119bd52fda62e6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-04-22  Marco Pesenti Gritti <mpg@redhat.com>
+
+       * shell/ev-page-action.c: (update_pages_label), (page_changed_cb),
+       (create_tool_item):
+
+       Put back total number of pages as (1 of 1234)
+
 Thu Apr 21 23:37:52 2005  Jonathan Blandford  <jrb@redhat.com>
 
        * shell/ev-pixbuf-cache.c (dispose_cache_job_info): actually
index d122be45906a4482f2edd9c917a4d74d4568ebe3..18415a3675be8c381b1caab35ccf4d4ef2b2f9fb 100644 (file)
@@ -39,6 +39,7 @@ struct _EvPageActionWidget
        GtkToolItem parent;
 
        GtkWidget *entry;
+       GtkWidget *label;
        EvPageCache *page_cache;
        guint signal_id;
        GtkTreeModel *filter_model;
@@ -93,6 +94,20 @@ enum {
 /* user data to set on the widget. */
 #define EPA_FILTER_MODEL_DATA "epa-filter-model"
 
+static void
+update_pages_label (EvPageActionWidget *proxy,
+                   gint                page,
+                   EvPageCache        *page_cache)
+{
+       char *label_text;
+       gint n_pages;
+
+       n_pages = page_cache ? ev_page_cache_get_n_pages (page_cache) : 0;
+       label_text = g_strdup_printf (_("(%d of %d)"), page + 1, n_pages);
+       gtk_label_set_text (GTK_LABEL (proxy->label), label_text);
+       g_free (label_text);
+}
+
 static void
 page_changed_cb (EvPageCache        *page_cache,
                 gint                page,
@@ -108,6 +123,8 @@ page_changed_cb (EvPageCache        *page_cache,
        } else {
                gtk_entry_set_text (GTK_ENTRY (proxy->entry), "");
        }
+
+       update_pages_label (proxy, page, page_cache);
 }
 
 static void
@@ -136,20 +153,29 @@ static GtkWidget *
 create_tool_item (GtkAction *action)
 {
        EvPageActionWidget *proxy;
+       GtkWidget *hbox;
 
        proxy = g_object_new (ev_page_action_widget_get_type (), NULL);
        gtk_container_set_border_width (GTK_CONTAINER (proxy), 6); 
        gtk_widget_show (GTK_WIDGET (proxy));
 
+       hbox = gtk_hbox_new (FALSE, 0);
+       gtk_box_set_spacing (GTK_BOX (hbox), 6);
+
        proxy->entry = gtk_entry_new ();
        gtk_entry_set_width_chars (GTK_ENTRY (proxy->entry), 5);
+       gtk_box_pack_start (GTK_BOX (hbox), proxy->entry, FALSE, FALSE, 0);
        gtk_widget_show (proxy->entry);
-
        g_signal_connect (proxy->entry, "activate",
                          G_CALLBACK (activate_cb),
                          action);
 
-       gtk_container_add (GTK_CONTAINER (proxy), proxy->entry);
+       proxy->label = gtk_label_new (NULL);
+       gtk_box_pack_start (GTK_BOX (hbox), proxy->label, FALSE, FALSE, 0);
+       gtk_widget_show (proxy->label);
+
+       gtk_container_add (GTK_CONTAINER (proxy), hbox);
+       gtk_widget_show (hbox);
 
        return GTK_WIDGET (proxy);
 }