mirror of
https://github.com/brl/mutter.git
synced 2024-11-27 10:30:47 -05:00
a8b013b006
This API aims to provide a way for users to capture input devices under certain conditions, for example when a pointer crosses a specified barrier. So far only part of the API is implemented, specifially the session management as well as zone advertisement, where a zone refers to a region in the compositor which edges will eventually be made available for barrier placement. So far the remote access handle is created while the session is enable, despite the input capturing isn't actually active yet. This will change in the future once it can actually become active. v2: Remove absolute/relative pointer, keep only pointer (ofourdan) Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2628>
134 lines
4.3 KiB
C
134 lines
4.3 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
* Copyright (C) 2017 Red Hat, Inc.
|
|
*
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef META_TEST_UTILS_H
|
|
#define META_TEST_UTILS_H
|
|
|
|
#include <glib.h>
|
|
#include <X11/Xlib.h>
|
|
#include <X11/extensions/sync.h>
|
|
|
|
#include "backends/meta-backend-types.h"
|
|
#include "backends/meta-virtual-monitor.h"
|
|
#include "meta/window.h"
|
|
|
|
#define META_TEST_CLIENT_ERROR meta_test_client_error_quark ()
|
|
|
|
#define META_TEST_LOG_CALL(description, call) \
|
|
G_STMT_START { \
|
|
g_debug ("%s: %s: %s", G_STRFUNC, G_STRLOC, description); \
|
|
call; \
|
|
} G_STMT_END
|
|
|
|
typedef enum _MetaClientError
|
|
{
|
|
META_TEST_CLIENT_ERROR_BAD_COMMAND,
|
|
META_TEST_CLIENT_ERROR_RUNTIME_ERROR,
|
|
META_TEST_CLIENT_ERROR_ASSERTION_FAILED
|
|
} MetaClientError;
|
|
|
|
META_EXPORT
|
|
GQuark meta_test_client_error_quark (void);
|
|
|
|
typedef struct _MetaAsyncWaiter MetaAsyncWaiter;
|
|
typedef struct _MetaTestClient MetaTestClient;
|
|
|
|
META_EXPORT
|
|
gboolean meta_async_waiter_process_x11_event (MetaAsyncWaiter *waiter,
|
|
MetaX11Display *x11_display,
|
|
XSyncAlarmNotifyEvent *event);
|
|
|
|
META_EXPORT
|
|
void meta_async_waiter_set_and_wait (MetaAsyncWaiter *waiter);
|
|
|
|
META_EXPORT
|
|
MetaAsyncWaiter * meta_async_waiter_new (MetaX11Display *x11_display);
|
|
|
|
META_EXPORT
|
|
void meta_async_waiter_destroy (MetaAsyncWaiter *waiter);
|
|
|
|
META_EXPORT
|
|
char * meta_test_client_get_id (MetaTestClient *client);
|
|
|
|
META_EXPORT
|
|
gboolean meta_test_client_wait (MetaTestClient *client,
|
|
GError **error);
|
|
|
|
META_EXPORT
|
|
gboolean meta_test_client_dov (MetaTestClient *client,
|
|
GError **error,
|
|
va_list vap);
|
|
|
|
META_EXPORT
|
|
void meta_test_client_run (MetaTestClient *client,
|
|
const char *script);
|
|
|
|
META_EXPORT
|
|
gboolean meta_test_client_do (MetaTestClient *client,
|
|
GError **error,
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
META_EXPORT
|
|
MetaWindow * meta_find_window_from_title (MetaContext *context,
|
|
const char *title);
|
|
|
|
META_EXPORT
|
|
MetaWindow * meta_test_client_find_window (MetaTestClient *client,
|
|
const char *window_id,
|
|
GError **error);
|
|
|
|
META_EXPORT
|
|
void meta_test_client_wait_for_window_shown (MetaTestClient *client,
|
|
MetaWindow *window);
|
|
|
|
META_EXPORT
|
|
gboolean meta_test_client_quit (MetaTestClient *client,
|
|
GError **error);
|
|
|
|
META_EXPORT
|
|
MetaTestClient * meta_test_client_new (MetaContext *context,
|
|
const char *id,
|
|
MetaWindowClientType type,
|
|
GError **error);
|
|
|
|
META_EXPORT
|
|
void meta_test_client_destroy (MetaTestClient *client);
|
|
|
|
META_EXPORT
|
|
const char * meta_test_get_plugin_name (void);
|
|
|
|
META_EXPORT
|
|
void meta_set_custom_monitor_config_full (MetaBackend *backend,
|
|
const char *filename,
|
|
MetaMonitorsConfigFlag configs_flags);
|
|
|
|
META_EXPORT
|
|
void meta_wait_for_paint (MetaContext *context);
|
|
|
|
META_EXPORT
|
|
MetaVirtualMonitor * meta_create_test_monitor (MetaContext *context,
|
|
int width,
|
|
int height,
|
|
float refresh_rate);
|
|
|
|
META_EXPORT
|
|
void meta_flush_input (MetaContext *context);
|
|
|
|
#endif /* TEST_UTILS_H */
|