mirror of
https://github.com/brl/mutter.git
synced 2024-11-11 08:46:26 -05:00
59 lines
1.8 KiB
C
59 lines
1.8 KiB
C
|
/* Metacity preferences */
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2001 Havoc Pennington
|
||
|
*
|
||
|
* 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_PREFS_H
|
||
|
#define META_PREFS_H
|
||
|
|
||
|
/* This header is a "common" one between the UI and core side */
|
||
|
#include "common.h"
|
||
|
#include <pango/pango-font.h>
|
||
|
|
||
|
typedef enum
|
||
|
{
|
||
|
META_PREF_FOCUS_MODE,
|
||
|
META_PREF_TITLEBAR_FONT,
|
||
|
META_PREF_TITLEBAR_FONT_SIZE
|
||
|
|
||
|
} MetaPreference;
|
||
|
|
||
|
typedef void (* MetaPrefsChangedFunc) (MetaPreference pref,
|
||
|
gpointer data);
|
||
|
|
||
|
void meta_prefs_add_listener (MetaPrefsChangedFunc func,
|
||
|
gpointer data);
|
||
|
void meta_prefs_remove_listener (MetaPrefsChangedFunc func,
|
||
|
gpointer data);
|
||
|
|
||
|
void meta_prefs_init (void);
|
||
|
const char* meta_preference_to_string (MetaPreference pref);
|
||
|
|
||
|
MetaFocusMode meta_prefs_get_focus_mode (void);
|
||
|
/* returns NULL if GTK default should be used */
|
||
|
const PangoFontDescription* meta_prefs_get_titlebar_font (void);
|
||
|
/* returns 0 if default should be used */
|
||
|
int meta_prefs_get_titlebar_font_size (void);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
|