2005-03-12 23:38:43 +00:00
|
|
|
/* Internals of a lightweight menubar widget.
|
2007-02-27 03:10:29 +00:00
|
|
|
Copyright (C) 1992 Lucid, Inc.
|
2011-01-25 04:08:28 +00:00
|
|
|
Copyright (C) 2002-2011
|
2007-02-27 03:10:29 +00:00
|
|
|
Free Software Foundation, Inc.
|
2005-03-12 23:38:43 +00:00
|
|
|
|
|
|
|
This file is part of the Lucid Widget Library.
|
|
|
|
|
|
|
|
The Lucid Widget Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License as published by
|
2007-02-28 03:59:36 +00:00
|
|
|
the Free Software Foundation; either version 1, or (at your option)
|
2005-03-12 23:38:43 +00:00
|
|
|
any later version.
|
|
|
|
|
|
|
|
The Lucid Widget Library 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 GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 15:47:28 +00:00
|
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA. */
|
2005-03-12 23:38:43 +00:00
|
|
|
|
1994-05-06 17:28:42 +00:00
|
|
|
#ifndef _XlwMenuP_h
|
|
|
|
#define _XlwMenuP_h
|
|
|
|
|
|
|
|
#include "xlwmenu.h"
|
|
|
|
#include <X11/CoreP.h>
|
Lucid menus can now use Xft for fonts.
* xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
(parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
in current_font.
(init_gconf): Read value of SYSTEM_FONT and save it in current_font.
(Ffont_get_system_normal_font, xsettings_get_system_normal_font): New
functions.
(syms_of_xsettings): Initialize current_font. defsubr
Sfont_get_system_normal_font.
* xsettings.h (Ffont_get_system_normal_font,
xsettings_get_system_normal_font): Declare.
* xfns.c (extern xlwmenu_default_font): Remove.
(Fx_create_frame): Remove setting of xlwmenu_default_font, moved
to xlwmenu.c.
* menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
menu items in UTF-8.
* xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
(apply_systemfont_to_menu): New function.
(set_frame_menubar, create_and_show_popup_menu): Call
apply_systemfont_to_menu.
* xlwmenu.c (xlwmenu_default_font): Make static.
(xlwMenuResources): Add XtNfaceName and XtNdefaultFace.
(string_width): Use XftTextExtentsUtf8 if HAVE_XFT.
(MENU_FONT_HEIGHT, MENU_FONT_ASCENT): Add versions for
HAVE_XFT.
(size_menu): Set max_rest_width in window_state structure.
(display_menu_item): If HAVE_XFT and xft_draw is set, use
XftDrawRect and XftDrawStringUtf8 to draw text.
(make_windows_if_needed): Set max_rest_width and xft_draw
in windows[i].
(openXftFont): New.
(XlwMenuInitialize): Call openXftFont if HAVE_XFT. If mw->menu.font
is not set, load font fixed and save it in xlwmenu_default_font.
(XlwMenuInitialize): Set max_rest_width and xft_draw in windows[0].
(XlwMenuClassInitialize): Initialize xlwmenu_default_font.
(XlwMenuRealize): Set xft_fg, xft_bg, xft_disabled_fg and
windows[0].xft_draw if xft_font is set.
(XlwMenuDestroy): Destroy all xft_draw and close xft_font.
(facename_changed): New.
(XlwMenuSetValues): Call facename_changed. If face name did change,
close old fonts and destroy xft_draw:s. Then create new ones.
* xlwmenu.h (XtNfaceName, XtCFaceName, XtNdefaultFace,
XtCDefaultFace): New.
* xlwmenuP.h (_window_state): Add max_rest_width and xft_draw.
(_XlwMenu_part): Add faceName,xft_fg, xft_bg, xft_disabled_fg and
xft_font.
* xresources.texi (Lucid Resources): Mention faceName to set Xft fonts.
2010-04-08 16:20:32 +00:00
|
|
|
#ifdef HAVE_XFT
|
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
#endif
|
1994-05-06 17:28:42 +00:00
|
|
|
|
|
|
|
/* Elements in the stack arrays. */
|
|
|
|
typedef struct _window_state
|
|
|
|
{
|
2010-04-17 17:43:03 +00:00
|
|
|
Widget w;
|
1994-05-06 17:28:42 +00:00
|
|
|
Window window;
|
2010-04-17 17:43:03 +00:00
|
|
|
Pixmap pixmap;
|
1994-05-06 17:28:42 +00:00
|
|
|
Position x;
|
|
|
|
Position y;
|
|
|
|
Dimension width;
|
|
|
|
Dimension height;
|
|
|
|
Dimension label_width;
|
Lucid menus can now use Xft for fonts.
* xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
(parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
in current_font.
(init_gconf): Read value of SYSTEM_FONT and save it in current_font.
(Ffont_get_system_normal_font, xsettings_get_system_normal_font): New
functions.
(syms_of_xsettings): Initialize current_font. defsubr
Sfont_get_system_normal_font.
* xsettings.h (Ffont_get_system_normal_font,
xsettings_get_system_normal_font): Declare.
* xfns.c (extern xlwmenu_default_font): Remove.
(Fx_create_frame): Remove setting of xlwmenu_default_font, moved
to xlwmenu.c.
* menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
menu items in UTF-8.
* xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
(apply_systemfont_to_menu): New function.
(set_frame_menubar, create_and_show_popup_menu): Call
apply_systemfont_to_menu.
* xlwmenu.c (xlwmenu_default_font): Make static.
(xlwMenuResources): Add XtNfaceName and XtNdefaultFace.
(string_width): Use XftTextExtentsUtf8 if HAVE_XFT.
(MENU_FONT_HEIGHT, MENU_FONT_ASCENT): Add versions for
HAVE_XFT.
(size_menu): Set max_rest_width in window_state structure.
(display_menu_item): If HAVE_XFT and xft_draw is set, use
XftDrawRect and XftDrawStringUtf8 to draw text.
(make_windows_if_needed): Set max_rest_width and xft_draw
in windows[i].
(openXftFont): New.
(XlwMenuInitialize): Call openXftFont if HAVE_XFT. If mw->menu.font
is not set, load font fixed and save it in xlwmenu_default_font.
(XlwMenuInitialize): Set max_rest_width and xft_draw in windows[0].
(XlwMenuClassInitialize): Initialize xlwmenu_default_font.
(XlwMenuRealize): Set xft_fg, xft_bg, xft_disabled_fg and
windows[0].xft_draw if xft_font is set.
(XlwMenuDestroy): Destroy all xft_draw and close xft_font.
(facename_changed): New.
(XlwMenuSetValues): Call facename_changed. If face name did change,
close old fonts and destroy xft_draw:s. Then create new ones.
* xlwmenu.h (XtNfaceName, XtCFaceName, XtNdefaultFace,
XtCDefaultFace): New.
* xlwmenuP.h (_window_state): Add max_rest_width and xft_draw.
(_XlwMenu_part): Add faceName,xft_fg, xft_bg, xft_disabled_fg and
xft_font.
* xresources.texi (Lucid Resources): Mention faceName to set Xft fonts.
2010-04-08 16:20:32 +00:00
|
|
|
int max_rest_width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
/* Width of toggle buttons or radio buttons. */
|
|
|
|
Dimension button_width;
|
Lucid menus can now use Xft for fonts.
* xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
(parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
in current_font.
(init_gconf): Read value of SYSTEM_FONT and save it in current_font.
(Ffont_get_system_normal_font, xsettings_get_system_normal_font): New
functions.
(syms_of_xsettings): Initialize current_font. defsubr
Sfont_get_system_normal_font.
* xsettings.h (Ffont_get_system_normal_font,
xsettings_get_system_normal_font): Declare.
* xfns.c (extern xlwmenu_default_font): Remove.
(Fx_create_frame): Remove setting of xlwmenu_default_font, moved
to xlwmenu.c.
* menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
menu items in UTF-8.
* xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
(apply_systemfont_to_menu): New function.
(set_frame_menubar, create_and_show_popup_menu): Call
apply_systemfont_to_menu.
* xlwmenu.c (xlwmenu_default_font): Make static.
(xlwMenuResources): Add XtNfaceName and XtNdefaultFace.
(string_width): Use XftTextExtentsUtf8 if HAVE_XFT.
(MENU_FONT_HEIGHT, MENU_FONT_ASCENT): Add versions for
HAVE_XFT.
(size_menu): Set max_rest_width in window_state structure.
(display_menu_item): If HAVE_XFT and xft_draw is set, use
XftDrawRect and XftDrawStringUtf8 to draw text.
(make_windows_if_needed): Set max_rest_width and xft_draw
in windows[i].
(openXftFont): New.
(XlwMenuInitialize): Call openXftFont if HAVE_XFT. If mw->menu.font
is not set, load font fixed and save it in xlwmenu_default_font.
(XlwMenuInitialize): Set max_rest_width and xft_draw in windows[0].
(XlwMenuClassInitialize): Initialize xlwmenu_default_font.
(XlwMenuRealize): Set xft_fg, xft_bg, xft_disabled_fg and
windows[0].xft_draw if xft_font is set.
(XlwMenuDestroy): Destroy all xft_draw and close xft_font.
(facename_changed): New.
(XlwMenuSetValues): Call facename_changed. If face name did change,
close old fonts and destroy xft_draw:s. Then create new ones.
* xlwmenu.h (XtNfaceName, XtCFaceName, XtNdefaultFace,
XtCDefaultFace): New.
* xlwmenuP.h (_window_state): Add max_rest_width and xft_draw.
(_XlwMenu_part): Add faceName,xft_fg, xft_bg, xft_disabled_fg and
xft_font.
* xresources.texi (Lucid Resources): Mention faceName to set Xft fonts.
2010-04-08 16:20:32 +00:00
|
|
|
#ifdef HAVE_XFT
|
|
|
|
XftDraw* xft_draw;
|
|
|
|
#endif
|
1994-05-06 17:28:42 +00:00
|
|
|
} window_state;
|
|
|
|
|
|
|
|
|
|
|
|
/* New fields for the XlwMenu widget instance record */
|
2002-05-06 18:54:28 +00:00
|
|
|
typedef struct _XlwMenu_part
|
1994-05-06 17:28:42 +00:00
|
|
|
{
|
|
|
|
/* slots set by the resources */
|
2005-03-18 04:19:41 +00:00
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:33 +00:00
|
|
|
XFontSet fontSet;
|
2005-03-18 04:19:41 +00:00
|
|
|
XFontSetExtents *font_extents;
|
Lucid menus can now use Xft for fonts.
* xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
(parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
in current_font.
(init_gconf): Read value of SYSTEM_FONT and save it in current_font.
(Ffont_get_system_normal_font, xsettings_get_system_normal_font): New
functions.
(syms_of_xsettings): Initialize current_font. defsubr
Sfont_get_system_normal_font.
* xsettings.h (Ffont_get_system_normal_font,
xsettings_get_system_normal_font): Declare.
* xfns.c (extern xlwmenu_default_font): Remove.
(Fx_create_frame): Remove setting of xlwmenu_default_font, moved
to xlwmenu.c.
* menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
menu items in UTF-8.
* xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
(apply_systemfont_to_menu): New function.
(set_frame_menubar, create_and_show_popup_menu): Call
apply_systemfont_to_menu.
* xlwmenu.c (xlwmenu_default_font): Make static.
(xlwMenuResources): Add XtNfaceName and XtNdefaultFace.
(string_width): Use XftTextExtentsUtf8 if HAVE_XFT.
(MENU_FONT_HEIGHT, MENU_FONT_ASCENT): Add versions for
HAVE_XFT.
(size_menu): Set max_rest_width in window_state structure.
(display_menu_item): If HAVE_XFT and xft_draw is set, use
XftDrawRect and XftDrawStringUtf8 to draw text.
(make_windows_if_needed): Set max_rest_width and xft_draw
in windows[i].
(openXftFont): New.
(XlwMenuInitialize): Call openXftFont if HAVE_XFT. If mw->menu.font
is not set, load font fixed and save it in xlwmenu_default_font.
(XlwMenuInitialize): Set max_rest_width and xft_draw in windows[0].
(XlwMenuClassInitialize): Initialize xlwmenu_default_font.
(XlwMenuRealize): Set xft_fg, xft_bg, xft_disabled_fg and
windows[0].xft_draw if xft_font is set.
(XlwMenuDestroy): Destroy all xft_draw and close xft_font.
(facename_changed): New.
(XlwMenuSetValues): Call facename_changed. If face name did change,
close old fonts and destroy xft_draw:s. Then create new ones.
* xlwmenu.h (XtNfaceName, XtCFaceName, XtNdefaultFace,
XtCDefaultFace): New.
* xlwmenuP.h (_window_state): Add max_rest_width and xft_draw.
(_XlwMenu_part): Add faceName,xft_fg, xft_bg, xft_disabled_fg and
xft_font.
* xresources.texi (Lucid Resources): Mention faceName to set Xft fonts.
2010-04-08 16:20:32 +00:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_XFT
|
|
|
|
String faceName;
|
|
|
|
int default_face;
|
|
|
|
XftFont* xft_font;
|
|
|
|
XftColor xft_fg, xft_bg, xft_disabled_fg;
|
2005-03-18 04:19:41 +00:00
|
|
|
#endif
|
2005-04-01 18:42:33 +00:00
|
|
|
XFontStruct* font;
|
1994-05-06 17:29:23 +00:00
|
|
|
Pixel foreground;
|
2002-05-06 18:54:28 +00:00
|
|
|
Pixel disabled_foreground;
|
1994-05-06 17:28:42 +00:00
|
|
|
Pixel button_foreground;
|
|
|
|
Dimension margin;
|
|
|
|
Dimension horizontal_spacing;
|
|
|
|
Dimension vertical_spacing;
|
|
|
|
Dimension arrow_spacing;
|
|
|
|
Dimension shadow_thickness;
|
|
|
|
Pixel top_shadow_color;
|
|
|
|
Pixel bottom_shadow_color;
|
|
|
|
Pixmap top_shadow_pixmap;
|
|
|
|
Pixmap bottom_shadow_pixmap;
|
1994-05-06 17:29:23 +00:00
|
|
|
Cursor cursor_shape;
|
1994-05-06 17:28:42 +00:00
|
|
|
XtCallbackList open;
|
2000-01-17 09:11:23 +00:00
|
|
|
XtCallbackList select, highlight;
|
2007-01-01 15:19:58 +00:00
|
|
|
XtCallbackList enter, leave;
|
1994-05-06 17:28:42 +00:00
|
|
|
widget_value* contents;
|
|
|
|
int horizontal;
|
2000-06-16 18:33:58 +00:00
|
|
|
|
|
|
|
/* True means top_shadow_color and/or bottom_shadow_color must be freed. */
|
|
|
|
unsigned free_top_shadow_color_p : 1;
|
|
|
|
unsigned free_bottom_shadow_color_p : 1;
|
2002-05-06 18:54:28 +00:00
|
|
|
|
1994-05-06 17:28:42 +00:00
|
|
|
/* State of the XlwMenu */
|
2004-01-12 01:45:22 +00:00
|
|
|
int top_depth;
|
1994-05-06 17:28:42 +00:00
|
|
|
int old_depth;
|
|
|
|
widget_value** old_stack;
|
|
|
|
int old_stack_length;
|
2007-01-01 15:19:58 +00:00
|
|
|
widget_value* inside_entry;
|
1994-05-06 17:28:42 +00:00
|
|
|
|
|
|
|
/* New state after the user moved */
|
|
|
|
int new_depth;
|
|
|
|
widget_value** new_stack;
|
|
|
|
int new_stack_length;
|
|
|
|
|
|
|
|
/* Window resources */
|
|
|
|
window_state* windows;
|
|
|
|
int windows_length;
|
|
|
|
|
|
|
|
/* Internal part, set by the XlwMenu */
|
|
|
|
GC foreground_gc;
|
|
|
|
GC button_gc;
|
|
|
|
GC background_gc;
|
2002-05-06 18:54:28 +00:00
|
|
|
GC disabled_gc;
|
1994-05-06 17:28:42 +00:00
|
|
|
GC inactive_button_gc;
|
|
|
|
GC shadow_top_gc;
|
|
|
|
GC shadow_bottom_gc;
|
|
|
|
Cursor cursor;
|
|
|
|
Boolean popped_up;
|
|
|
|
Pixmap gray_pixmap;
|
|
|
|
} XlwMenuPart;
|
|
|
|
|
|
|
|
/* Full instance record declaration */
|
2002-05-06 18:54:28 +00:00
|
|
|
typedef struct _XlwMenuRec
|
1994-05-06 17:28:42 +00:00
|
|
|
{
|
|
|
|
CorePart core;
|
|
|
|
XlwMenuPart menu;
|
|
|
|
} XlwMenuRec;
|
|
|
|
|
|
|
|
/* New fields for the XlwMenu widget class record */
|
2002-05-06 18:54:28 +00:00
|
|
|
typedef struct
|
1994-05-06 17:28:42 +00:00
|
|
|
{
|
|
|
|
int dummy;
|
|
|
|
} XlwMenuClassPart;
|
|
|
|
|
|
|
|
/* Full class record declaration. */
|
2002-05-06 18:54:28 +00:00
|
|
|
typedef struct _XlwMenuClassRec
|
1994-05-06 17:28:42 +00:00
|
|
|
{
|
|
|
|
CoreClassPart core_class;
|
|
|
|
XlwMenuClassPart menu_class;
|
|
|
|
} XlwMenuClassRec;
|
|
|
|
|
|
|
|
/* Class pointer. */
|
|
|
|
extern XlwMenuClassRec xlwMenuClassRec;
|
|
|
|
|
|
|
|
#endif /* _XlwMenuP_h */
|
2003-09-01 15:45:59 +00:00
|
|
|
|