Mercurial > emacs
annotate src/widget.h @ 106085:cd4cbab8bb21
Handle system default font and changing font parameters.
* xterm.h (struct x_display_info): Add atoms and Window for xsettings.
* xterm.c (handle_one_xevent): Call xft_settings_event for
ClientMessage, PropertyNotify and DestroyNotify.
(x_term_init): If we have XFT, get DPI from Xft.dpi.
Call xsettings_initialize.
* xftfont.c (xftfont_fix_match): New function.
(xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
Call xftfont_fix_match after XftFontMatch.
* xfont.c (xfont_driver): Initialize all members.
* xfns.c (x_default_font_parameter): Try font from Ffont_get_system_font.
Do not get font from x_default_parameter if we got one from
Ffont_get_system_font.
(Fx_select_font): Get the defaut font name from :name of FRAME_FONT (f).
* w32font.c (w32font_driver): Initialize all members.
* termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
* lisp.h: Declare syms_of_xsettings.
* keyboard.c (kbd_buffer_get_event, make_lispy_event): Handle
CONFIG_CHANGED_EVENT.
* ftfont.c (ftfont_filter_properties): New function.
* frame.c (x_set_font): Remove unused variable lval.
* font.h (struct font_driver): filter_properties is new.
* font.c (font_put_extra): Don't return if val is nil, it means
boolean option is off.
(font_parse_fcname): Collect all extra properties in extra_props
and call filter_properties for all drivers with extra_props and
font as parameter.
(font_open_entity): Do not use cache, it does not pick up new fontconfig
settings like hinting.
(font_load_for_lface): If spec had a name in it, store it in entity.
* emacs.c (main): Call syms_of_xsettings
* config.in: HAVE_GCONF is new.
* Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
xsettings.o is new.
* menu-bar.el: Put "Use system font" in Option-menu.
* loadup.el: If feature system-font-setting or font-render-setting is
there, load font-setting.
* Makefile.in (ELCFILES): font-settings.el is new.
* font-setting.el: New file.
* NEWS: Mention dynamic font changes (font-use-system-font).
* configure.in: New option: --with(out)-gconf.
Set HAVE_GCONF if we find gconf.
| author | Jan Dj?rv <jan.h.d@swipnet.se> |
|---|---|
| date | Tue, 17 Nov 2009 08:21:23 +0000 |
| parents | e038c1a8307c |
| children | 1d1d5d9bd884 |
| rev | line source |
|---|---|
| 5626 | 1 /* The emacs frame widget public header file. |
|
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
2 Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005, |
| 100951 | 3 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
| 5626 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
|
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
| 5626 | 8 it under the terms of the GNU General Public License as published by |
|
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
|
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
10 (at your option) any later version. |
| 5626 | 11 |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
|
94994
29adfc9354e7
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 5626 | 19 |
| 20 /* Emacs 19 face widget ported by Fred Pierresteguy */ | |
| 21 | |
| 22 #ifndef _EmacsFrame_h | |
| 23 #define _EmacsFrame_h | |
| 24 | |
| 25 #define XtNminibuffer "minibuffer" | |
| 26 #define XtCMinibuffer "Minibuffer" | |
| 27 #define XtNunsplittable "unsplittable" | |
| 28 #define XtCUnsplittable "Unsplittable" | |
| 29 #define XtNinternalBorderWidth "internalBorderWidth" | |
| 30 #define XtCInternalBorderWidth "InternalBorderWidth" | |
| 31 #define XtNinterline "interline" | |
| 32 #define XtCInterline "Interline" | |
| 33 | |
| 34 #ifndef XtNfont | |
| 35 #define XtNfont "font" | |
| 36 #endif | |
| 37 #ifndef XtCFont | |
| 38 #define XtCFont "Font" | |
| 39 #endif | |
| 40 #ifndef XtNforeground | |
| 41 #define XtNforeground "foreground" | |
| 42 #endif | |
| 43 #ifndef XtCForeground | |
| 44 #define XtCForeground "Foreground" | |
| 45 #endif | |
| 46 | |
| 47 #define XtNcursorColor "cursorColor" | |
| 48 #define XtCCursorColor "CursorColor" | |
| 49 #define XtNbarCursor "barCursor" | |
| 50 #define XtCBarCursor "BarCursor" | |
| 51 | |
| 52 #define XtNvisualBell "visualBell" | |
| 53 #define XtCVisualBell "VisualBell" | |
| 54 #define XtCBellVolume "BellVolume" | |
| 55 #define XtNbellVolume "bellVolume" | |
| 56 | |
| 57 #define XtNpointerBackground "pointerBackground" | |
| 58 #define XtNpointerColor "pointerColor" | |
| 59 | |
| 60 #define XtNtextPointer "textPointer" | |
| 61 #define XtNspacePointer "spacePointer" | |
| 62 #define XtNmodeLinePointer "modePointer" | |
| 63 #define XtNgcPointer "gcPointer" | |
| 64 | |
| 65 #define XtNemacsFrame "emacsFrame" | |
| 66 #define XtCEmacsFrame "EmacsFrame" | |
| 67 | |
| 68 #ifndef XtNgeometry | |
| 69 #define XtNgeometry "geometry" | |
| 70 #endif | |
| 71 #ifndef XtCGeometry | |
| 72 #define XtCGeometry "Geometry" | |
| 73 #endif | |
|
9229
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
74 #ifndef XtNshowGrip |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
75 #define XtNshowGrip "showGrip" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
76 #endif |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
77 #ifndef XtNallowResize |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
78 #define XtNallowResize "allowResize" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
79 #endif |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
80 #ifndef XtNresizeToPreferred |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
81 #define XtNresizeToPreferred "resizeToPreferred" |
|
097322f7b8ad
Declare XtNshowGrip, XtNallowResize, and XtNresizeToPreferred.
Paul Reilly <pmr@pajato.com>
parents:
5705
diff
changeset
|
82 #endif |
| 5626 | 83 |
| 84 #define XtNinitialGeometry "initialGeometry" | |
| 85 #define XtCInitialGeometry "InitialGeometry" | |
| 86 | |
| 87 /* structures | |
| 88 */ | |
| 89 typedef struct _EmacsFrameRec *EmacsFrame; | |
| 90 typedef struct _EmacsFrameClassRec *EmacsFrameClass; | |
| 91 | |
| 92 extern WidgetClass emacsFrameClass; | |
| 93 | |
| 94 extern struct _DisplayContext* display_context; | |
| 95 | |
| 96 /* Special entrypoints */ | |
|
35057
29053ba75ce5
(EmacsFrameSetCharSize_): Prototype.
Dave Love <fx@gnu.org>
parents:
24998
diff
changeset
|
97 void EmacsFrameSetCharSize P_ ((Widget, int, int)); |
|
24998
c61fea4f9105
(x_set_font): Don't call face-set-after-frame-default
Gerd Moellmann <gerd@gnu.org>
parents:
14186
diff
changeset
|
98 void widget_store_internal_border P_ ((Widget widget)); |
| 5626 | 99 |
| 100 #endif /* _EmacsFrame_h */ | |
| 52401 | 101 |
| 102 /* arch-tag: 98be17cc-8878-4701-abfa-66f1c04e9cb7 | |
| 103 (do not change this comment) */ |
