diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
commit | e4283f6d48b98e764b988b43bbc86b9d52e6ec94 (patch) | |
tree | c8f7f7a6c2f5faa2942d27cefc6fd46cca492656 /src/shell-util.h | |
parent | Initial commit. (diff) | |
download | gnome-shell-54cc9b72c7f1eca5c7acbdf783df9cfc8e4c2680.tar.xz gnome-shell-54cc9b72c7f1eca5c7acbdf783df9cfc8e4c2680.zip |
Adding upstream version 43.9.upstream/43.9upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/shell-util.h | 93 |
1 files changed, 93 insertions, 0 deletions
diff --git a/src/shell-util.h b/src/shell-util.h new file mode 100644 index 0000000..7e1f7d8 --- /dev/null +++ b/src/shell-util.h @@ -0,0 +1,93 @@ +/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ + +#ifndef __SHELL_UTIL_H__ +#define __SHELL_UTIL_H__ + +#include <gio/gio.h> +#include <clutter/clutter.h> +#include <gdk-pixbuf/gdk-pixbuf.h> +#include <meta/meta-cursor-tracker.h> +#include <meta/meta-window-actor.h> + +G_BEGIN_DECLS + +void shell_util_set_hidden_from_pick (ClutterActor *actor, + gboolean hidden); + +int shell_util_get_week_start (void); + +const char *shell_util_translate_time_string (const char *str); + +char *shell_util_regex_escape (const char *str); + +gboolean shell_write_string_to_stream (GOutputStream *stream, + const char *str, + GError **error); + +char *shell_get_file_contents_utf8_sync (const char *path, + GError **error); + +void shell_util_touch_file_async (GFile *file, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean shell_util_touch_file_finish (GFile *file, + GAsyncResult *res, + GError **error); + +gboolean shell_util_wifexited (int status, + int *exit); + +GdkPixbuf *shell_util_create_pixbuf_from_data (const guchar *data, + gsize len, + GdkColorspace colorspace, + gboolean has_alpha, + int bits_per_sample, + int width, + int height, + int rowstride); + +cairo_surface_t * shell_util_composite_capture_images (ClutterCapture *captures, + int n_captures, + int x, + int y, + int target_width, + int target_height, + float target_scale); + +void shell_util_check_cloexec_fds (void); + +void shell_util_start_systemd_unit (const char *unit, + const char *mode, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean shell_util_start_systemd_unit_finish (GAsyncResult *res, + GError **error); + +void shell_util_stop_systemd_unit (const char *unit, + const char *mode, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean shell_util_stop_systemd_unit_finish (GAsyncResult *res, + GError **error); + +void shell_util_systemd_unit_exists (const gchar *unit, + GCancellable *cancellable, + GAsyncReadyCallback callback, + gpointer user_data); +gboolean shell_util_systemd_unit_exists_finish (GAsyncResult *res, + GError **error); + +void shell_util_sd_notify (void); + +gboolean shell_util_has_x11_display_extension (MetaDisplay *display, + const char *extension); + +char *shell_util_get_translated_folder_name (const char *name); + +gint shell_util_get_uid (void); + +G_END_DECLS + +#endif /* __SHELL_UTIL_H__ */ |