mirror of
https://github.com/brl/mutter.git
synced 2024-11-27 10:30:47 -05:00
f803c0ee0a
When we get an orientation event we don't care about keeping track of the configuration changes, but actually we can consider the new configuration just a variant of the previous one, adapted to floating device hardware events, so we only want to apply it if possible, but we don't want to keep a record of it for reverting capabilities. Doing that would in fact, break the ability of reverting back to an actual temporary or persistent configuration. For example when device orientation events happen while we're waiting for an user resolution change confirmation, we would save our new rotated configuration in the history, making then impossible to revert back to the original persistent one. So in such case, don't keep track of those configurations in the history, but only keep track of the last one as current, checking whether the new current is child or sibling of the previously one. Fixes: https://gitlab.gnome.org/GNOME/mutter/-/issues/1221 Related to: https://gitlab.gnome.org/GNOME/mutter/-/issues/646 Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1233>
219 lines
8.7 KiB
C
219 lines
8.7 KiB
C
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
/*
|
|
* Copyright (C) 2016 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.
|
|
*/
|
|
|
|
#ifndef META_MONITOR_CONFIG_MANAGER_H
|
|
#define META_MONITOR_CONFIG_MANAGER_H
|
|
|
|
#include "backends/meta-monitor.h"
|
|
#include "backends/meta-monitor-manager-private.h"
|
|
|
|
#define META_TYPE_MONITOR_CONFIG_MANAGER (meta_monitor_config_manager_get_type ())
|
|
G_DECLARE_FINAL_TYPE (MetaMonitorConfigManager, meta_monitor_config_manager,
|
|
META, MONITOR_CONFIG_MANAGER, GObject)
|
|
|
|
typedef struct _MetaMonitorConfig
|
|
{
|
|
MetaMonitorSpec *monitor_spec;
|
|
MetaMonitorModeSpec *mode_spec;
|
|
gboolean enable_underscanning;
|
|
} MetaMonitorConfig;
|
|
|
|
typedef struct _MetaLogicalMonitorConfig
|
|
{
|
|
MetaRectangle layout;
|
|
GList *monitor_configs;
|
|
MetaMonitorTransform transform;
|
|
float scale;
|
|
gboolean is_primary;
|
|
gboolean is_presentation;
|
|
} MetaLogicalMonitorConfig;
|
|
|
|
typedef struct _MetaMonitorsConfigKey
|
|
{
|
|
GList *monitor_specs;
|
|
} MetaMonitorsConfigKey;
|
|
|
|
typedef enum _MetaMonitorsConfigFlag
|
|
{
|
|
META_MONITORS_CONFIG_FLAG_NONE = 0,
|
|
META_MONITORS_CONFIG_FLAG_MIGRATED = (1 << 0),
|
|
META_MONITORS_CONFIG_FLAG_SYSTEM_CONFIG = (1 << 1),
|
|
} MetaMonitorsConfigFlag;
|
|
|
|
struct _MetaMonitorsConfig
|
|
{
|
|
GObject parent;
|
|
|
|
MetaMonitorsConfig *parent_config;
|
|
MetaMonitorsConfigKey *key;
|
|
GList *logical_monitor_configs;
|
|
|
|
GList *disabled_monitor_specs;
|
|
|
|
MetaMonitorsConfigFlag flags;
|
|
|
|
MetaLogicalMonitorLayoutMode layout_mode;
|
|
|
|
MetaMonitorSwitchConfigType switch_config;
|
|
};
|
|
|
|
#define META_TYPE_MONITORS_CONFIG (meta_monitors_config_get_type ())
|
|
G_DECLARE_FINAL_TYPE (MetaMonitorsConfig, meta_monitors_config,
|
|
META, MONITORS_CONFIG, GObject)
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorConfigManager * meta_monitor_config_manager_new (MetaMonitorManager *monitor_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorConfigStore * meta_monitor_config_manager_get_store (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_monitor_config_manager_assign (MetaMonitorManager *manager,
|
|
MetaMonitorsConfig *config,
|
|
GPtrArray **crtc_assignments,
|
|
GPtrArray **output_assignments,
|
|
GError **error);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_get_stored (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_create_linear (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_create_fallback (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_create_suggested (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_create_for_orientation (MetaMonitorConfigManager *config_manager,
|
|
MetaMonitorsConfig *base_config,
|
|
MetaMonitorTransform transform);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_create_for_builtin_orientation (MetaMonitorConfigManager *config_manager,
|
|
MetaMonitorsConfig *base_config);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_create_for_rotate_monitor (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_create_for_switch_config (MetaMonitorConfigManager *config_manager,
|
|
MetaMonitorSwitchConfigType config_type);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_monitor_config_manager_set_current (MetaMonitorConfigManager *config_manager,
|
|
MetaMonitorsConfig *config);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_get_current (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_pop_previous (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitor_config_manager_get_previous (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_monitor_config_manager_clear_history (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_monitor_config_manager_save_current (MetaMonitorConfigManager *config_manager);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitors_config_new_full (GList *logical_monitor_configs,
|
|
GList *disabled_monitors,
|
|
MetaLogicalMonitorLayoutMode layout_mode,
|
|
MetaMonitorsConfigFlag flags);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfig * meta_monitors_config_new (MetaMonitorManager *monitor_manager,
|
|
GList *logical_monitor_configs,
|
|
MetaLogicalMonitorLayoutMode layout_mode,
|
|
MetaMonitorsConfigFlag flags);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorSwitchConfigType meta_monitors_config_get_switch_config (MetaMonitorsConfig *config);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_monitors_config_set_switch_config (MetaMonitorsConfig *config,
|
|
MetaMonitorSwitchConfigType switch_config);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_monitors_config_set_parent_config (MetaMonitorsConfig *config,
|
|
MetaMonitorsConfig *parent_config);
|
|
|
|
META_EXPORT_TEST
|
|
unsigned int meta_monitors_config_key_hash (gconstpointer config_key);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_monitors_config_key_equal (gconstpointer config_key_a,
|
|
gconstpointer config_key_b);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_monitors_config_key_free (MetaMonitorsConfigKey *config_key);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_logical_monitor_config_free (MetaLogicalMonitorConfig *logical_monitor_config);
|
|
|
|
META_EXPORT_TEST
|
|
void meta_monitor_config_free (MetaMonitorConfig *monitor_config);
|
|
|
|
META_EXPORT_TEST
|
|
MetaMonitorsConfigKey * meta_create_monitors_config_key_for_current_state (MetaMonitorManager *monitor_manager);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_logical_monitor_configs_have_monitor (GList *logical_monitor_configs,
|
|
MetaMonitorSpec *monitor_spec);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_verify_monitor_mode_spec (MetaMonitorModeSpec *monitor_mode_spec,
|
|
GError **error);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_verify_monitor_spec (MetaMonitorSpec *monitor_spec,
|
|
GError **error);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_verify_monitor_config (MetaMonitorConfig *monitor_config,
|
|
GError **error);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_verify_logical_monitor_config (MetaLogicalMonitorConfig *logical_monitor_config,
|
|
MetaLogicalMonitorLayoutMode layout_mode,
|
|
MetaMonitorManager *monitor_manager,
|
|
GError **error);
|
|
|
|
META_EXPORT_TEST
|
|
gboolean meta_verify_monitors_config (MetaMonitorsConfig *config,
|
|
MetaMonitorManager *monitor_manager,
|
|
GError **error);
|
|
|
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (MetaMonitorConfig, meta_monitor_config_free)
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (MetaLogicalMonitorConfig,
|
|
meta_logical_monitor_config_free)
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC (MetaMonitorsConfigKey,
|
|
meta_monitors_config_key_free)
|
|
|
|
#endif /* META_MONITOR_CONFIG_MANAGER_H */
|