mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-gtk
synced 2025-12-26 14:18:38 +00:00
emacs mode got removed with: git ls-tree HEAD -r --name-only | xargs sed -i '/Mode: C/d' Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Acked-by: Frediano Ziglio <fziglio@redhat.com>
61 lines
2.5 KiB
C
61 lines
2.5 KiB
C
/*
|
|
Copyright (C) 2012 Red Hat, Inc.
|
|
|
|
Red Hat Authors:
|
|
Hans de Goede <hdegoede@redhat.com>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "spice-client.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define SPICE_TYPE_DESKTOP_INTEGRATION (spice_desktop_integration_get_type ())
|
|
#define SPICE_DESKTOP_INTEGRATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SPICE_TYPE_DESKTOP_INTEGRATION, SpiceDesktopIntegration))
|
|
#define SPICE_DESKTOP_INTEGRATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SPICE_TYPE_DESKTOP_INTEGRATION, SpiceDesktopIntegrationClass))
|
|
#define SPICE_IS_DESKTOP_INTEGRATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SPICE_TYPE_DESKTOP_INTEGRATION))
|
|
#define SPICE_IS_DESKTOP_INTEGRATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SPICE_TYPE_DESKTOP_INTEGRATION))
|
|
#define SPICE_DESKTOP_INTEGRATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), SPICE_TYPE_DESKTOP_INTEGRATION, SpiceDesktopIntegrationClass))
|
|
|
|
typedef struct _SpiceDesktopIntegration SpiceDesktopIntegration;
|
|
typedef struct _SpiceDesktopIntegrationClass SpiceDesktopIntegrationClass;
|
|
typedef struct _SpiceDesktopIntegrationPrivate SpiceDesktopIntegrationPrivate;
|
|
|
|
/*
|
|
* SpiceDesktopIntegration offers helper-functions to do desktop environment
|
|
* and/or platform specific tasks like disabling automount, disabling the
|
|
* screen-saver, etc. SpiceDesktopIntegration is for internal spice-gtk usage
|
|
* only!
|
|
*/
|
|
struct _SpiceDesktopIntegration
|
|
{
|
|
GObject parent;
|
|
|
|
SpiceDesktopIntegrationPrivate *priv;
|
|
};
|
|
|
|
struct _SpiceDesktopIntegrationClass
|
|
{
|
|
GObjectClass parent_class;
|
|
};
|
|
|
|
GType spice_desktop_integration_get_type(void);
|
|
SpiceDesktopIntegration *spice_desktop_integration_get(SpiceSession *session);
|
|
void spice_desktop_integration_inhibit_automount(SpiceDesktopIntegration *self);
|
|
void spice_desktop_integration_uninhibit_automount(SpiceDesktopIntegration *self);
|
|
|
|
G_END_DECLS
|