2016-12-05 05:31:40 -05:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 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_MAIN_PRIVATE_H
|
|
|
|
#define META_MAIN_PRIVATE_H
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
#include "core/util-private.h"
|
|
|
|
|
2016-12-05 05:31:40 -05:00
|
|
|
typedef enum _MetaCompositorType
|
|
|
|
{
|
|
|
|
#ifdef HAVE_WAYLAND
|
|
|
|
META_COMPOSITOR_TYPE_WAYLAND,
|
|
|
|
#endif
|
|
|
|
META_COMPOSITOR_TYPE_X11,
|
|
|
|
} MetaCompositorType;
|
|
|
|
|
2019-05-24 14:59:28 -04:00
|
|
|
typedef enum _MetaDisplayPolicy
|
|
|
|
{
|
|
|
|
META_DISPLAY_POLICY_MANDATORY,
|
|
|
|
META_DISPLAY_POLICY_ON_DEMAND,
|
|
|
|
META_DISPLAY_POLICY_DISABLED,
|
|
|
|
} MetaDisplayPolicy;
|
|
|
|
|
2019-10-15 06:56:26 -04:00
|
|
|
#define META_POINT_IN_RECT(xcoord, ycoord, rect) \
|
|
|
|
((xcoord) >= (rect).x && \
|
|
|
|
(xcoord) < ((rect).x + (rect).width) && \
|
|
|
|
(ycoord) >= (rect).y && \
|
|
|
|
(ycoord) < ((rect).y + (rect).height))
|
|
|
|
|
|
|
|
#define META_GRAB_OP_GET_BASE_TYPE(op) (op & 0x00FF)
|
|
|
|
|
2019-01-22 21:25:35 -05:00
|
|
|
META_EXPORT_TEST
|
2016-12-05 05:31:40 -05:00
|
|
|
void meta_override_compositor_configuration (MetaCompositorType compositor_type,
|
2021-01-19 11:46:54 -05:00
|
|
|
GType backend_gtype,
|
|
|
|
const char *first_property_name,
|
|
|
|
...);
|
2016-12-05 05:31:40 -05:00
|
|
|
|
2021-01-21 12:58:28 -05:00
|
|
|
META_EXPORT_TEST
|
2019-05-24 14:59:28 -04:00
|
|
|
MetaDisplayPolicy meta_get_x11_display_policy (void);
|
2017-08-27 14:44:58 -04:00
|
|
|
|
2020-11-08 16:02:39 -05:00
|
|
|
META_EXPORT_TEST
|
|
|
|
void meta_override_x11_display_policy (MetaDisplayPolicy x11_display_policy);
|
|
|
|
|
2016-12-05 05:31:40 -05:00
|
|
|
#endif /* META_MAIN_PRIVATE_H */
|