summaryrefslogtreecommitdiff
path: root/libwnck/wnck-handle-private.h
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2019-08-19 16:12:32 +0300
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2022-08-15 09:57:26 +0000
commiteb90a1c218e7ae90f8742f52ac3b6ed71c3afbc3 (patch)
tree522fbf1e5ab823d41b6d6e3b97958ee7988a739a /libwnck/wnck-handle-private.h
parent7e0e51399b9f290f12458ad5fe8962a1985390f6 (diff)
downloadlibwnck-eb90a1c218e7ae90f8742f52ac3b6ed71c3afbc3.tar.gz
handle: make it public
Diffstat (limited to 'libwnck/wnck-handle-private.h')
-rw-r--r--libwnck/wnck-handle-private.h28
1 files changed, 1 insertions, 27 deletions
diff --git a/libwnck/wnck-handle-private.h b/libwnck/wnck-handle-private.h
index 05ce22b..cca13e1 100644
--- a/libwnck/wnck-handle-private.h
+++ b/libwnck/wnck-handle-private.h
@@ -20,34 +20,17 @@
#include "class-group.h"
#include "util.h"
+#include "wnck-handle.h"
G_BEGIN_DECLS
-typedef struct _WnckHandle WnckHandle;
-
-WnckHandle *_wnck_handle_new (WnckClientType client_type);
-
WnckClientType _wnck_handle_get_client_type (WnckHandle *self);
-WnckScreen *_wnck_handle_get_default_screen (WnckHandle *self);
-
-WnckScreen *_wnck_handle_get_screen (WnckHandle *self,
- int index);
-
-WnckScreen *_wnck_handle_get_screen_for_root (WnckHandle *self,
- gulong root_window_id);
-
WnckScreen *_wnck_handle_get_existing_screen (WnckHandle *self,
int number);
-void _wnck_handle_set_default_icon_size (WnckHandle *self,
- gsize icon_size);
-
gsize _wnck_handle_get_default_icon_size (WnckHandle *self);
-void _wnck_handle_set_default_mini_icon_size (WnckHandle *self,
- gsize icon_size);
-
gsize _wnck_handle_get_default_mini_icon_size (WnckHandle *self);
void _wnck_handle_insert_class_group (WnckHandle *self,
@@ -57,9 +40,6 @@ void _wnck_handle_insert_class_group (WnckHandle *self,
void _wnck_handle_remove_class_group (WnckHandle *self,
const char *id);
-WnckClassGroup *_wnck_handle_get_class_group (WnckHandle *self,
- const char *id);
-
void _wnck_handle_insert_application (WnckHandle *self,
gpointer xwindow,
WnckApplication *app);
@@ -67,9 +47,6 @@ void _wnck_handle_insert_application (WnckHandle *self,
void _wnck_handle_remove_application (WnckHandle *self,
gpointer xwindow);
-WnckApplication *_wnck_handle_get_application (WnckHandle *self,
- gulong xwindow);
-
void _wnck_handle_insert_window (WnckHandle *self,
gpointer xwindow,
WnckWindow *window);
@@ -77,9 +54,6 @@ void _wnck_handle_insert_window (WnckHandle *self,
void _wnck_handle_remove_window (WnckHandle *self,
gpointer xwindow);
-WnckWindow *_wnck_handle_get_window (WnckHandle *self,
- gulong xwindow);
-
G_END_DECLS
#endif