aboutsummaryrefslogtreecommitdiff
path: root/libdbusmenu-glib/client.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-02-18 11:49:25 -0600
committerTed Gould <ted@gould.cx>2011-02-18 11:49:25 -0600
commit796c5d6a0a13c7429b32607625eb0cde2503c50f (patch)
tree6ed6f465a1d7892858b0b9ab03dbf628aa610c52 /libdbusmenu-glib/client.c
parentb36db6b1b5c8e92fe73bb31d34f8838da622c340 (diff)
downloadlibdbusmenu-796c5d6a0a13c7429b32607625eb0cde2503c50f.tar.gz
libdbusmenu-796c5d6a0a13c7429b32607625eb0cde2503c50f.tar.bz2
libdbusmenu-796c5d6a0a13c7429b32607625eb0cde2503c50f.zip
Adding a stub for getting the text direction
Diffstat (limited to 'libdbusmenu-glib/client.c')
-rw-r--r--libdbusmenu-glib/client.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c
index c643551..d74d627 100644
--- a/libdbusmenu-glib/client.c
+++ b/libdbusmenu-glib/client.c
@@ -1823,3 +1823,20 @@ dbusmenu_client_add_type_handler_full (DbusmenuClient * client, const gchar * ty
return TRUE;
}
+/**
+ dbusmenu_client_get_text_direction:
+ @client: #DbusmenuClient to check the text direction on
+
+ Gets the text direction that the server is exporting. If
+ the server is not exporting a direction then the value
+ #DBUSMENU_TEXT_DIRECTION_NONE will be returned.
+
+ Return value: Text direction being exported.
+*/
+DbusmenuTextDirection
+dbusmenu_client_get_text_direction (DbusmenuClient * client)
+{
+
+
+ return DBUSMENU_TEXT_DIRECTION_NONE;
+}