[Xfce4-commits] [apps/ristretto] 01/01: Rename vars and funcs: show -> hide

noreply at xfce.org noreply at xfce.org
Tue Sep 10 19:16:46 CEST 2019


This is an automated email from the git hooks/post-receive script.

f   2   4   0   4       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/ristretto.

commit 7dd87a235ef52f96bd2bbd7f1b53494a1915ee1d
Author: Igor <f2404 at yandex.ru>
Date:   Tue Sep 10 13:16:08 2019 -0400

    Rename vars and funcs: show -> hide
---
 src/main_window.c | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/src/main_window.c b/src/main_window.c
index 43cedd9..fcf9616 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -79,7 +79,7 @@ struct _RsttoMainWindowPriv
     GDBusProxy            *filemanager_proxy;
 
     guint                  show_fs_toolbar_timeout_id;
-    guint                  show_fs_mouse_cursor_timeout_id;
+    guint                  hide_fs_mouse_cursor_timeout_id;
     gint                   window_save_geometry_timer_id;
 
     gboolean               fs_toolbar_sticky;
@@ -188,9 +188,9 @@ cb_rstto_main_window_show_fs_toolbar_timeout (RsttoMainWindow *window);
 static void
 cb_rstto_main_window_show_fs_toolbar_timeout_destroy (gpointer user_data);
 static gboolean
-cb_rstto_main_window_show_fs_mouse_cursor_timeout (RsttoMainWindow *window);
+cb_rstto_main_window_hide_fs_mouse_cursor_timeout (RsttoMainWindow *window);
 static void
-cb_rstto_main_window_show_fs_mouse_cursor_timeout_destroy (gpointer user_data);
+cb_rstto_main_window_hide_fs_mouse_cursor_timeout_destroy (gpointer user_data);
 static void
 cb_rstto_main_window_image_list_iter_changed (RsttoImageListIter *iter, RsttoMainWindow *window);
 static void
@@ -2449,10 +2449,10 @@ cb_rstto_main_window_state_event (GtkWidget *widget, GdkEventWindowState *event,
 
             if (timeout > 0)
             {
-                window->priv->show_fs_mouse_cursor_timeout_id =
+                window->priv->hide_fs_mouse_cursor_timeout_id =
                         g_timeout_add_full (G_PRIORITY_DEFAULT, 1000 * timeout,
-                                            (GSourceFunc) cb_rstto_main_window_show_fs_mouse_cursor_timeout, window,
-                                            cb_rstto_main_window_show_fs_mouse_cursor_timeout_destroy);
+                                            (GSourceFunc) cb_rstto_main_window_hide_fs_mouse_cursor_timeout, window,
+                                            cb_rstto_main_window_hide_fs_mouse_cursor_timeout_destroy);
             }
 
             if (rstto_settings_get_boolean_property (window->priv->settings_manager, "hide-thumbnails-fullscreen"))
@@ -2524,9 +2524,9 @@ G_GNUC_END_IGNORE_DEPRECATIONS
                 REMOVE_SOURCE (window->priv->show_fs_toolbar_timeout_id);
             }
 
-            if (window->priv->show_fs_mouse_cursor_timeout_id > 0)
+            if (window->priv->hide_fs_mouse_cursor_timeout_id > 0)
             {
-                REMOVE_SOURCE (window->priv->show_fs_mouse_cursor_timeout_id);
+                REMOVE_SOURCE (window->priv->hide_fs_mouse_cursor_timeout_id);
             }
             else
             {
@@ -2581,9 +2581,9 @@ cb_rstto_main_window_motion_notify_event (RsttoMainWindow *window, GdkEventMotio
         }
 
         /* Show the mouse cursor, but set a timer to hide it if not moved again */
-        if (window->priv->show_fs_mouse_cursor_timeout_id > 0)
+        if (window->priv->hide_fs_mouse_cursor_timeout_id > 0)
         {
-            REMOVE_SOURCE (window->priv->show_fs_mouse_cursor_timeout_id);
+            REMOVE_SOURCE (window->priv->hide_fs_mouse_cursor_timeout_id);
         }
         else
         {
@@ -2592,10 +2592,10 @@ cb_rstto_main_window_motion_notify_event (RsttoMainWindow *window, GdkEventMotio
 
         if (timeout > 0)
         {
-            window->priv->show_fs_mouse_cursor_timeout_id =
+            window->priv->hide_fs_mouse_cursor_timeout_id =
                     g_timeout_add_full (G_PRIORITY_DEFAULT, 1000 * timeout,
-                                        (GSourceFunc) cb_rstto_main_window_show_fs_mouse_cursor_timeout, window,
-                                        cb_rstto_main_window_show_fs_mouse_cursor_timeout_destroy);
+                                        (GSourceFunc) cb_rstto_main_window_hide_fs_mouse_cursor_timeout, window,
+                                        cb_rstto_main_window_hide_fs_mouse_cursor_timeout_destroy);
         }
     }
     return TRUE;
@@ -2667,7 +2667,7 @@ cb_rstto_main_window_show_fs_toolbar_timeout_destroy (gpointer user_data)
 }
 
 static gboolean
-cb_rstto_main_window_show_fs_mouse_cursor_timeout (RsttoMainWindow *window)
+cb_rstto_main_window_hide_fs_mouse_cursor_timeout (RsttoMainWindow *window)
 {
     GdkCursor *cursor = gdk_cursor_new_from_name (gtk_widget_get_display (GTK_WIDGET (window)), "none");
     gdk_window_set_cursor (gtk_widget_get_window (GTK_WIDGET (window)), cursor);
@@ -2675,9 +2675,9 @@ cb_rstto_main_window_show_fs_mouse_cursor_timeout (RsttoMainWindow *window)
 }
 
 static void
-cb_rstto_main_window_show_fs_mouse_cursor_timeout_destroy (gpointer user_data)
+cb_rstto_main_window_hide_fs_mouse_cursor_timeout_destroy (gpointer user_data)
 {
-    RSTTO_MAIN_WINDOW (user_data)->priv->show_fs_mouse_cursor_timeout_id = 0;
+    RSTTO_MAIN_WINDOW (user_data)->priv->hide_fs_mouse_cursor_timeout_id = 0;
 }
 
 /**

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list