[evolution-data-server/openismus-work-master: 129/137] Cursor Example: updated to use new cursor step() API



commit b4b729f8d105c86a133d527a0c547edcc3ad1bd3
Author: Tristan Van Berkom <tristanvb openismus com>
Date:   Fri Oct 18 22:42:12 2013 +0200

    Cursor Example: updated to use new cursor step() API

 tests/cursor-example/cursor-example.c  |  255 +++++++++++++++++--------------
 tests/cursor-example/cursor-example.ui |   61 +-------
 2 files changed, 143 insertions(+), 173 deletions(-)
---
diff --git a/tests/cursor-example/cursor-example.c b/tests/cursor-example/cursor-example.c
index 35384ed..b9f3947 100644
--- a/tests/cursor-example/cursor-example.c
+++ b/tests/cursor-example/cursor-example.c
@@ -73,8 +73,8 @@ static void            cursor_example_status_changed          (EBookClientCursor
 static void            cursor_example_load_alphabet           (CursorExample      *example);
 static gboolean        cursor_example_move_cursor             (CursorExample      *example,
                                                               EBookCursorOrigin   origin,
-                                                              gint                count,
-                                                              gboolean            load_page,
+                                                              gint                count);
+static gboolean        cursor_example_load_page               (CursorExample      *example,
                                                               gboolean           *full_results);
 static void            cursor_example_update_status           (CursorExample      *example);
 static void            cursor_example_update_sensitivity      (CursorExample      *example);
@@ -96,8 +96,7 @@ struct _CursorExamplePrivate {
        /* Screen widgets */
        GtkWidget *browse_up_button;
        GtkWidget *browse_down_button;
-       GtkWidget *total_label;
-       GtkWidget *position_label;
+       GtkWidget *progressbar;
        GtkWidget *alphabet_label;
        GtkWidget *slots[N_SLOTS];
        CursorNavigator *navigator;
@@ -133,8 +132,7 @@ cursor_example_class_init (CursorExampleClass *klass)
        gtk_widget_class_bind_template_child_private (widget_class, CursorExample, browse_up_button);
        gtk_widget_class_bind_template_child_private (widget_class, CursorExample, browse_down_button);
        gtk_widget_class_bind_template_child_private (widget_class, CursorExample, alphabet_label);
-       gtk_widget_class_bind_template_child_private (widget_class, CursorExample, total_label);
-       gtk_widget_class_bind_template_child_private (widget_class, CursorExample, position_label);
+       gtk_widget_class_bind_template_child_private (widget_class, CursorExample, progressbar);
 
        for (i = 0; i < N_SLOTS; i++) {
                gchar *name = g_strdup_printf ("contact_slot_%d", i + 1);
@@ -206,9 +204,9 @@ cursor_example_up_button_press (CursorExample *example,
 {
        d (g_print ("Browse up press\n"));
 
-       /* Move the cursor backwards by 'N_SLOTS + 1' and then refresh the page */
-       if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 0 - (N_SLOTS + 1), FALSE, 
NULL))
-               cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, N_SLOTS, TRUE, NULL);
+       /* Move the cursor backwards by 1 and then refresh the page */
+       if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 0 - 1))
+               cursor_example_load_page (example, NULL);
 
        cursor_example_ensure_timeout (example, TIMEOUT_UP_INITIAL);
 
@@ -234,9 +232,9 @@ cursor_example_down_button_press (CursorExample *example,
 {
        d (g_print ("Browse down press\n"));
 
-       /* Move the cursor backwards by 'N_SLOTS - 1' and then refresh the page */
-       if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 0 - (N_SLOTS - 1), FALSE, 
NULL))
-               cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, N_SLOTS, TRUE, NULL);
+       /* Move the cursor forward by 1 and then refresh the page */
+       if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 1))
+               cursor_example_load_page (example, NULL);
 
        cursor_example_ensure_timeout (example, TIMEOUT_DOWN_INITIAL);
 
@@ -290,17 +288,15 @@ cursor_example_navigator_changed (CursorExample      *example,
        }
 
        /* And load one page full of results starting with this index */
-       if (!cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT,
-                                        N_SLOTS, TRUE, &full_results))
+       if (!cursor_example_load_page (example, &full_results))
                return;
 
        /* If we hit the end of the results (less than a full page) then load the last page of results */
        if (!full_results) {
-
-               if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_RESET,
-                                               0 - (N_SLOTS + 1), FALSE, NULL)) {
-                       cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT,
-                                                   N_SLOTS, TRUE, NULL);
+               if (cursor_example_move_cursor (example,
+                                               E_BOOK_CURSOR_ORIGIN_END,
+                                               0 - (N_SLOTS + 1))) {
+                       cursor_example_load_page (example, NULL);
                }
        }
 }
@@ -325,15 +321,16 @@ cursor_example_sexp_changed (CursorExample      *example,
                g_clear_error (&error);
        }
 
-       /* And re-load one page full of results, load from the previous index */
-       cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_PREVIOUS, N_SLOTS, TRUE, &full_results);
+       /* And load one page full of results */
+       if (!cursor_example_load_page (example, &full_results))
+               return;
 
        /* If we hit the end of the results (less than a full page) then load the last page of results */
        if (!full_results)
-               if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_RESET,
-                                               0 - (N_SLOTS + 1), FALSE, NULL)) {
-                       cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT,
-                                                   N_SLOTS, TRUE, NULL);
+               if (cursor_example_move_cursor (example,
+                                               E_BOOK_CURSOR_ORIGIN_END,
+                                               0 - (N_SLOTS + 1))) {
+                       cursor_example_load_page (example, NULL);
        }
 }
 
@@ -346,10 +343,9 @@ cursor_example_refresh (EBookClientCursor  *cursor,
 {
        d (g_print ("Cursor refreshed\n"));
 
-       /* Repeat our last query, by requesting that we move from the previous origin */
-       cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_PREVIOUS, N_SLOTS, TRUE, NULL);
-
-       cursor_example_update_status (example);
+       /* Refresh the page */
+       if (cursor_example_load_page (example, NULL))
+               cursor_example_update_status (example);
 }
 
 static void
@@ -362,7 +358,8 @@ cursor_example_alphabet_changed (EBookClientCursor *cursor,
        cursor_example_load_alphabet (example);
 
        /* Get the first page of contacts in the addressbook */
-       cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_RESET, N_SLOTS, TRUE, NULL);
+       if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_BEGIN, 0))
+               cursor_example_load_page (example, NULL);
 }
 
 static void
@@ -394,83 +391,120 @@ cursor_example_load_alphabet (CursorExample *example)
        g_signal_handlers_unblock_by_func (priv->navigator, cursor_example_navigator_changed, example);
 }
 
-static void
-cursor_example_update_view (CursorExample     *example,
-                           GSList            *results)
+static gboolean
+cursor_example_move_cursor (CursorExample     *example,
+                           EBookCursorOrigin  origin,
+                           gint               count)
 {
        CursorExamplePrivate *priv = example->priv;
-       EContact             *contact;
-       gint                  i;
+       GError               *error = NULL;
+       gint                  n_results;
 
-       /* Fill the page with results for the current cursor position
-        */
-       for (i = 0; i < N_SLOTS; i++) {
-               contact = g_slist_nth_data (results, i);
+       n_results = e_book_client_cursor_step_sync (priv->cursor,
+                                                   E_BOOK_CURSOR_STEP_MOVE,
+                                                   origin,
+                                                   count,
+                                                   NULL, /* Result list */
+                                                   NULL, /* GCancellable */
+                                                   &error);
 
-               /* For the first contact, give some visual feedback about where we
-                * are in the list, which alphabet character we're browsing right now.
-                */
-               if (i == 0 && contact)
-                       cursor_example_update_current_index (example, contact);
+       if (n_results < 0) {
+
+               if (g_error_matches (error,
+                                    E_CLIENT_ERROR,
+                                    E_CLIENT_ERROR_OUT_OF_SYNC)) {
+
+                       /* The addressbook has very recently been modified,
+                        * very soon we will receive a "refresh" signal and
+                        * automatically reload the current page position.
+                        */
+                       d (g_print ("Cursor was temporarily out of sync while moving\n"));
+
+               } else if (g_error_matches (error,
+                                           E_CLIENT_ERROR,
+                                           E_CLIENT_ERROR_END_OF_LIST)) {
+
+                       d (g_print ("End of list was reached\n"));
+
+               } else
+                       g_warning ("Failed to move the cursor: %s", error->message);
+
+
+
+               g_clear_error (&error);
 
-               cursor_slot_set_from_contact (priv->slots[i], contact);
        }
+
+       return n_results >= 0;
 }
 
-/* Returns whether a full page was loaded or if we reached 
- * the end of the results
+/* Loads a page at the current cursor position, returns
+ * FALSE if there was an error.
  */
 static gboolean
-cursor_example_move_cursor (CursorExample     *example,
-                           EBookCursorOrigin  origin,
-                           gint               count,
-                           gboolean           load_page,
-                           gboolean          *full_results)
+cursor_example_load_page (CursorExample     *example,
+                         gboolean          *full_results)
 {
        CursorExamplePrivate *priv = example->priv;
        GError               *error = NULL;
-       GSList               *results = NULL, **results_arg = NULL;
+       GSList               *results = NULL;
        gint                  n_results;
 
-       /* We don't ask EDS for results if we're not going to load the view */
-       g_assert (load_page == TRUE || full_results == NULL);
-
-       /* Only fetch results if we will actually display them */
-       if (load_page)
-               results_arg = &results;
-
-       n_results = e_book_client_cursor_move_by_sync (priv->cursor,
-                                                      origin,
-                                                      count,
-                                                      results_arg,
-                                                      NULL, &error);
+       /* Fetch N_SLOTS contacts after the current cursor position,
+        * without modifying the current cursor position
+        */
+       n_results = e_book_client_cursor_step_sync (priv->cursor,
+                                                   E_BOOK_CURSOR_STEP_FETCH,
+                                                   E_BOOK_CURSOR_ORIGIN_CURRENT,
+                                                   N_SLOTS,
+                                                   &results,
+                                                   NULL, /* GCancellable */
+                                                   &error);
 
        if (n_results < 0) {
                if (g_error_matches (error,
                                     E_CLIENT_ERROR,
                                     E_CLIENT_ERROR_OUT_OF_SYNC)) {
 
-                       /* Just ignore this error.
-                        *
-                        * The addressbook has very recently been modified,
+                       /* The addressbook has very recently been modified,
                         * very soon we will receive a "refresh" signal and
                         * automatically reload the current page position.
                         */
-                       d (g_print ("Cursor was temporarily out of sync while moving\n"));
+                       d (g_print ("Cursor was temporarily out of sync while loading page\n"));
+
+               } else if (g_error_matches (error,
+                                           E_CLIENT_ERROR,
+                                           E_CLIENT_ERROR_END_OF_LIST)) {
+
+                       d (g_print ("End of list was reached\n"));
 
                } else
                        g_warning ("Failed to move the cursor: %s", error->message);
 
                g_clear_error (&error);
 
-       } else if (load_page) {
-
+       } else {
                /* Display the results */
-               cursor_example_update_view (example, results);
+               EContact             *contact;
+               gint                  i;
+
+               /* Fill the page with results for the current cursor position
+                */
+               for (i = 0; i < N_SLOTS; i++) {
+                       contact = g_slist_nth_data (results, i);
+
+                       /* For the first contact, give some visual feedback about where we
+                        * are in the list, which alphabet character we're browsing right now.
+                        */
+                       if (i == 0 && contact)
+                               cursor_example_update_current_index (example, contact);
+
+                       cursor_slot_set_from_contact (priv->slots[i], contact);
+               }
        }
 
        if (full_results)
-               *full_results = (n_results == ABS (count));
+               *full_results = (n_results == N_SLOTS);
 
        g_slist_free_full (results, (GDestroyNotify)g_object_unref);
 
@@ -486,19 +520,19 @@ cursor_example_update_status (CursorExample *example)
        gchar                *txt;
        gboolean              up_sensitive;
        gboolean              down_sensitive;
+       gdouble               fraction;
 
        total = e_book_client_cursor_get_total (priv->cursor);
        position = e_book_client_cursor_get_position (priv->cursor);
 
-       /* Update total indicator label */
-       txt = g_strdup_printf ("%d", total);
-       gtk_label_set_text (GTK_LABEL (priv->total_label), txt);
+       /* Set the label showing the cursor position and total contacts */
+       txt = g_strdup_printf ("Position %d / Total %d", position, total);
+       gtk_progress_bar_set_text (GTK_PROGRESS_BAR (priv->progressbar), txt);
        g_free (txt);
 
-       /* Update position indicator label */
-       txt = g_strdup_printf ("%d", position);
-       gtk_label_set_text (GTK_LABEL (priv->position_label), txt);
-       g_free (txt);
+       /* Give visual feedback on how far we are into the contact list */
+       fraction = position * 1.0F / (total - N_SLOTS);
+       gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (priv->progressbar), fraction);
 
        /* Update sensitivity of buttons */
        if (total <= N_SLOTS) {
@@ -508,15 +542,15 @@ cursor_example_update_status (CursorExample *example)
                up_sensitive = FALSE;
                down_sensitive = FALSE;
        } else {
-               /* The cursor is always pointing to the last contact
-                * visible in the view, so if the cursor is further
-                * than N_SLOTS we can rewind.
+               /* The cursor is always pointing directly before
+                * the first contact visible in the view, so if the
+                * cursor is passed the first contact we can rewind.
                 */
-               up_sensitive = (position > N_SLOTS);
+               up_sensitive = position > 0;
 
-               /* So long as we have not reached the last contact, we can move
-                * the cursor down through the list */
-               down_sensitive = (position < total);
+               /* If more than N_SLOTS contacts remain, then
+                * we can still scroll down */
+               down_sensitive = position < total - N_SLOTS;
        }
 
        gtk_widget_set_sensitive (priv->browse_up_button, up_sensitive);
@@ -558,53 +592,43 @@ static gboolean
 cursor_example_timeout (CursorExample *example)
 {
        CursorExamplePrivate *priv = example->priv;
-       gboolean reschedule = FALSE;
+       gboolean can_move;
 
        switch (priv->activity) {
        case TIMEOUT_NONE:
                break;
 
        case TIMEOUT_UP_INITIAL:
-               cursor_example_ensure_timeout (example, TIMEOUT_UP_TICK);
-               break;
-       case TIMEOUT_DOWN_INITIAL:
-               cursor_example_ensure_timeout (example, TIMEOUT_DOWN_TICK);
-               break;
-
        case TIMEOUT_UP_TICK:
 
-               /* Move the cursor backwards by 'N_SLOTS + 1' and then refresh the page */
-               if (gtk_widget_get_sensitive (priv->browse_up_button) &&
-                   cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 0 - (N_SLOTS + 1), 
FALSE, NULL)) {
-
-                       if (gtk_widget_get_sensitive (priv->browse_up_button) &&
-                           cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, N_SLOTS, TRUE, 
NULL))
-                               reschedule = TRUE;
-               }
-
-               if (!reschedule)
+               /* Move the cursor backwards by 1 and then refresh the page */
+               if (cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 0 - 1)) {
+                       cursor_example_load_page (example, NULL);
+                       cursor_example_ensure_timeout (example, TIMEOUT_UP_TICK);
+               } else
                        cursor_example_cancel_timeout (example);
 
                break;
 
+       case TIMEOUT_DOWN_INITIAL:
        case TIMEOUT_DOWN_TICK:
 
-               /* Move the cursor backwards by 'N_SLOTS - 1' and then refresh the page */
-               if (gtk_widget_get_sensitive (priv->browse_down_button) &&
-                   cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 0 - (N_SLOTS - 1), 
FALSE, NULL)) {
+               /* Avoid scrolling past the end of the list - N_SLOTS */
+               can_move = (e_book_client_cursor_get_position (priv->cursor) < 
+                           e_book_client_cursor_get_total (priv->cursor) - N_SLOTS);
 
-                       if (gtk_widget_get_sensitive (priv->browse_down_button) &&
-                           cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, N_SLOTS, TRUE, 
NULL))
-                               reschedule = TRUE;
-               }
-
-               if (!reschedule)
+               /* Move the cursor forwards by 1 and then refresh the page */
+               if (can_move &&
+                   cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_CURRENT, 1)) {
+                       cursor_example_load_page (example, NULL);
+                       cursor_example_ensure_timeout (example, TIMEOUT_DOWN_TICK);
+               } else
                        cursor_example_cancel_timeout (example);
 
                break;
        }
 
-       return reschedule;
+       return FALSE;
 }
 
 static void
@@ -657,7 +681,8 @@ cursor_example_new (const gchar *vcard_path)
 
   cursor_example_load_alphabet (example);
 
-  cursor_example_move_cursor (example, E_BOOK_CURSOR_ORIGIN_RESET, N_SLOTS, TRUE, NULL);
+  /* Load the first page of results */
+  cursor_example_load_page (example, NULL);
   cursor_example_update_status (example);
 
   g_signal_connect (priv->cursor, "refresh",
diff --git a/tests/cursor-example/cursor-example.ui b/tests/cursor-example/cursor-example.ui
index 5120f91..72cab21 100644
--- a/tests/cursor-example/cursor-example.ui
+++ b/tests/cursor-example/cursor-example.ui
@@ -1,4 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated with glade 3.15.2 on Fri Oct 18 22:00:50 2013 -->
 <interface>
   <!-- interface-requires gtk+ 3.10 -->
   <!-- interface-requires cursor 0.0 -->
@@ -580,66 +581,10 @@
             <property name="label_xalign">0</property>
             <property name="shadow_type">in</property>
             <child>
-              <object class="GtkBox" id="box7">
+              <object class="GtkProgressBar" id="progressbar">
                 <property name="visible">True</property>
                 <property name="can_focus">False</property>
-                <property name="spacing">6</property>
-                <child>
-                  <object class="GtkLabel" id="label5">
-                    <property name="visible">True</property>
-                    <property name="can_focus">False</property>
-                    <property name="halign">end</property>
-                    <property name="label" translatable="yes">Total:</property>
-                  </object>
-                  <packing>
-                    <property name="expand">False</property>
-                    <property name="fill">True</property>
-                    <property name="position">1</property>
-                  </packing>
-                </child>
-                <child>
-                  <object class="GtkLabel" id="total_label">
-                    <property name="visible">True</property>
-                    <property name="can_focus">False</property>
-                    <property name="halign">start</property>
-                    <property name="xalign">0</property>
-                    <property name="label" translatable="yes">0</property>
-                    <property name="width_chars">4</property>
-                  </object>
-                  <packing>
-                    <property name="expand">False</property>
-                    <property name="fill">True</property>
-                    <property name="position">2</property>
-                  </packing>
-                </child>
-                <child>
-                  <object class="GtkLabel" id="label6">
-                    <property name="visible">True</property>
-                    <property name="can_focus">False</property>
-                    <property name="halign">end</property>
-                    <property name="label" translatable="yes">Position:</property>
-                  </object>
-                  <packing>
-                    <property name="expand">False</property>
-                    <property name="fill">True</property>
-                    <property name="position">3</property>
-                  </packing>
-                </child>
-                <child>
-                  <object class="GtkLabel" id="position_label">
-                    <property name="visible">True</property>
-                    <property name="can_focus">False</property>
-                    <property name="halign">start</property>
-                    <property name="xalign">0</property>
-                    <property name="label" translatable="yes">0</property>
-                    <property name="width_chars">4</property>
-                  </object>
-                  <packing>
-                    <property name="expand">False</property>
-                    <property name="fill">True</property>
-                    <property name="position">4</property>
-                  </packing>
-                </child>
+                <property name="show_text">True</property>
               </object>
             </child>
             <child type="label_item">


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