2014-03-31 23:00:07 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Red Hat
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
* 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* Written by:
|
|
|
|
* Jasper St. Pierre <jstpierre@mecheye.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_BACKEND_H
|
|
|
|
#define META_BACKEND_H
|
|
|
|
|
2014-03-31 23:19:13 -04:00
|
|
|
#include <glib-object.h>
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "clutter/clutter.h"
|
2017-01-02 09:11:32 -05:00
|
|
|
#include "meta/meta-dnd.h"
|
2021-04-19 09:22:57 -04:00
|
|
|
#include "meta/meta-idle-monitor.h"
|
2021-12-02 16:02:02 -05:00
|
|
|
#include "meta/meta-monitor-manager.h"
|
2018-07-20 10:37:37 -04:00
|
|
|
#include "meta/meta-remote-access-controller.h"
|
2014-08-13 19:46:32 -04:00
|
|
|
|
2022-03-14 17:45:34 -04:00
|
|
|
typedef enum _MetaBackendCapabilities
|
|
|
|
{
|
|
|
|
META_BACKEND_CAPABILITY_NONE = 0,
|
|
|
|
META_BACKEND_CAPABILITY_BARRIERS = 1 << 0,
|
|
|
|
} MetaBackendCapabilities;
|
|
|
|
|
2019-01-24 06:40:27 -05:00
|
|
|
#define META_TYPE_BACKEND (meta_backend_get_type ())
|
|
|
|
META_EXPORT
|
|
|
|
G_DECLARE_DERIVABLE_TYPE (MetaBackend, meta_backend, META, BACKEND, GObject)
|
2019-01-20 11:41:53 -05:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2014-08-04 10:47:35 -04:00
|
|
|
void meta_backend_set_keymap (MetaBackend *backend,
|
|
|
|
const char *layouts,
|
|
|
|
const char *variants,
|
|
|
|
const char *options);
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2014-08-04 10:47:35 -04:00
|
|
|
void meta_backend_lock_layout_group (MetaBackend *backend,
|
|
|
|
guint idx);
|
|
|
|
|
2021-03-03 08:31:56 -05:00
|
|
|
META_EXPORT
|
|
|
|
MetaContext * meta_backend_get_context (MetaBackend *backend);
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2014-08-13 19:46:32 -04:00
|
|
|
ClutterActor *meta_backend_get_stage (MetaBackend *backend);
|
2017-04-21 04:40:51 -04:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2017-01-02 09:11:32 -05:00
|
|
|
MetaDnd *meta_backend_get_dnd (MetaBackend *backend);
|
2014-08-13 19:46:32 -04:00
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2017-04-21 04:40:51 -04:00
|
|
|
MetaSettings *meta_backend_get_settings (MetaBackend *backend);
|
|
|
|
|
2021-04-19 09:22:57 -04:00
|
|
|
META_EXPORT
|
|
|
|
MetaIdleMonitor * meta_backend_get_core_idle_monitor (MetaBackend *backend);
|
|
|
|
|
2021-12-02 16:02:02 -05:00
|
|
|
META_EXPORT
|
|
|
|
MetaMonitorManager * meta_backend_get_monitor_manager (MetaBackend *backend);
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2018-07-20 10:37:37 -04:00
|
|
|
MetaRemoteAccessController * meta_backend_get_remote_access_controller (MetaBackend *backend);
|
|
|
|
|
2019-10-01 05:53:57 -04:00
|
|
|
META_EXPORT
|
|
|
|
gboolean meta_backend_is_rendering_hardware_accelerated (MetaBackend *backend);
|
|
|
|
|
2021-12-07 10:12:07 -05:00
|
|
|
META_EXPORT
|
|
|
|
gboolean meta_backend_is_headless (MetaBackend *backend);
|
|
|
|
|
2022-03-14 17:45:34 -04:00
|
|
|
META_EXPORT
|
|
|
|
MetaBackendCapabilities meta_backend_get_capabilities (MetaBackend *backend);
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT
|
2014-03-31 23:00:07 -04:00
|
|
|
void meta_clutter_init (void);
|
|
|
|
|
|
|
|
#endif /* META_BACKEND_H */
|