[Xfce4-commits] [apps/xfce4-screensaver] 330/425: Tidy up xfcekbd-util.{c, h}

noreply at xfce.org noreply at xfce.org
Mon Oct 15 01:52:57 CEST 2018


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

b   l   u   e   s   a   b   r   e       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/xfce4-screensaver.

commit ee3798570b69a8d69a20b1aa3109f5bb677601a3
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Sun Sep 30 23:04:53 2018 -0400

    Tidy up xfcekbd-util.{c,h}
---
 src/xfcekbd-config-private.h |  5 ---
 src/xfcekbd-util.c           | 79 --------------------------------------------
 src/xfcekbd-util.h           |  6 ----
 3 files changed, 90 deletions(-)

diff --git a/src/xfcekbd-config-private.h b/src/xfcekbd-config-private.h
index fe46cda..dc595ac 100644
--- a/src/xfcekbd-config-private.h
+++ b/src/xfcekbd-config-private.h
@@ -25,11 +25,6 @@
 
 #define XFCEKBD_CONFIG_SCHEMA "org.mate.peripherals-keyboard-xkb"
 
-extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_X[];
-extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_Y[];
-extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_WIDTH[];
-extern const gchar MATEKBD_PREVIEW_CONFIG_KEY_HEIGHT[];
-
 /**
  * General config functions (private)
  */
diff --git a/src/xfcekbd-util.c b/src/xfcekbd-util.c
index 4f20cbe..6037396 100644
--- a/src/xfcekbd-util.c
+++ b/src/xfcekbd-util.c
@@ -33,85 +33,6 @@
 
 #include <xfcekbd-config-private.h>
 
-static void
-xfcekbd_log_appender (const char file[], const char function[],
-		   int level, const char format[], va_list args)
-{
-	time_t now = time (NULL);
-	g_log (NULL, G_LOG_LEVEL_DEBUG, "[%08ld,%03d,%s:%s/] \t",
-	       (long) now, level, file, function);
-	g_logv (NULL, G_LOG_LEVEL_DEBUG, format, args);
-}
-
-void
-xfcekbd_install_glib_log_appender (void)
-{
-	xkl_set_log_appender (xfcekbd_log_appender);
-}
-
-#define MATEKBD_PREVIEW_CONFIG_SCHEMA  XFCEKBD_CONFIG_SCHEMA ".preview"
-
-const gchar MATEKBD_PREVIEW_CONFIG_KEY_X[] = "x";
-const gchar MATEKBD_PREVIEW_CONFIG_KEY_Y[] = "y";
-const gchar MATEKBD_PREVIEW_CONFIG_KEY_WIDTH[] = "width";
-const gchar MATEKBD_PREVIEW_CONFIG_KEY_HEIGHT[] = "height";
-
-/**
- * xfcekbd_preview_load_position:
- *
- * Returns: (transfer full): A rectangle to use
- */
-GdkRectangle *
-xfcekbd_preview_load_position (void)
-{
-	GdkRectangle *rv = NULL;
-	gint x, y, w, h;
-	GSettings* settings = g_settings_new (MATEKBD_PREVIEW_CONFIG_SCHEMA);
-
-	x = g_settings_get_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_X);
-	y = g_settings_get_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_Y);
-	w = g_settings_get_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_WIDTH);
-	h = g_settings_get_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_HEIGHT);
-
-	g_object_unref (settings);
-
-	rv = g_new (GdkRectangle, 1);
-	if (x == -1 || y == -1 || w == -1 || h == -1) {
-		/* default values should be treated as
-		 * "0.75 of the screen size" */
-		GdkScreen *scr = gdk_screen_get_default ();
-		gint w = WidthOfScreen (gdk_x11_screen_get_xscreen (scr));
-		gint h = HeightOfScreen (gdk_x11_screen_get_xscreen (scr));
-		rv->x = w >> 3;
-		rv->y = h >> 3;
-		rv->width = w - (w >> 2);
-		rv->height = h - (h >> 2);
-	} else {
-		rv->x = x;
-		rv->y = y;
-		rv->width = w;
-		rv->height = h;
-	}
-	return rv;
-}
-
-void
-xfcekbd_preview_save_position (GdkRectangle * rect)
-{
-	GSettings* settings = g_settings_new (MATEKBD_PREVIEW_CONFIG_SCHEMA);
-
-	g_settings_delay (settings);
-
-	g_settings_set_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_X, rect->x);
-	g_settings_set_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_Y, rect->y);
-	g_settings_set_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_WIDTH, rect->width);
-	g_settings_set_int (settings, MATEKBD_PREVIEW_CONFIG_KEY_HEIGHT, rect->height);
-
-	g_settings_apply (settings);
-
-	g_object_unref (settings);
-}
-
 /**
  * xfcekbd_strv_append:
  *
diff --git a/src/xfcekbd-util.h b/src/xfcekbd-util.h
index aff928e..cc72d08 100644
--- a/src/xfcekbd-util.h
+++ b/src/xfcekbd-util.h
@@ -23,12 +23,6 @@
 #include <glib.h>
 #include <gdk/gdk.h>
 
-extern void xfcekbd_install_glib_log_appender (void);
-
-extern GdkRectangle *xfcekbd_preview_load_position (void);
-
-extern void xfcekbd_preview_save_position (GdkRectangle * rect);
-
 /* Missing in glib */
 extern gchar **xfcekbd_strv_append (gchar ** arr, gchar * element);
 

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


More information about the Xfce4-commits mailing list