2006-10-01 18:30:10 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
Comprehensively rename to Mutter
Code:
All references in the code not related to themes, keybindings, or
GConf were changed from 'metacity' to 'mutter'. This includes, among other
things, strings, comments, the atoms used in the message protocol, and
the envvars used for debugging. The GConf schema file was reduced to
the 3 settings new to mutter.
The overall version was brought up to 2.27 to match current gnome.
Structure:
All files named '*metacity*' were renamed '*mutter*' with appropriate
changes in the automake system. Files removed are
doc/creating_themes, src/themes, doc/metacity-theme.dtd,
metacity.doap. These files will eventually end up in an external
gnome-wm-data module.
Installation location:
On the filesystem the mutter-plugindir was change from
$(libdir)/metacity/plugins/clutter to just $(libdir)/mutter/plugins.
The mutter-plugins.pc.in reflects these changes.
Note:
mutter.desktop.in and mutter-wm.desktop both continue to have
X-GNOME-WMSettingsModule=metacity set. This allows
gnome-control-center to continue using libmetacity.so for
configuration. This is fine since most the general keybindings and wm
settings are being read from /apps/metacity/* in gconf.
2009-06-10 06:29:20 -04:00
|
|
|
/* Mutter preferences */
|
2001-12-09 17:41:12 -05:00
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
/*
|
2001-12-09 17:41:12 -05:00
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
2006-01-10 14:43:21 -05:00
|
|
|
* Copyright (C) 2006 Elijah Newren
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2001-12-09 17:41:12 -05:00
|
|
|
* 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.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2001-12-09 17:41:12 -05:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2001-12-09 17:41:12 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_PREFS_H
|
|
|
|
#define META_PREFS_H
|
|
|
|
|
|
|
|
/* This header is a "common" one between the UI and core side */
|
2011-03-05 19:29:12 -05:00
|
|
|
#include <meta/common.h>
|
2011-10-27 21:05:43 -04:00
|
|
|
#include <meta/types.h>
|
2001-12-09 17:41:12 -05:00
|
|
|
#include <pango/pango-font.h>
|
2011-06-24 12:14:15 -04:00
|
|
|
#include <gdesktop-enums.h>
|
2012-03-27 10:42:42 -04:00
|
|
|
#include <gio/gio.h>
|
2001-12-09 17:41:12 -05:00
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaPreference:
|
|
|
|
* @META_PREF_MOUSE_BUTTON_MODS: mouse button modifiers
|
|
|
|
* @META_PREF_FOCUS_MODE: focus mode
|
|
|
|
* @META_PREF_FOCUS_NEW_WINDOWS: focus new windows
|
|
|
|
* @META_PREF_ATTACH_MODAL_DIALOGS: attach modal dialogs
|
|
|
|
* @META_PREF_RAISE_ON_CLICK: raise on click
|
|
|
|
* @META_PREF_ACTION_DOUBLE_CLICK_TITLEBAR: action double click titlebar
|
|
|
|
* @META_PREF_ACTION_MIDDLE_CLICK_TITLEBAR: action middle click titlebar
|
|
|
|
* @META_PREF_ACTION_RIGHT_CLICK_TITLEBAR: action right click titlebar
|
|
|
|
* @META_PREF_AUTO_RAISE: auto-raise
|
|
|
|
* @META_PREF_AUTO_RAISE_DELAY: auto-raise delay
|
|
|
|
* @META_PREF_FOCUS_CHANGE_ON_POINTER_REST: focus change on pointer rest
|
|
|
|
* @META_PREF_TITLEBAR_FONT: title-bar font
|
|
|
|
* @META_PREF_NUM_WORKSPACES: number of workspaces
|
|
|
|
* @META_PREF_DYNAMIC_WORKSPACES: dynamic workspaces
|
|
|
|
* @META_PREF_KEYBINDINGS: keybindings
|
|
|
|
* @META_PREF_DISABLE_WORKAROUNDS: disable workarounds
|
|
|
|
* @META_PREF_BUTTON_LAYOUT: button layout
|
|
|
|
* @META_PREF_WORKSPACE_NAMES: workspace names
|
|
|
|
* @META_PREF_VISUAL_BELL: visual bell
|
|
|
|
* @META_PREF_AUDIBLE_BELL: audible bell
|
|
|
|
* @META_PREF_VISUAL_BELL_TYPE: visual bell type
|
|
|
|
* @META_PREF_GNOME_ACCESSIBILITY: GNOME accessibility
|
|
|
|
* @META_PREF_GNOME_ANIMATIONS: GNOME animations
|
|
|
|
* @META_PREF_CURSOR_THEME: cursor theme
|
|
|
|
* @META_PREF_CURSOR_SIZE: cursor size
|
|
|
|
* @META_PREF_RESIZE_WITH_RIGHT_BUTTON: resize with right button
|
|
|
|
* @META_PREF_EDGE_TILING: edge tiling
|
|
|
|
* @META_PREF_FORCE_FULLSCREEN: force fullscreen
|
|
|
|
* @META_PREF_WORKSPACES_ONLY_ON_PRIMARY: workspaces only on primary
|
|
|
|
* @META_PREF_DRAGGABLE_BORDER_WIDTH: draggable border width
|
|
|
|
* @META_PREF_AUTO_MAXIMIZE: auto-maximize
|
2014-04-25 09:26:24 -04:00
|
|
|
* @META_PREF_CENTER_NEW_WINDOWS: center new windows
|
2016-06-17 20:08:20 -04:00
|
|
|
* @META_PREF_DRAG_THRESHOLD: drag threshold
|
2013-02-15 13:42:08 -05:00
|
|
|
*/
|
|
|
|
|
2011-06-24 12:14:15 -04:00
|
|
|
/* Keep in sync with GSettings schemas! */
|
2001-12-09 17:41:12 -05:00
|
|
|
typedef enum
|
|
|
|
{
|
2002-10-07 19:14:40 -04:00
|
|
|
META_PREF_MOUSE_BUTTON_MODS,
|
2001-12-09 17:41:12 -05:00
|
|
|
META_PREF_FOCUS_MODE,
|
2006-04-12 14:01:20 -04:00
|
|
|
META_PREF_FOCUS_NEW_WINDOWS,
|
2010-09-10 05:55:20 -04:00
|
|
|
META_PREF_ATTACH_MODAL_DIALOGS,
|
Add a raise on click option, basically only because all the major distros
2006-01-10 Elijah Newren <newren@gmail.com>
Add a raise on click option, basically only because all the major
distros are patching it in anyway. See #326156.
* src/metacity.schemas.in: add the new gconf key and explanation
* src/prefs.[ch] (#define KEY_RAISE_ON_CLICK, static gboolean
raise_on_click, update_raise_on_click, meta_prefs_init,
change_notify, meta_prefs_get_raise_on_click,
meta_preference_to_string):
Add all the normal preference handling stuff for this new
raise-on-click option.
* src/core.c (meta_core_show_window_menu):
* src/display.c (event_callback, meta_display_begin_grab_op):
* src/window.c (window_activate, meta_window_configure_request, ):
Only raise the window if in raise_on_click mode.
* src/display.c (meta_display_begin_grab_op,
meta_display_end_grab_op, meta_display_check_threshold_reached):
* src/display.h (struct MetaDisplay):
* src/window.c (meta_window_handle_mouse_grab_op_event):
if not in raise-on-click mode only raise on button release if the
click didn't start a move or resize operation; needs a few extra
MetaDisplay fields to handle this
* src/core.c (meta_core_user_lower_and_unfocus):
no need to do the MRU shuffling if not maintaining the stacking
order == MRU order invariant
* src/frames.c (meta_frames_button_press_event):
* src/window.c (meta_window_begin_grab_op):
remove an unneeded window raising that is already handled elsewhere
2006-01-10 14:35:03 -05:00
|
|
|
META_PREF_RAISE_ON_CLICK,
|
2002-10-18 17:22:27 -04:00
|
|
|
META_PREF_ACTION_DOUBLE_CLICK_TITLEBAR,
|
2007-04-24 23:30:17 -04:00
|
|
|
META_PREF_ACTION_MIDDLE_CLICK_TITLEBAR,
|
|
|
|
META_PREF_ACTION_RIGHT_CLICK_TITLEBAR,
|
2002-05-23 22:23:46 -04:00
|
|
|
META_PREF_AUTO_RAISE,
|
|
|
|
META_PREF_AUTO_RAISE_DELAY,
|
2012-08-28 22:38:54 -04:00
|
|
|
META_PREF_FOCUS_CHANGE_ON_POINTER_REST,
|
2001-12-09 17:41:12 -05:00
|
|
|
META_PREF_TITLEBAR_FONT,
|
2002-01-27 00:50:34 -05:00
|
|
|
META_PREF_NUM_WORKSPACES,
|
2012-03-07 19:29:58 -05:00
|
|
|
META_PREF_DYNAMIC_WORKSPACES,
|
2008-11-22 14:02:54 -05:00
|
|
|
META_PREF_KEYBINDINGS,
|
2002-07-11 00:10:44 -04:00
|
|
|
META_PREF_DISABLE_WORKAROUNDS,
|
2002-11-03 14:06:39 -05:00
|
|
|
META_PREF_BUTTON_LAYOUT,
|
2003-01-28 10:07:43 -05:00
|
|
|
META_PREF_WORKSPACE_NAMES,
|
|
|
|
META_PREF_VISUAL_BELL,
|
|
|
|
META_PREF_AUDIBLE_BELL,
|
2003-10-12 02:25:38 -04:00
|
|
|
META_PREF_VISUAL_BELL_TYPE,
|
2005-07-11 09:25:08 -04:00
|
|
|
META_PREF_GNOME_ACCESSIBILITY,
|
2008-06-29 17:57:39 -04:00
|
|
|
META_PREF_GNOME_ANIMATIONS,
|
2005-07-11 09:25:08 -04:00
|
|
|
META_PREF_CURSOR_THEME,
|
2006-02-16 15:26:05 -05:00
|
|
|
META_PREF_CURSOR_SIZE,
|
2009-02-12 12:14:12 -05:00
|
|
|
META_PREF_RESIZE_WITH_RIGHT_BUTTON,
|
2010-09-24 14:28:12 -04:00
|
|
|
META_PREF_EDGE_TILING,
|
2009-06-19 11:30:37 -04:00
|
|
|
META_PREF_FORCE_FULLSCREEN,
|
2011-02-28 07:48:28 -05:00
|
|
|
META_PREF_WORKSPACES_ONLY_ON_PRIMARY,
|
2012-09-08 05:34:27 -04:00
|
|
|
META_PREF_DRAGGABLE_BORDER_WIDTH,
|
2014-04-25 09:26:24 -04:00
|
|
|
META_PREF_AUTO_MAXIMIZE,
|
2014-08-15 18:21:13 -04:00
|
|
|
META_PREF_CENTER_NEW_WINDOWS,
|
|
|
|
META_PREF_DRAG_THRESHOLD,
|
2001-12-09 17:41:12 -05:00
|
|
|
} MetaPreference;
|
|
|
|
|
|
|
|
typedef void (* MetaPrefsChangedFunc) (MetaPreference pref,
|
2012-11-16 15:23:47 -05:00
|
|
|
gpointer user_data);
|
2001-12-09 17:41:12 -05:00
|
|
|
|
|
|
|
void meta_prefs_add_listener (MetaPrefsChangedFunc func,
|
2012-11-16 15:23:47 -05:00
|
|
|
gpointer user_data);
|
2001-12-09 17:41:12 -05:00
|
|
|
void meta_prefs_remove_listener (MetaPrefsChangedFunc func,
|
2012-11-16 15:23:47 -05:00
|
|
|
gpointer user_data);
|
2001-12-09 17:41:12 -05:00
|
|
|
|
|
|
|
void meta_prefs_init (void);
|
2010-04-12 17:39:27 -04:00
|
|
|
|
2011-06-24 12:14:15 -04:00
|
|
|
void meta_prefs_override_preference_schema (const char *key,
|
|
|
|
const char *schema);
|
2010-04-12 17:39:27 -04:00
|
|
|
|
2001-12-09 17:41:12 -05:00
|
|
|
const char* meta_preference_to_string (MetaPreference pref);
|
|
|
|
|
2002-10-07 19:14:40 -04:00
|
|
|
MetaVirtualModifier meta_prefs_get_mouse_button_mods (void);
|
2012-12-17 07:30:01 -05:00
|
|
|
gint meta_prefs_get_mouse_button_resize (void);
|
|
|
|
gint meta_prefs_get_mouse_button_menu (void);
|
2011-06-24 12:14:15 -04:00
|
|
|
GDesktopFocusMode meta_prefs_get_focus_mode (void);
|
|
|
|
GDesktopFocusNewWindows meta_prefs_get_focus_new_windows (void);
|
2010-09-10 05:55:20 -04:00
|
|
|
gboolean meta_prefs_get_attach_modal_dialogs (void);
|
Add a raise on click option, basically only because all the major distros
2006-01-10 Elijah Newren <newren@gmail.com>
Add a raise on click option, basically only because all the major
distros are patching it in anyway. See #326156.
* src/metacity.schemas.in: add the new gconf key and explanation
* src/prefs.[ch] (#define KEY_RAISE_ON_CLICK, static gboolean
raise_on_click, update_raise_on_click, meta_prefs_init,
change_notify, meta_prefs_get_raise_on_click,
meta_preference_to_string):
Add all the normal preference handling stuff for this new
raise-on-click option.
* src/core.c (meta_core_show_window_menu):
* src/display.c (event_callback, meta_display_begin_grab_op):
* src/window.c (window_activate, meta_window_configure_request, ):
Only raise the window if in raise_on_click mode.
* src/display.c (meta_display_begin_grab_op,
meta_display_end_grab_op, meta_display_check_threshold_reached):
* src/display.h (struct MetaDisplay):
* src/window.c (meta_window_handle_mouse_grab_op_event):
if not in raise-on-click mode only raise on button release if the
click didn't start a move or resize operation; needs a few extra
MetaDisplay fields to handle this
* src/core.c (meta_core_user_lower_and_unfocus):
no need to do the MRU shuffling if not maintaining the stacking
order == MRU order invariant
* src/frames.c (meta_frames_button_press_event):
* src/window.c (meta_window_begin_grab_op):
remove an unneeded window raising that is already handled elsewhere
2006-01-10 14:35:03 -05:00
|
|
|
gboolean meta_prefs_get_raise_on_click (void);
|
2001-12-09 17:41:12 -05:00
|
|
|
/* returns NULL if GTK default should be used */
|
|
|
|
const PangoFontDescription* meta_prefs_get_titlebar_font (void);
|
2001-12-09 22:55:26 -05:00
|
|
|
int meta_prefs_get_num_workspaces (void);
|
2012-03-07 19:29:58 -05:00
|
|
|
gboolean meta_prefs_get_dynamic_workspaces (void);
|
2002-04-30 23:23:46 -04:00
|
|
|
gboolean meta_prefs_get_disable_workarounds (void);
|
2002-05-23 22:23:46 -04:00
|
|
|
gboolean meta_prefs_get_auto_raise (void);
|
|
|
|
int meta_prefs_get_auto_raise_delay (void);
|
2012-08-28 22:38:54 -04:00
|
|
|
gboolean meta_prefs_get_focus_change_on_pointer_rest (void);
|
2005-01-26 03:43:38 -05:00
|
|
|
gboolean meta_prefs_get_gnome_accessibility (void);
|
2008-06-29 17:57:39 -04:00
|
|
|
gboolean meta_prefs_get_gnome_animations (void);
|
2010-09-24 14:28:12 -04:00
|
|
|
gboolean meta_prefs_get_edge_tiling (void);
|
2012-09-08 05:34:27 -04:00
|
|
|
gboolean meta_prefs_get_auto_maximize (void);
|
2014-04-25 09:26:24 -04:00
|
|
|
gboolean meta_prefs_get_center_new_windows (void);
|
2014-05-23 17:14:51 -04:00
|
|
|
gboolean meta_prefs_get_show_fallback_app_menu (void);
|
2001-12-09 17:41:12 -05:00
|
|
|
|
2002-10-03 22:28:57 -04:00
|
|
|
void meta_prefs_get_button_layout (MetaButtonLayout *button_layout);
|
2007-03-09 20:15:14 -05:00
|
|
|
|
|
|
|
/* Double, right, middle click can be configured to any titlebar meta-action */
|
2011-06-24 12:14:15 -04:00
|
|
|
GDesktopTitlebarAction meta_prefs_get_action_double_click_titlebar (void);
|
|
|
|
GDesktopTitlebarAction meta_prefs_get_action_middle_click_titlebar (void);
|
|
|
|
GDesktopTitlebarAction meta_prefs_get_action_right_click_titlebar (void);
|
2002-10-03 22:28:57 -04:00
|
|
|
|
2002-03-10 13:36:08 -05:00
|
|
|
void meta_prefs_set_num_workspaces (int n_workspaces);
|
|
|
|
|
2002-11-03 14:06:39 -05:00
|
|
|
const char* meta_prefs_get_workspace_name (int i);
|
|
|
|
void meta_prefs_change_workspace_name (int i,
|
|
|
|
const char *name);
|
|
|
|
|
2005-07-11 09:25:08 -04:00
|
|
|
const char* meta_prefs_get_cursor_theme (void);
|
|
|
|
int meta_prefs_get_cursor_size (void);
|
2006-02-16 15:26:05 -05:00
|
|
|
gboolean meta_prefs_get_compositing_manager (void);
|
2009-06-19 11:30:37 -04:00
|
|
|
gboolean meta_prefs_get_force_fullscreen (void);
|
2005-07-11 09:25:08 -04:00
|
|
|
|
2009-06-19 11:30:37 -04:00
|
|
|
void meta_prefs_set_force_fullscreen (gboolean whether);
|
|
|
|
|
2011-02-28 07:48:28 -05:00
|
|
|
gboolean meta_prefs_get_workspaces_only_on_primary (void);
|
|
|
|
|
2011-07-20 02:14:58 -04:00
|
|
|
int meta_prefs_get_draggable_border_width (void);
|
2014-08-15 18:21:13 -04:00
|
|
|
int meta_prefs_get_drag_threshold (void);
|
2011-07-20 02:14:58 -04:00
|
|
|
|
2012-07-01 13:25:08 -04:00
|
|
|
gboolean meta_prefs_get_ignore_request_hide_titlebar (void);
|
|
|
|
void meta_prefs_set_ignore_request_hide_titlebar (gboolean whether);
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaKeyBindingAction:
|
2014-05-02 09:34:02 -04:00
|
|
|
* @META_KEYBINDING_ACTION_NONE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_1: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_2: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_3: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_4: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_5: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_6: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_7: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_8: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_9: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_10: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_11: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_12: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_LEFT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_RIGHT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_UP: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_DOWN: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_WORKSPACE_LAST: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_APPLICATIONS: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_APPLICATIONS_BACKWARD: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_GROUP: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_GROUP_BACKWARD: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_WINDOWS: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_WINDOWS_BACKWARD: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_PANELS: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SWITCH_PANELS_BACKWARD: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_CYCLE_GROUP: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_CYCLE_GROUP_BACKWARD: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_CYCLE_WINDOWS: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_CYCLE_WINDOWS_BACKWARD: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_CYCLE_PANELS: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_CYCLE_PANELS_BACKWARD: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SHOW_DESKTOP: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_PANEL_MAIN_MENU: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_PANEL_RUN_DIALOG: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_RECORDING: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_SET_SPEW_MARK: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_ACTIVATE_WINDOW_MENU: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_FULLSCREEN: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_MAXIMIZED: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_TILED_LEFT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_TILED_RIGHT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_ABOVE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MAXIMIZE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_UNMAXIMIZE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_SHADED: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MINIMIZE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_CLOSE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_BEGIN_MOVE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_BEGIN_RESIZE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_TOGGLE_ON_ALL_WORKSPACES: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_1: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_2: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_3: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_4: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_5: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_6: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_7: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_8: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_9: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_10: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_11: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_12: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_LEFT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_RIGHT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_UP: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_DOWN: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_LAST: FILLME
|
2013-12-11 11:57:45 -05:00
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_MONITOR_LEFT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_MONITOR_RIGHT: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_MONITOR_UP: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_MONITOR_DOWN: FILLME
|
2014-05-02 09:34:02 -04:00
|
|
|
* @META_KEYBINDING_ACTION_RAISE_OR_LOWER: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_RAISE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_LOWER: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MAXIMIZE_VERTICALLY: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MAXIMIZE_HORIZONTALLY: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_CORNER_NW: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_CORNER_NE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_CORNER_SW: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_CORNER_SE: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_SIDE_N: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_SIDE_S: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_SIDE_E: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_SIDE_W: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_MOVE_TO_CENTER: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_OVERLAY_KEY: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_ALWAYS_ON_TOP: FILLME
|
|
|
|
* @META_KEYBINDING_ACTION_LAST: FILLME
|
2013-02-15 13:42:08 -05:00
|
|
|
*/
|
2008-10-05 20:24:07 -04:00
|
|
|
/* XXX FIXME This should be x-macroed, but isn't yet because it would be
|
|
|
|
* difficult (or perhaps impossible) to add the suffixes using the current
|
|
|
|
* system. It needs some more thought, perhaps after the current system
|
|
|
|
* evolves a little.
|
|
|
|
*/
|
2002-06-08 23:44:16 -04:00
|
|
|
typedef enum _MetaKeyBindingAction
|
|
|
|
{
|
2012-12-21 06:04:19 -05:00
|
|
|
META_KEYBINDING_ACTION_NONE,
|
2002-06-08 23:44:16 -04:00
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_1,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_2,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_3,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_4,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_5,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_6,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_7,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_8,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_9,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_10,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_11,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_12,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_LEFT,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_RIGHT,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_UP,
|
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_DOWN,
|
2013-05-17 08:08:57 -04:00
|
|
|
META_KEYBINDING_ACTION_WORKSPACE_LAST,
|
2012-11-22 21:48:14 -05:00
|
|
|
META_KEYBINDING_ACTION_SWITCH_APPLICATIONS,
|
|
|
|
META_KEYBINDING_ACTION_SWITCH_APPLICATIONS_BACKWARD,
|
2006-04-14 22:05:44 -04:00
|
|
|
META_KEYBINDING_ACTION_SWITCH_GROUP,
|
|
|
|
META_KEYBINDING_ACTION_SWITCH_GROUP_BACKWARD,
|
2002-06-08 23:44:16 -04:00
|
|
|
META_KEYBINDING_ACTION_SWITCH_WINDOWS,
|
2002-10-18 18:19:05 -04:00
|
|
|
META_KEYBINDING_ACTION_SWITCH_WINDOWS_BACKWARD,
|
2002-06-08 23:44:16 -04:00
|
|
|
META_KEYBINDING_ACTION_SWITCH_PANELS,
|
2002-10-18 18:19:05 -04:00
|
|
|
META_KEYBINDING_ACTION_SWITCH_PANELS_BACKWARD,
|
2006-04-14 22:05:44 -04:00
|
|
|
META_KEYBINDING_ACTION_CYCLE_GROUP,
|
|
|
|
META_KEYBINDING_ACTION_CYCLE_GROUP_BACKWARD,
|
2002-07-06 12:50:48 -04:00
|
|
|
META_KEYBINDING_ACTION_CYCLE_WINDOWS,
|
2002-10-18 18:19:05 -04:00
|
|
|
META_KEYBINDING_ACTION_CYCLE_WINDOWS_BACKWARD,
|
2002-07-06 12:50:48 -04:00
|
|
|
META_KEYBINDING_ACTION_CYCLE_PANELS,
|
2002-10-18 18:19:05 -04:00
|
|
|
META_KEYBINDING_ACTION_CYCLE_PANELS_BACKWARD,
|
2002-07-11 00:10:44 -04:00
|
|
|
META_KEYBINDING_ACTION_SHOW_DESKTOP,
|
2003-02-23 21:16:09 -05:00
|
|
|
META_KEYBINDING_ACTION_PANEL_MAIN_MENU,
|
|
|
|
META_KEYBINDING_ACTION_PANEL_RUN_DIALOG,
|
2010-10-14 10:17:55 -04:00
|
|
|
META_KEYBINDING_ACTION_TOGGLE_RECORDING,
|
|
|
|
META_KEYBINDING_ACTION_SET_SPEW_MARK,
|
|
|
|
META_KEYBINDING_ACTION_ACTIVATE_WINDOW_MENU,
|
|
|
|
META_KEYBINDING_ACTION_TOGGLE_FULLSCREEN,
|
|
|
|
META_KEYBINDING_ACTION_TOGGLE_MAXIMIZED,
|
2011-11-15 11:29:56 -05:00
|
|
|
META_KEYBINDING_ACTION_TOGGLE_TILED_LEFT,
|
|
|
|
META_KEYBINDING_ACTION_TOGGLE_TILED_RIGHT,
|
2010-10-14 10:17:55 -04:00
|
|
|
META_KEYBINDING_ACTION_TOGGLE_ABOVE,
|
|
|
|
META_KEYBINDING_ACTION_MAXIMIZE,
|
|
|
|
META_KEYBINDING_ACTION_UNMAXIMIZE,
|
|
|
|
META_KEYBINDING_ACTION_TOGGLE_SHADED,
|
|
|
|
META_KEYBINDING_ACTION_MINIMIZE,
|
|
|
|
META_KEYBINDING_ACTION_CLOSE,
|
|
|
|
META_KEYBINDING_ACTION_BEGIN_MOVE,
|
|
|
|
META_KEYBINDING_ACTION_BEGIN_RESIZE,
|
|
|
|
META_KEYBINDING_ACTION_TOGGLE_ON_ALL_WORKSPACES,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_1,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_2,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_3,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_4,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_5,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_6,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_7,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_8,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_9,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_10,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_11,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_12,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_LEFT,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_RIGHT,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_UP,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_DOWN,
|
2013-05-17 08:08:57 -04:00
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_WORKSPACE_LAST,
|
2013-12-11 11:57:45 -05:00
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_MONITOR_LEFT,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_MONITOR_RIGHT,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_MONITOR_UP,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_MONITOR_DOWN,
|
2010-10-14 10:17:55 -04:00
|
|
|
META_KEYBINDING_ACTION_RAISE_OR_LOWER,
|
|
|
|
META_KEYBINDING_ACTION_RAISE,
|
|
|
|
META_KEYBINDING_ACTION_LOWER,
|
|
|
|
META_KEYBINDING_ACTION_MAXIMIZE_VERTICALLY,
|
|
|
|
META_KEYBINDING_ACTION_MAXIMIZE_HORIZONTALLY,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_CORNER_NW,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_CORNER_NE,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_CORNER_SW,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_CORNER_SE,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_SIDE_N,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_SIDE_S,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_SIDE_E,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_SIDE_W,
|
|
|
|
META_KEYBINDING_ACTION_MOVE_TO_CENTER,
|
2012-08-10 16:08:03 -04:00
|
|
|
META_KEYBINDING_ACTION_OVERLAY_KEY,
|
2013-04-10 05:57:16 -04:00
|
|
|
META_KEYBINDING_ACTION_ISO_NEXT_GROUP,
|
2013-11-29 07:53:15 -05:00
|
|
|
META_KEYBINDING_ACTION_ALWAYS_ON_TOP,
|
2017-06-07 13:07:26 -04:00
|
|
|
META_KEYBINDING_ACTION_SWITCH_MONITOR,
|
2017-05-05 11:51:06 -04:00
|
|
|
META_KEYBINDING_ACTION_ROTATE_MONITOR,
|
2010-10-14 10:17:55 -04:00
|
|
|
|
|
|
|
META_KEYBINDING_ACTION_LAST
|
2002-06-08 23:44:16 -04:00
|
|
|
} MetaKeyBindingAction;
|
|
|
|
|
2013-02-15 13:42:08 -05:00
|
|
|
/**
|
|
|
|
* MetaKeyBindingFlags:
|
|
|
|
* @META_KEY_BINDING_NONE: none
|
|
|
|
* @META_KEY_BINDING_PER_WINDOW: per-window
|
|
|
|
* @META_KEY_BINDING_BUILTIN: built-in
|
|
|
|
* @META_KEY_BINDING_IS_REVERSED: is reversed
|
2017-03-17 08:34:52 -04:00
|
|
|
* @META_KEY_BINDING_NON_MASKABLE: always active
|
2013-02-15 13:42:08 -05:00
|
|
|
*/
|
2011-10-27 21:05:43 -04:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
META_KEY_BINDING_NONE,
|
2017-03-17 08:34:52 -04:00
|
|
|
META_KEY_BINDING_PER_WINDOW = 1 << 0,
|
|
|
|
META_KEY_BINDING_BUILTIN = 1 << 1,
|
|
|
|
META_KEY_BINDING_IS_REVERSED = 1 << 2,
|
|
|
|
META_KEY_BINDING_NON_MASKABLE = 1 << 3,
|
2011-10-27 21:05:43 -04:00
|
|
|
} MetaKeyBindingFlags;
|
|
|
|
|
|
|
|
/**
|
2011-11-04 14:18:57 -04:00
|
|
|
* MetaKeyHandlerFunc:
|
2013-02-15 13:42:08 -05:00
|
|
|
* @display: a #MetaDisplay
|
|
|
|
* @window: a #MetaWindow
|
2013-12-09 15:24:35 -05:00
|
|
|
* @event: (type gpointer): a #ClutterKeyEvent
|
2013-02-15 13:42:08 -05:00
|
|
|
* @binding: a #MetaKeyBinding
|
|
|
|
* @user_data: data passed to the function
|
2011-10-27 21:05:43 -04:00
|
|
|
*
|
|
|
|
*/
|
2013-10-03 18:03:53 -04:00
|
|
|
typedef void (* MetaKeyHandlerFunc) (MetaDisplay *display,
|
|
|
|
MetaWindow *window,
|
|
|
|
ClutterKeyEvent *event,
|
|
|
|
MetaKeyBinding *binding,
|
|
|
|
gpointer user_data);
|
2011-10-27 21:05:43 -04:00
|
|
|
|
2011-11-04 14:18:57 -04:00
|
|
|
GType meta_key_binding_get_type (void);
|
|
|
|
|
2002-07-13 23:16:41 -04:00
|
|
|
MetaKeyBindingAction meta_prefs_get_keybinding_action (const char *name);
|
2002-04-28 00:52:26 -04:00
|
|
|
|
2011-11-14 14:13:56 -05:00
|
|
|
gboolean meta_prefs_get_visual_bell (void);
|
2003-01-28 10:07:43 -05:00
|
|
|
gboolean meta_prefs_bell_is_audible (void);
|
2011-06-24 12:14:15 -04:00
|
|
|
GDesktopVisualBellType meta_prefs_get_visual_bell_type (void);
|
2003-01-28 10:07:43 -05:00
|
|
|
|
2001-12-09 17:41:12 -05:00
|
|
|
#endif
|