diff options
author | Havoc Pennington <hp@src.gnome.org> | 2001-12-09 20:41:07 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-12-09 20:41:07 +0000 |
commit | b3778e4470e08dab6017d0134c81607920110e74 (patch) | |
tree | b728b42d0f372f8d707889f48d8780281943d605 /src | |
parent | 8c8d50049539b69c24a95a7b6d08741e05f34026 (diff) | |
download | metacity-b3778e4470e08dab6017d0134c81607920110e74.tar.gz metacity-b3778e4470e08dab6017d0134c81607920110e74.tar.bz2 |
initial schemas file
Diffstat (limited to 'src')
-rw-r--r-- | src/metacity.schemas | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/src/metacity.schemas b/src/metacity.schemas new file mode 100644 index 0000000..109c900 --- /dev/null +++ b/src/metacity.schemas @@ -0,0 +1,103 @@ +<gconfschemafile> + <schemalist> + + <!-- General preferences --> + + <schema> + <key>/apps/metacity/general/focus_mode</key> + <owner>metacity</owner> + <type>string</type> + <default>click</default> + <locale name="C"> + <short>Window focus mode</short> + <long> + The window focus mode indicates how windows are activated. + It has three possible values; "click" means windows must + be clicked in order to focus them, "sloppy" means windows + are focused when the mouse enters the window, and "mouse" means + windows are focused when the mouse enters the window and + unfocused when the mouse leaves the window. + </long> + </locale> + </schema> + + <schema> + <key>/apps/metacity/general/titlebar_uses_desktop_font</key> + <owner>metacity</owner> + <type>bool</type> + <default>true</default> + <locale name="C"> + <short>Use standard desktop font in window titles</short> + <long> + If true, ignore the titlebar_font and titlebar_font_size + options, and use the standard application font for window + titles. + </long> + </locale> + </schema> + + <schema> + <key>/apps/metacity/general/titlebar_font</key> + <owner>metacity</owner> + <type>string</type> + <!-- no default is deliberate - we want to be unset by default --> + <locale name="C"> + <short>Window title font</short> + <long> + A font description string describing a font for window + titlebars. The size from the description + will only be used if the titlebar_font_size option is set + to 0, however. Also, this option is disabled if the + titlebar_uses_desktop_font option is set to true. + By default, titlebar_font is unset, causing Metacity to fall + back to the desktop font even if titlebar_uses_desktop_font + is false. + </long> + </locale> + </schema> + + <schema> + <key>/apps/metacity/general/titlebar_font_size</key> + <owner>metacity</owner> + <type>int</type> + <default>0</default> + <locale name="C"> + <short>Window title font size</short> + <long> + The size of the font used in window titlebars, in points. + If set to 0, the size comes from the titlebar_font option + or from the desktop-wide default. If set to nonzero, + overrides those sizes. + </long> + </locale> + </schema> + + <!-- Keybindings --> + + <schema> + <key>/apps/metacity/keybindings/activate_window_menu</key> + <owner>metacity</owner> + <type>string</type> + <default> + <locale name="C"> + <short>Activate window menu</short> + <long> + The keybinding used to activate the window menu. + The format looks like "<Control>a" or "<Shift><Alt>F1" or + "<Release>z" (the last one is for key release). The parser is + fairly liberal and allows lower or upper case, and also + abbreviations such as "<Ctl>" and "<Ctrl>". This option can be + set to a single string, or a list of strings; if a list, + all of the given keybindings will be present. If you set + the option to the special string "disabled", then there + will be no keybinding for this action. + </long> + </locale> + </schema> + + </schemalist> +</gconfschemafile> + + + + |