2000-09-28 20:30:52 +00:00
|
|
|
|
/* Implements a lightweight menubar widget.
|
2011-02-10 05:03:29 +00:00
|
|
|
|
|
2007-02-27 03:09:41 +00:00
|
|
|
|
Copyright (C) 1992 Lucid, Inc.
|
2019-01-01 00:59:58 +00:00
|
|
|
|
Copyright (C) 1994-1995, 1997, 1999-2019 Free Software Foundation, Inc.
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
This file is part of the Lucid Widget Library.
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
The Lucid Widget Library is free software; you can redistribute it and/or
|
1994-01-18 23:47:41 +00:00
|
|
|
|
modify it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
|
|
The Lucid Widget Library is distributed in the hope that it will be useful,
|
2000-09-28 20:30:52 +00:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
1994-01-18 23:47:41 +00:00
|
|
|
|
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
|
2017-09-13 22:52:52 +00:00
|
|
|
|
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* Created by devin@lucid.com */
|
|
|
|
|
|
Add support for large files, plus some locale improvements.
* dispatch.c, lwlib-Xaw.c, lwlib-Xlw.c, lwlib-Xm.c, lwlib.c, xlwmenu.c,
xrdb-cpp.c, xrdb.c:
Include <config.h> before any system include files.
* lwlib-Xm.c, lwlib.c:
Do not include <stdlib.h> or <string.h>, as <config.h> does this.
1999-10-19 07:21:16 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2009-10-19 04:27:09 +00:00
|
|
|
|
#include <setjmp.h>
|
2011-02-10 05:03:29 +00:00
|
|
|
|
#include <lisp.h>
|
2001-12-02 05:00:27 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
#include <X11/Xos.h>
|
|
|
|
|
#include <X11/IntrinsicP.h>
|
1994-09-24 00:12:06 +00:00
|
|
|
|
#include <X11/ObjectP.h>
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include <X11/StringDefs.h>
|
|
|
|
|
#include <X11/cursorfont.h>
|
2010-04-17 17:43:03 +00:00
|
|
|
|
#include <X11/Shell.h>
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#include "xlwmenuP.h"
|
2000-06-12 19:12:11 +00:00
|
|
|
|
|
2000-06-06 14:21:15 +00:00
|
|
|
|
#ifdef emacs
|
2000-07-19 15:49:28 +00:00
|
|
|
|
|
2011-02-10 05:03:29 +00:00
|
|
|
|
#include <xterm.h>
|
2012-05-31 05:08:37 +00:00
|
|
|
|
#include "bitmaps/gray.xbm"
|
2006-05-23 07:19:45 +00:00
|
|
|
|
|
2000-07-19 15:49:28 +00:00
|
|
|
|
#else /* not emacs */
|
|
|
|
|
|
|
|
|
|
#include <X11/bitmaps/gray>
|
|
|
|
|
|
|
|
|
|
#endif /* not emacs */
|
1994-09-17 12:53:30 +00:00
|
|
|
|
|
|
|
|
|
static int pointer_grabbed;
|
|
|
|
|
static XEvent menu_post_event;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static char
|
|
|
|
|
xlwMenuTranslations [] =
|
1995-12-31 19:15:18 +00:00
|
|
|
|
"<BtnDown>: start()\n\
|
|
|
|
|
<Motion>: drag()\n\
|
|
|
|
|
<BtnUp>: select()\n\
|
|
|
|
|
<Key>Shift_L: nothing()\n\
|
|
|
|
|
<Key>Shift_R: nothing()\n\
|
|
|
|
|
<Key>Meta_L: nothing()\n\
|
|
|
|
|
<Key>Meta_R: nothing()\n\
|
|
|
|
|
<Key>Control_L: nothing()\n\
|
|
|
|
|
<Key>Control_R: nothing()\n\
|
|
|
|
|
<Key>Hyper_L: nothing()\n\
|
|
|
|
|
<Key>Hyper_R: nothing()\n\
|
|
|
|
|
<Key>Super_L: nothing()\n\
|
|
|
|
|
<Key>Super_R: nothing()\n\
|
|
|
|
|
<Key>Alt_L: nothing()\n\
|
|
|
|
|
<Key>Alt_R: nothing()\n\
|
|
|
|
|
<Key>Caps_Lock: nothing()\n\
|
|
|
|
|
<Key>Shift_Lock: nothing()\n\
|
|
|
|
|
<KeyUp>Shift_L: nothing()\n\
|
|
|
|
|
<KeyUp>Shift_R: nothing()\n\
|
|
|
|
|
<KeyUp>Meta_L: nothing()\n\
|
|
|
|
|
<KeyUp>Meta_R: nothing()\n\
|
|
|
|
|
<KeyUp>Control_L: nothing()\n\
|
|
|
|
|
<KeyUp>Control_R: nothing()\n\
|
|
|
|
|
<KeyUp>Hyper_L: nothing()\n\
|
|
|
|
|
<KeyUp>Hyper_R: nothing()\n\
|
|
|
|
|
<KeyUp>Super_L: nothing()\n\
|
|
|
|
|
<KeyUp>Super_R: nothing()\n\
|
|
|
|
|
<KeyUp>Alt_L: nothing()\n\
|
|
|
|
|
<KeyUp>Alt_R: nothing()\n\
|
|
|
|
|
<KeyUp>Caps_Lock: nothing()\n\
|
|
|
|
|
<KeyUp>Shift_Lock:nothing()\n\
|
2002-04-19 18:56:51 +00:00
|
|
|
|
<Key>Return: select()\n\
|
|
|
|
|
<Key>Down: down()\n\
|
|
|
|
|
<Key>Up: up()\n\
|
|
|
|
|
<Key>Left: left()\n\
|
|
|
|
|
<Key>Right: right()\n\
|
1995-12-31 19:15:18 +00:00
|
|
|
|
<Key>: key()\n\
|
|
|
|
|
<KeyUp>: key()\n\
|
1994-01-18 23:47:41 +00:00
|
|
|
|
";
|
|
|
|
|
|
2011-11-20 07:30:16 +00:00
|
|
|
|
/* FIXME: Space should toggle togglable menu item but not remove the menu
|
2002-04-19 18:56:51 +00:00
|
|
|
|
so you can toggle the next one without entering the menu again. */
|
|
|
|
|
|
|
|
|
|
/* FIXME: Should ESC close one level of menu structure or the complete menu? */
|
|
|
|
|
|
2002-04-29 09:10:28 +00:00
|
|
|
|
/* FIXME: F10 should enter the menu, the first one in the menu-bar. */
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
2015-04-14 07:58:07 +00:00
|
|
|
|
#define offset(field) offsetof (XlwMenuRec, field)
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static XtResource
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xlwMenuResources[] =
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
{XtNfontSet, XtCFontSet, XtRFontSet, sizeof(XFontSet),
|
|
|
|
|
offset(menu.fontSet), XtRFontSet, NULL},
|
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
|
2011-02-14 17:21:10 +00:00
|
|
|
|
#define DEFAULT_FONTNAME "Sans-10"
|
|
|
|
|
#else
|
|
|
|
|
#define DEFAULT_FONTNAME "XtDefaultFont"
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#endif
|
2011-02-14 17:21:10 +00:00
|
|
|
|
{XtNfont, XtCFont, XtRString, sizeof(String),
|
|
|
|
|
offset(menu.fontName), XtRString, DEFAULT_FONTNAME },
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNforeground, XtCForeground, XtRPixel, sizeof(Pixel),
|
|
|
|
|
offset(menu.foreground), XtRString, "XtDefaultForeground"},
|
2002-05-06 18:56:25 +00:00
|
|
|
|
{XtNdisabledForeground, XtCDisabledForeground, XtRPixel, sizeof(Pixel),
|
|
|
|
|
offset(menu.disabled_foreground), XtRString, (XtPointer)NULL},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNbuttonForeground, XtCButtonForeground, XtRPixel, sizeof(Pixel),
|
|
|
|
|
offset(menu.button_foreground), XtRString, "XtDefaultForeground"},
|
|
|
|
|
{XtNmargin, XtCMargin, XtRDimension, sizeof(Dimension),
|
2002-04-29 09:10:28 +00:00
|
|
|
|
offset(menu.margin), XtRImmediate, (XtPointer)1},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNhorizontalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
|
|
|
|
|
offset(menu.horizontal_spacing), XtRImmediate, (XtPointer)3},
|
|
|
|
|
{XtNverticalSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
|
2002-04-29 09:10:28 +00:00
|
|
|
|
offset(menu.vertical_spacing), XtRImmediate, (XtPointer)2},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNarrowSpacing, XtCMargin, XtRDimension, sizeof(Dimension),
|
|
|
|
|
offset(menu.arrow_spacing), XtRImmediate, (XtPointer)10},
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
{XmNshadowThickness, XmCShadowThickness, XtRDimension,
|
1994-01-18 23:47:41 +00:00
|
|
|
|
sizeof (Dimension), offset (menu.shadow_thickness),
|
2002-04-29 09:10:28 +00:00
|
|
|
|
XtRImmediate, (XtPointer)1},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XmNtopShadowColor, XmCTopShadowColor, XtRPixel, sizeof (Pixel),
|
|
|
|
|
offset (menu.top_shadow_color), XtRImmediate, (XtPointer)-1},
|
|
|
|
|
{XmNbottomShadowColor, XmCBottomShadowColor, XtRPixel, sizeof (Pixel),
|
|
|
|
|
offset (menu.bottom_shadow_color), XtRImmediate, (XtPointer)-1},
|
|
|
|
|
{XmNtopShadowPixmap, XmCTopShadowPixmap, XtRPixmap, sizeof (Pixmap),
|
|
|
|
|
offset (menu.top_shadow_pixmap), XtRImmediate, (XtPointer)None},
|
|
|
|
|
{XmNbottomShadowPixmap, XmCBottomShadowPixmap, XtRPixmap, sizeof (Pixmap),
|
|
|
|
|
offset (menu.bottom_shadow_pixmap), XtRImmediate, (XtPointer)None},
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{XtNopen, XtCCallback, XtRCallback, sizeof(XtPointer),
|
1994-01-18 23:47:41 +00:00
|
|
|
|
offset(menu.open), XtRCallback, (XtPointer)NULL},
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{XtNselect, XtCCallback, XtRCallback, sizeof(XtPointer),
|
1994-01-18 23:47:41 +00:00
|
|
|
|
offset(menu.select), XtRCallback, (XtPointer)NULL},
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{XtNhighlightCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
|
2000-01-17 09:10:58 +00:00
|
|
|
|
offset(menu.highlight), XtRCallback, (XtPointer)NULL},
|
2007-01-01 15:20:11 +00:00
|
|
|
|
{XtNenterCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
|
|
|
|
|
offset(menu.enter), XtRCallback, (XtPointer)NULL},
|
|
|
|
|
{XtNleaveCallback, XtCCallback, XtRCallback, sizeof(XtPointer),
|
|
|
|
|
offset(menu.leave), XtRCallback, (XtPointer)NULL},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{XtNmenu, XtCMenu, XtRPointer, sizeof(XtPointer),
|
|
|
|
|
offset(menu.contents), XtRImmediate, (XtPointer)NULL},
|
|
|
|
|
{XtNcursor, XtCCursor, XtRCursor, sizeof(Cursor),
|
|
|
|
|
offset(menu.cursor_shape), XtRString, (XtPointer)"right_ptr"},
|
|
|
|
|
{XtNhorizontal, XtCHorizontal, XtRInt, sizeof(int),
|
|
|
|
|
offset(menu.horizontal), XtRImmediate, (XtPointer)True},
|
|
|
|
|
};
|
|
|
|
|
#undef offset
|
|
|
|
|
|
Fix some bad prototypes and formatting after conversion from K&R declaration.
* lwlib/lwlib-Xaw.c: Include <ctype.h> for isdigit.
(fill_xft_data, set_text): Remove unused variable screen.
(draw_text): Cast bp to FcChar8*.
(find_xft_data): Return 0 if inst or xft_data is not set.
(wm_delete_window): Correct prototype. Initialize widget to 0
and return if widget is still 0 after loop.
* lwlib/xlwmenu.c (XlwMenuSetValues, XlwMenuInitialize): Correct prototype.
(display_menu_item): Remove unused variable gi.
(make_windows_if_needed): Remove unused variable screen.
(XlwMenuRedisplay): Remove unused variable i.
* src/gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
(xg_get_image_for_pixmap, create_dialog)
(xg_get_file_with_selection, xg_get_file_name, update_cl_data)
(menuitem_highlight_callback, make_menu_item)
(xg_create_one_menuitem, create_menus, xg_update_menu_item)
(xg_create_scroll_bar, xg_update_scrollbar_pos)
(xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
(xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
(xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
(xg_tool_bar_item_expose_callback): Reformat prototype.
(xg_update_menubar): GList *group => GSList *group.
(xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
before use.
(update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
to GTK_IMAGE (wimage).
* src/xsettings.c (something_changedCB, parse_settings)
(apply_xft_settings): Reformat prototype.
(something_changedCB, init_gconf): Remove unused variable i.
(read_settings): Remove unused variable long_len.
* src/xsmfns.c (SSDATA): New macro.
(smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
passed to strlen/strcpy/strcat.
(create_client_leader_window): Surround with #ifndef USE_GTK. Cast
7:th arg to XChangeProperty to (unsigned char *)
2010-07-05 09:17:12 +00:00
|
|
|
|
static Boolean XlwMenuSetValues(Widget current, Widget request, Widget new,
|
|
|
|
|
ArgList args, Cardinal *num_args);
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
static void XlwMenuRealize(Widget, Mask *, XSetWindowAttributes *);
|
2010-07-04 05:47:55 +00:00
|
|
|
|
static void XlwMenuResize(Widget w);
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
static void XlwMenuInitialize(Widget, Widget, ArgList, Cardinal *);
|
2010-07-04 05:47:55 +00:00
|
|
|
|
static void XlwMenuRedisplay(Widget w, XEvent *ev, Region region);
|
|
|
|
|
static void XlwMenuDestroy(Widget w);
|
|
|
|
|
static void XlwMenuClassInitialize(void);
|
|
|
|
|
static void Start(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Drag(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Down(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Up(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Left(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Right(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Select(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Key(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
|
|
|
|
static void Nothing(Widget w, XEvent *ev, String *params, Cardinal *num_params);
|
2010-07-02 12:19:53 +00:00
|
|
|
|
static int separator_height (enum menu_separator);
|
|
|
|
|
static void pop_up_menu (XlwMenuWidget, XButtonPressedEvent *);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static XtActionsRec
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xlwMenuActionsList [] =
|
|
|
|
|
{
|
|
|
|
|
{"start", Start},
|
|
|
|
|
{"drag", Drag},
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{"down", Down},
|
|
|
|
|
{"up", Up},
|
|
|
|
|
{"left", Left},
|
|
|
|
|
{"right", Right},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{"select", Select},
|
1995-12-31 19:15:18 +00:00
|
|
|
|
{"key", Key},
|
2004-12-27 15:22:36 +00:00
|
|
|
|
{"MenuGadgetEscape", Key}, /* Compatibility with Lesstif/Motif. */
|
1995-12-31 19:15:18 +00:00
|
|
|
|
{"nothing", Nothing},
|
1994-01-18 23:47:41 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define SuperClass ((CoreWidgetClass)&coreClassRec)
|
|
|
|
|
|
|
|
|
|
XlwMenuClassRec xlwMenuClassRec =
|
|
|
|
|
{
|
|
|
|
|
{ /* CoreClass fields initialization */
|
2000-09-28 20:30:52 +00:00
|
|
|
|
(WidgetClass) SuperClass, /* superclass */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
"XlwMenu", /* class_name */
|
|
|
|
|
sizeof(XlwMenuRec), /* size */
|
|
|
|
|
XlwMenuClassInitialize, /* class_initialize */
|
|
|
|
|
NULL, /* class_part_initialize */
|
|
|
|
|
FALSE, /* class_inited */
|
|
|
|
|
XlwMenuInitialize, /* initialize */
|
|
|
|
|
NULL, /* initialize_hook */
|
|
|
|
|
XlwMenuRealize, /* realize */
|
|
|
|
|
xlwMenuActionsList, /* actions */
|
|
|
|
|
XtNumber(xlwMenuActionsList), /* num_actions */
|
|
|
|
|
xlwMenuResources, /* resources */
|
|
|
|
|
XtNumber(xlwMenuResources), /* resource_count */
|
|
|
|
|
NULLQUARK, /* xrm_class */
|
|
|
|
|
TRUE, /* compress_motion */
|
2005-03-18 04:19:41 +00:00
|
|
|
|
XtExposeCompressMaximal, /* compress_exposure */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
TRUE, /* compress_enterleave */
|
|
|
|
|
FALSE, /* visible_interest */
|
|
|
|
|
XlwMenuDestroy, /* destroy */
|
|
|
|
|
XlwMenuResize, /* resize */
|
|
|
|
|
XlwMenuRedisplay, /* expose */
|
|
|
|
|
XlwMenuSetValues, /* set_values */
|
|
|
|
|
NULL, /* set_values_hook */
|
|
|
|
|
XtInheritSetValuesAlmost, /* set_values_almost */
|
|
|
|
|
NULL, /* get_values_hook */
|
|
|
|
|
NULL, /* accept_focus */
|
|
|
|
|
XtVersion, /* version */
|
|
|
|
|
NULL, /* callback_private */
|
|
|
|
|
xlwMenuTranslations, /* tm_table */
|
|
|
|
|
XtInheritQueryGeometry, /* query_geometry */
|
|
|
|
|
XtInheritDisplayAccelerator, /* display_accelerator */
|
|
|
|
|
NULL /* extension */
|
|
|
|
|
}, /* XlwMenuClass fields initialization */
|
|
|
|
|
{
|
|
|
|
|
0 /* dummy */
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
WidgetClass xlwMenuWidgetClass = (WidgetClass) &xlwMenuClassRec;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
int submenu_destroyed;
|
|
|
|
|
|
2002-04-28 19:54:30 +00:00
|
|
|
|
/* For debug, if installation-directory is non-nil this is not an installed
|
|
|
|
|
Emacs. In that case we do not grab the keyboard to make it easier to
|
|
|
|
|
debug. */
|
|
|
|
|
#define GRAB_KEYBOARD (EQ (Vinstallation_directory, Qnil))
|
2002-04-22 18:21:06 +00:00
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
static int next_release_must_exit;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Utilities */
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2002-04-22 18:21:06 +00:00
|
|
|
|
/* Ungrab pointer and keyboard */
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
ungrab_all (Widget w, Time ungrabtime)
|
2002-04-22 18:21:06 +00:00
|
|
|
|
{
|
|
|
|
|
XtUngrabPointer (w, ungrabtime);
|
2002-04-28 19:54:30 +00:00
|
|
|
|
if (GRAB_KEYBOARD) XtUngrabKeyboard (w, ungrabtime);
|
2002-04-22 18:21:06 +00:00
|
|
|
|
}
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
/* Like abort, but remove grabs from widget W before. */
|
|
|
|
|
|
2012-06-24 17:39:14 +00:00
|
|
|
|
static _Noreturn void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
abort_gracefully (Widget w)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
if (XtIsShell (XtParent (w)))
|
|
|
|
|
XtRemoveGrab (w);
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all (w, CurrentTime);
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
1999-07-21 21:43:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
push_new_stack (XlwMenuWidget mw, widget_value *val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!mw->menu.new_stack)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.new_stack_length = 10;
|
|
|
|
|
mw->menu.new_stack =
|
|
|
|
|
(widget_value**)XtCalloc (mw->menu.new_stack_length,
|
|
|
|
|
sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
else if (mw->menu.new_depth == mw->menu.new_stack_length)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.new_stack_length *= 2;
|
|
|
|
|
mw->menu.new_stack =
|
|
|
|
|
(widget_value**)XtRealloc ((char*)mw->menu.new_stack,
|
|
|
|
|
mw->menu.new_stack_length * sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
mw->menu.new_stack [mw->menu.new_depth++] = val;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
pop_new_stack_if_no_contents (XlwMenuWidget mw)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2002-12-22 22:00:44 +00:00
|
|
|
|
if (mw->menu.new_depth > 1)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!mw->menu.new_stack [mw->menu.new_depth - 1]->contents)
|
|
|
|
|
mw->menu.new_depth -= 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
make_old_stack_space (XlwMenuWidget mw, int n)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!mw->menu.old_stack)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.old_stack_length = 10;
|
|
|
|
|
mw->menu.old_stack =
|
|
|
|
|
(widget_value**)XtCalloc (mw->menu.old_stack_length,
|
|
|
|
|
sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
else if (mw->menu.old_stack_length < n)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.old_stack_length *= 2;
|
|
|
|
|
mw->menu.old_stack =
|
|
|
|
|
(widget_value**)XtRealloc ((char*)mw->menu.old_stack,
|
|
|
|
|
mw->menu.old_stack_length * sizeof (widget_value*));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Size code */
|
2006-05-23 07:19:45 +00:00
|
|
|
|
static int
|
2010-07-04 05:47:55 +00:00
|
|
|
|
string_width (XlwMenuWidget mw, char *s)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XCharStruct xcs;
|
|
|
|
|
int drop;
|
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
|
|
|
|
|
if (mw->menu.xft_font)
|
|
|
|
|
{
|
|
|
|
|
XGlyphInfo gi;
|
|
|
|
|
XftTextExtentsUtf8 (XtDisplay (mw), mw->menu.xft_font,
|
|
|
|
|
(FcChar8 *) s,
|
|
|
|
|
strlen (s), &gi);
|
2019-04-21 02:39:06 +00:00
|
|
|
|
return gi.xOff;
|
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
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
if (mw->menu.fontSet)
|
|
|
|
|
{
|
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
|
|
|
|
XRectangle ink, logical;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
XmbTextExtents (mw->menu.fontSet, s, strlen (s), &ink, &logical);
|
|
|
|
|
return logical.width;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XTextExtents (mw->menu.font, s, strlen (s), &drop, &drop, &drop, &xcs);
|
|
|
|
|
return xcs.width;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
#define MENU_FONT_HEIGHT(mw) \
|
|
|
|
|
((mw)->menu.xft_font != NULL \
|
|
|
|
|
? (mw)->menu.xft_font->height \
|
|
|
|
|
: ((mw)->menu.fontSet != NULL \
|
|
|
|
|
? (mw)->menu.font_extents->max_logical_extent.height \
|
|
|
|
|
: (mw)->menu.font->ascent + (mw)->menu.font->descent))
|
|
|
|
|
#define MENU_FONT_ASCENT(mw) \
|
|
|
|
|
((mw)->menu.xft_font != NULL \
|
|
|
|
|
? (mw)->menu.xft_font->ascent \
|
|
|
|
|
: ((mw)->menu.fontSet != NULL \
|
|
|
|
|
? - (mw)->menu.font_extents->max_logical_extent.y \
|
|
|
|
|
: (mw)->menu.font->ascent))
|
|
|
|
|
#else
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
#define MENU_FONT_HEIGHT(mw) \
|
2005-04-01 18:42:19 +00:00
|
|
|
|
((mw)->menu.fontSet != NULL \
|
|
|
|
|
? (mw)->menu.font_extents->max_logical_extent.height \
|
|
|
|
|
: (mw)->menu.font->ascent + (mw)->menu.font->descent)
|
2005-03-18 05:19:59 +00:00
|
|
|
|
#define MENU_FONT_ASCENT(mw) \
|
2005-04-01 18:42:19 +00:00
|
|
|
|
((mw)->menu.fontSet != NULL \
|
|
|
|
|
? - (mw)->menu.font_extents->max_logical_extent.y \
|
|
|
|
|
: (mw)->menu.font->ascent)
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#else
|
|
|
|
|
#define MENU_FONT_HEIGHT(mw) \
|
|
|
|
|
((mw)->menu.font->ascent + (mw)->menu.font->descent)
|
|
|
|
|
#define MENU_FONT_ASCENT(mw) ((mw)->menu.font->ascent)
|
|
|
|
|
#endif
|
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
|
2005-03-18 04:19:41 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static int
|
2010-07-04 05:47:55 +00:00
|
|
|
|
arrow_width (XlwMenuWidget mw)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
return (MENU_FONT_ASCENT (mw) * 3/4) | 1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Return the width of toggle buttons of widget MW. */
|
|
|
|
|
|
|
|
|
|
static int
|
2010-07-04 05:47:55 +00:00
|
|
|
|
toggle_button_width (XlwMenuWidget mw)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
return (MENU_FONT_HEIGHT (mw) * 2 / 3) | 1;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Return the width of radio buttons of widget MW. */
|
|
|
|
|
|
|
|
|
|
static int
|
2010-07-04 05:47:55 +00:00
|
|
|
|
radio_button_width (XlwMenuWidget mw)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
return toggle_button_width (mw) * 1.41;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static XtResource
|
|
|
|
|
nameResource[] =
|
2000-09-28 20:30:52 +00:00
|
|
|
|
{
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{"labelString", "LabelString", XtRString, sizeof(String),
|
|
|
|
|
0, XtRImmediate, 0},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static char*
|
2010-07-04 05:47:55 +00:00
|
|
|
|
resource_widget_value (XlwMenuWidget mw, widget_value *val)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (!val->toolkit_data)
|
|
|
|
|
{
|
|
|
|
|
char* resourced_name = NULL;
|
|
|
|
|
char* complete_name;
|
|
|
|
|
XtGetSubresources ((Widget) mw,
|
|
|
|
|
(XtPointer) &resourced_name,
|
|
|
|
|
val->name, val->name,
|
|
|
|
|
nameResource, 1, NULL, 0);
|
|
|
|
|
if (!resourced_name)
|
|
|
|
|
resourced_name = val->name;
|
|
|
|
|
if (!val->value)
|
1994-01-21 16:52:12 +00:00
|
|
|
|
{
|
|
|
|
|
complete_name = (char *) XtMalloc (strlen (resourced_name) + 1);
|
|
|
|
|
strcpy (complete_name, resourced_name);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
int complete_length =
|
|
|
|
|
strlen (resourced_name) + strlen (val->value) + 2;
|
|
|
|
|
complete_name = XtMalloc (complete_length);
|
Prefer stpcpy to strcat
* admin/merge-gnulib (GNULIB_MODULES): Add stpcpy.
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
* lib/stpcpy.c, m4/stpcpy.m4: New files, from gnulib.
* lib-src/ebrowse.c (sym_scope_1, operator_name, open_file):
* lib-src/emacsclient.c (get_server_config, set_local_socket)
(start_daemon_and_retry_set_socket):
* lib-src/etags.c (main, C_entries, relative_filename):
* lib-src/pop.c (sendline):
* lib-src/update-game-score.c (main):
* lwlib/xlwmenu.c (resource_widget_value):
* src/callproc.c (child_setup):
* src/dbusbind.c (xd_signature_cat):
* src/doc.c (get_doc_string, Fsnarf_documentation):
* src/editfns.c (Fuser_full_name):
* src/frame.c (xrdb_get_resource):
* src/gtkutil.c (xg_get_file_with_chooser):
* src/tparam.c (tparam1):
* src/xfns.c (xic_create_fontsetname):
* src/xrdb.c (gethomedir, get_user_db, get_environ_db):
* src/xsmfns.c (smc_save_yourself_CB):
Rewrite to avoid the need for strcat, typically by using stpcpy
and/or lispstpcpy. strcat tends to be part of O(N**2) algorithms.
* src/doc.c (sibling_etc):
* src/xrdb.c (xdefaults):
Now a top-level static constant.
2014-12-25 12:19:17 +00:00
|
|
|
|
char *z = stpcpy (complete_name, resourced_name);
|
|
|
|
|
*z++ = ' ';
|
|
|
|
|
strcpy (z, val->value);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val->toolkit_data = complete_name;
|
|
|
|
|
val->free_toolkit_data = True;
|
|
|
|
|
}
|
|
|
|
|
return (char*)val->toolkit_data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns the sizes of an item */
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
size_menu_item (XlwMenuWidget mw,
|
|
|
|
|
widget_value* val,
|
|
|
|
|
int horizontal_p,
|
|
|
|
|
int* label_width,
|
|
|
|
|
int* rest_width,
|
|
|
|
|
int* button_width,
|
|
|
|
|
int* height)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
enum menu_separator separator;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (lw_separator_p (val->name, &separator, 0))
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
*height = separator_height (separator);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*label_width = 1;
|
|
|
|
|
*rest_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
*button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2005-03-18 04:19:41 +00:00
|
|
|
|
*height = MENU_FONT_HEIGHT (mw)
|
|
|
|
|
+ 2 * mw->menu.vertical_spacing + 2 * mw->menu.shadow_thickness;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*label_width =
|
|
|
|
|
string_width (mw, resource_widget_value (mw, val))
|
|
|
|
|
+ mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*rest_width = mw->menu.horizontal_spacing + mw->menu.shadow_thickness;
|
|
|
|
|
if (!horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
if (val->contents)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Add width of the arrow displayed for submenus. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
*rest_width += arrow_width (mw) + mw->menu.arrow_spacing;
|
|
|
|
|
else if (val->key)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
/* Add width of key equivalent string. */
|
|
|
|
|
*rest_width += (string_width (mw, val->key)
|
|
|
|
|
+ mw->menu.arrow_spacing);
|
|
|
|
|
|
|
|
|
|
if (val->button_type == BUTTON_TYPE_TOGGLE)
|
|
|
|
|
*button_width = (toggle_button_width (mw)
|
|
|
|
|
+ mw->menu.horizontal_spacing);
|
|
|
|
|
else if (val->button_type == BUTTON_TYPE_RADIO)
|
|
|
|
|
*button_width = (radio_button_width (mw)
|
|
|
|
|
+ mw->menu.horizontal_spacing);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
size_menu (XlwMenuWidget mw, int level)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
int label_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int rest_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int max_rest_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int max_button_width = 0;
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
int height = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int horizontal_p = mw->menu.horizontal && (level == 0);
|
|
|
|
|
widget_value* val;
|
|
|
|
|
window_state* ws;
|
|
|
|
|
|
|
|
|
|
if (level >= mw->menu.old_depth)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
abort_gracefully ((Widget) mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
ws = &mw->menu.windows [level];
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ws->width = 0;
|
|
|
|
|
ws->height = 0;
|
|
|
|
|
ws->label_width = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
|
|
|
|
|
{
|
|
|
|
|
size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
&button_width, &height);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
ws->width += label_width + rest_width;
|
|
|
|
|
if (height > ws->height)
|
|
|
|
|
ws->height = height;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (label_width > ws->label_width)
|
|
|
|
|
ws->label_width = label_width;
|
|
|
|
|
if (rest_width > max_rest_width)
|
|
|
|
|
max_rest_width = rest_width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (button_width > max_button_width)
|
|
|
|
|
max_button_width = button_width;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
ws->height += height;
|
|
|
|
|
}
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (horizontal_p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->label_width = ws->button_width = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
ws->width = ws->label_width + max_rest_width + max_button_width;
|
|
|
|
|
ws->button_width = max_button_width;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
ws->width += 2 * mw->menu.shadow_thickness;
|
|
|
|
|
ws->height += 2 * mw->menu.shadow_thickness;
|
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
|
|
|
|
ws->max_rest_width = max_rest_width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
ws->width += 2 * mw->menu.margin;
|
|
|
|
|
ws->height += 2 * mw->menu.margin;
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Display code */
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
draw_arrow (XlwMenuWidget mw,
|
|
|
|
|
Window window,
|
|
|
|
|
GC gc,
|
|
|
|
|
int x,
|
|
|
|
|
int y,
|
|
|
|
|
int width,
|
|
|
|
|
int down_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
GC top_gc = mw->menu.shadow_top_gc;
|
|
|
|
|
GC bottom_gc = mw->menu.shadow_bottom_gc;
|
|
|
|
|
int thickness = mw->menu.shadow_thickness;
|
|
|
|
|
int height = width;
|
|
|
|
|
XPoint pt[10];
|
|
|
|
|
/* alpha = atan (0.5)
|
|
|
|
|
factor = (1 + sin (alpha)) / cos (alpha) */
|
|
|
|
|
double factor = 1.62;
|
|
|
|
|
int thickness2 = thickness * factor;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
2005-03-18 04:19:41 +00:00
|
|
|
|
y += (MENU_FONT_HEIGHT (mw) - height) / 2;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (down_p)
|
|
|
|
|
{
|
|
|
|
|
GC temp;
|
|
|
|
|
temp = top_gc;
|
|
|
|
|
top_gc = bottom_gc;
|
|
|
|
|
bottom_gc = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pt[0].x = x;
|
|
|
|
|
pt[0].y = y + height;
|
|
|
|
|
pt[1].x = x + thickness;
|
|
|
|
|
pt[1].y = y + height - thickness2;
|
|
|
|
|
pt[2].x = x + thickness2;
|
|
|
|
|
pt[2].y = y + thickness2;
|
|
|
|
|
pt[3].x = x;
|
|
|
|
|
pt[3].y = y;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
pt[0].x = x;
|
|
|
|
|
pt[0].y = y;
|
|
|
|
|
pt[1].x = x + thickness;
|
|
|
|
|
pt[1].y = y + thickness2;
|
|
|
|
|
pt[2].x = x + width - thickness2;
|
|
|
|
|
pt[2].y = y + height / 2;
|
|
|
|
|
pt[3].x = x + width;
|
|
|
|
|
pt[3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, pt, 4, Convex, CoordModeOrigin);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
pt[0].x = x;
|
|
|
|
|
pt[0].y = y + height;
|
|
|
|
|
pt[1].x = x + thickness;
|
|
|
|
|
pt[1].y = y + height - thickness2;
|
|
|
|
|
pt[2].x = x + width - thickness2;
|
|
|
|
|
pt[2].y = y + height / 2;
|
|
|
|
|
pt[3].x = x + width;
|
|
|
|
|
pt[3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, pt, 4, Convex, CoordModeOrigin);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
draw_shadow_rectangle (XlwMenuWidget mw,
|
|
|
|
|
Window window,
|
|
|
|
|
int x,
|
|
|
|
|
int y,
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
int erase_p,
|
|
|
|
|
int down_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
|
|
|
|
|
GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
|
|
|
|
|
int thickness = mw->menu.shadow_thickness;
|
|
|
|
|
XPoint points [4];
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
if (!erase_p && down_p)
|
|
|
|
|
{
|
|
|
|
|
GC temp;
|
|
|
|
|
temp = top_gc;
|
|
|
|
|
top_gc = bottom_gc;
|
|
|
|
|
bottom_gc = temp;
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y;
|
|
|
|
|
points [1].x = x + width;
|
|
|
|
|
points [1].y = y;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + thickness;
|
|
|
|
|
points [3].x = x;
|
|
|
|
|
points [3].y = y + thickness;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + thickness;
|
|
|
|
|
points [1].x = x;
|
|
|
|
|
points [1].y = y + height;
|
|
|
|
|
points [2].x = x + thickness;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + thickness;
|
|
|
|
|
points [3].y = y + thickness;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x + width;
|
|
|
|
|
points [0].y = y;
|
|
|
|
|
points [1].x = x + width - thickness;
|
|
|
|
|
points [1].y = y + thickness;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + width;
|
|
|
|
|
points [3].y = y + height - thickness;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + height;
|
|
|
|
|
points [1].x = x + width;
|
|
|
|
|
points [1].y = y + height;
|
|
|
|
|
points [2].x = x + width;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + thickness;
|
|
|
|
|
points [3].y = y + height - thickness;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
draw_shadow_rhombus (XlwMenuWidget mw,
|
|
|
|
|
Window window,
|
|
|
|
|
int x,
|
|
|
|
|
int y,
|
|
|
|
|
int width,
|
|
|
|
|
int height,
|
|
|
|
|
int erase_p,
|
|
|
|
|
int down_p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
GC top_gc = !erase_p ? mw->menu.shadow_top_gc : mw->menu.background_gc;
|
|
|
|
|
GC bottom_gc = !erase_p ? mw->menu.shadow_bottom_gc : mw->menu.background_gc;
|
|
|
|
|
int thickness = mw->menu.shadow_thickness;
|
|
|
|
|
XPoint points [4];
|
|
|
|
|
|
|
|
|
|
if (!erase_p && down_p)
|
|
|
|
|
{
|
|
|
|
|
GC temp;
|
|
|
|
|
temp = top_gc;
|
|
|
|
|
top_gc = bottom_gc;
|
|
|
|
|
bottom_gc = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + height / 2;
|
|
|
|
|
points [1].x = x + thickness;
|
|
|
|
|
points [1].y = y + height / 2;
|
|
|
|
|
points [2].x = x + width / 2;
|
|
|
|
|
points [2].y = y + thickness;
|
|
|
|
|
points [3].x = x + width / 2;
|
|
|
|
|
points [3].y = y;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x + width / 2;
|
|
|
|
|
points [0].y = y;
|
|
|
|
|
points [1].x = x + width / 2;
|
|
|
|
|
points [1].y = y + thickness;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + height / 2;
|
|
|
|
|
points [3].x = x + width;
|
|
|
|
|
points [3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, top_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x;
|
|
|
|
|
points [0].y = y + height / 2;
|
|
|
|
|
points [1].x = x + thickness;
|
|
|
|
|
points [1].y = y + height / 2;
|
|
|
|
|
points [2].x = x + width / 2;
|
|
|
|
|
points [2].y = y + height - thickness;
|
|
|
|
|
points [3].x = x + width / 2;
|
|
|
|
|
points [3].y = y + height;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
points [0].x = x + width / 2;
|
|
|
|
|
points [0].y = y + height;
|
|
|
|
|
points [1].x = x + width / 2;
|
|
|
|
|
points [1].y = y + height - thickness;
|
|
|
|
|
points [2].x = x + width - thickness;
|
|
|
|
|
points [2].y = y + height / 2;
|
|
|
|
|
points [3].x = x + width;
|
|
|
|
|
points [3].y = y + height / 2;
|
|
|
|
|
XFillPolygon (dpy, window, bottom_gc, points, 4, Convex, CoordModeOrigin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Draw a toggle button on widget MW, X window WINDOW. X/Y is the
|
|
|
|
|
top-left corner of the menu item. SELECTED_P non-zero means the
|
|
|
|
|
toggle button is selected. */
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
draw_toggle (XlwMenuWidget mw, Window window, int x, int y, int selected_p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
|
|
width = toggle_button_width (mw);
|
|
|
|
|
height = width;
|
|
|
|
|
x += mw->menu.horizontal_spacing;
|
2005-03-18 04:19:41 +00:00
|
|
|
|
y += (MENU_FONT_ASCENT (mw) - height) / 2;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rectangle (mw, window, x, y, width, height, False, selected_p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Draw a radio button on widget MW, X window WINDOW. X/Y is the
|
|
|
|
|
top-left corner of the menu item. SELECTED_P non-zero means the
|
|
|
|
|
toggle button is selected. */
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
draw_radio (XlwMenuWidget mw, Window window, int x, int y, int selected_p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
int width, height;
|
|
|
|
|
|
|
|
|
|
width = radio_button_width (mw);
|
|
|
|
|
height = width;
|
|
|
|
|
x += mw->menu.horizontal_spacing;
|
2005-03-18 04:19:41 +00:00
|
|
|
|
y += (MENU_FONT_ASCENT (mw) - height) / 2;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
draw_shadow_rhombus (mw, window, x, y, width, height, False, selected_p);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Draw a menu separator on widget MW, X window WINDOW. X/Y is the
|
|
|
|
|
top-left corner of the menu item. WIDTH is the width of the
|
|
|
|
|
separator to draw. TYPE is the separator type. */
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
draw_separator (XlwMenuWidget mw,
|
|
|
|
|
Window window,
|
|
|
|
|
int x,
|
|
|
|
|
int y,
|
|
|
|
|
int width,
|
|
|
|
|
enum menu_separator type)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
Display *dpy = XtDisplay (mw);
|
|
|
|
|
XGCValues xgcv;
|
|
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case SEPARATOR_NO_LINE:
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SINGLE_LINE:
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.foreground_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_DOUBLE_LINE:
|
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SINGLE_LINE);
|
|
|
|
|
draw_separator (mw, window, x, y + 2, width, SEPARATOR_SINGLE_LINE);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SINGLE_DASHED_LINE:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.foreground_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.foreground_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_DOUBLE_DASHED_LINE:
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SINGLE_DASHED_LINE);
|
|
|
|
|
draw_separator (mw, window, x, y + 2, width,
|
|
|
|
|
SEPARATOR_SINGLE_DASHED_LINE);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN:
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_top_gc,
|
|
|
|
|
x, y + 1, x + width, y + 1);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT:
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_top_gc,
|
|
|
|
|
x, y, x + width, y);
|
|
|
|
|
XDrawLine (dpy, window, mw->menu.shadow_bottom_gc,
|
|
|
|
|
x, y + 1, x + width, y + 1);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
2000-12-11 14:33:47 +00:00
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
2000-12-11 14:33:47 +00:00
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_OUT);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
|
|
|
|
|
draw_separator (mw, window, x, y, width, SEPARATOR_SHADOW_ETCHED_IN);
|
|
|
|
|
draw_separator (mw, window, x, y + 3, width, SEPARATOR_SHADOW_ETCHED_IN);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SHADOW_ETCHED_OUT);
|
|
|
|
|
draw_separator (mw, window, x, y + 3, width,
|
|
|
|
|
SEPARATOR_SHADOW_ETCHED_OUT);
|
|
|
|
|
break;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SHADOW_DOUBLE_ETCHED_IN);
|
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
|
|
|
|
|
xgcv.line_style = LineOnOffDash;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
draw_separator (mw, window, x, y, width,
|
|
|
|
|
SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT);
|
|
|
|
|
xgcv.line_style = LineSolid;
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_bottom_gc, GCLineStyle, &xgcv);
|
|
|
|
|
XChangeGC (dpy, mw->menu.shadow_top_gc, GCLineStyle, &xgcv);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
1999-07-21 21:43:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Return the pixel height of menu separator SEPARATOR. */
|
|
|
|
|
|
|
|
|
|
static int
|
2010-07-04 05:47:55 +00:00
|
|
|
|
separator_height (enum menu_separator separator)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
{
|
|
|
|
|
switch (separator)
|
|
|
|
|
{
|
|
|
|
|
case SEPARATOR_NO_LINE:
|
|
|
|
|
return 2;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SINGLE_LINE:
|
|
|
|
|
case SEPARATOR_SINGLE_DASHED_LINE:
|
|
|
|
|
return 1;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_DOUBLE_LINE:
|
|
|
|
|
case SEPARATOR_DOUBLE_DASHED_LINE:
|
|
|
|
|
return 3;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN:
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT:
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_IN_DASH:
|
|
|
|
|
case SEPARATOR_SHADOW_ETCHED_OUT_DASH:
|
|
|
|
|
return 2;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN:
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT:
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_IN_DASH:
|
|
|
|
|
case SEPARATOR_SHADOW_DOUBLE_ETCHED_OUT_DASH:
|
|
|
|
|
return 5;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
default:
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
1999-07-21 21:43:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Display the menu item and increment where.x and where.y to show how large
|
1999-07-21 21:43:52 +00:00
|
|
|
|
the menu item was. */
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
display_menu_item (XlwMenuWidget mw,
|
|
|
|
|
widget_value* val,
|
|
|
|
|
window_state* ws,
|
|
|
|
|
XPoint* where,
|
|
|
|
|
Boolean highlighted_p,
|
|
|
|
|
Boolean horizontal_p,
|
|
|
|
|
Boolean just_compute_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
GC deco_gc;
|
|
|
|
|
GC text_gc;
|
2005-03-18 04:19:41 +00:00
|
|
|
|
int font_height = MENU_FONT_HEIGHT (mw);
|
|
|
|
|
int font_ascent = MENU_FONT_ASCENT (mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int shadow = mw->menu.shadow_thickness;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int margin = mw->menu.margin;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int h_spacing = mw->menu.horizontal_spacing;
|
|
|
|
|
int v_spacing = mw->menu.vertical_spacing;
|
|
|
|
|
int label_width;
|
|
|
|
|
int rest_width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
int button_width;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
int height;
|
|
|
|
|
int width;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
int separator_p = lw_separator_p (val->name, &separator, 0);
|
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
|
|
|
|
|
XftColor *xftfg;
|
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
/* compute the sizes of the item */
|
1999-07-21 21:43:52 +00:00
|
|
|
|
size_menu_item (mw, val, horizontal_p, &label_width, &rest_width,
|
|
|
|
|
&button_width, &height);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
width = label_width + rest_width;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
label_width = ws->label_width;
|
|
|
|
|
width = ws->width - 2 * shadow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Only highlight an enabled item that has a callback. */
|
|
|
|
|
if (highlighted_p)
|
|
|
|
|
if (!val->enabled || !(val->call_data || val->contents))
|
|
|
|
|
highlighted_p = 0;
|
|
|
|
|
|
|
|
|
|
/* do the drawing. */
|
|
|
|
|
if (!just_compute_p)
|
|
|
|
|
{
|
|
|
|
|
/* Add the shadow border of the containing menu */
|
|
|
|
|
int x = where->x + shadow;
|
|
|
|
|
int y = where->y + shadow;
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (horizontal_p)
|
|
|
|
|
{
|
|
|
|
|
x += margin;
|
|
|
|
|
y += margin;
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* pick the foreground and background GC. */
|
|
|
|
|
if (val->enabled)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
text_gc = mw->menu.foreground_gc;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
2002-05-06 18:56:25 +00:00
|
|
|
|
text_gc = mw->menu.disabled_gc;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
deco_gc = mw->menu.foreground_gc;
|
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
|
|
|
|
|
xftfg = val->enabled ? &mw->menu.xft_fg : &mw->menu.xft_disabled_fg;
|
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (separator_p)
|
|
|
|
|
{
|
2010-04-17 17:43:03 +00:00
|
|
|
|
draw_separator (mw, ws->pixmap, x, y, width, separator);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1994-10-02 12:14:00 +00:00
|
|
|
|
int x_offset = x + h_spacing + shadow;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
char* display_string = resource_widget_value (mw, val);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height, True,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
False);
|
1994-10-02 12:14:00 +00:00
|
|
|
|
|
|
|
|
|
/* Deal with centering a menu title. */
|
|
|
|
|
if (!horizontal_p && !val->contents && !val->call_data)
|
|
|
|
|
{
|
|
|
|
|
int l = string_width (mw, display_string);
|
|
|
|
|
|
|
|
|
|
if (width > l)
|
|
|
|
|
x_offset = (width - l) >> 1;
|
|
|
|
|
}
|
1999-07-21 21:43:52 +00:00
|
|
|
|
else if (!horizontal_p && ws->button_width)
|
|
|
|
|
x_offset += ws->button_width;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
if (ws->xft_draw)
|
|
|
|
|
{
|
|
|
|
|
int draw_y = y + v_spacing + shadow;
|
|
|
|
|
XftDrawStringUtf8 (ws->xft_draw, xftfg,
|
|
|
|
|
mw->menu.xft_font,
|
|
|
|
|
x_offset, draw_y + font_ascent,
|
|
|
|
|
(unsigned char *) display_string,
|
|
|
|
|
strlen (display_string));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
if (mw->menu.fontSet)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XmbDrawString (XtDisplay (mw), ws->pixmap, mw->menu.fontSet,
|
2005-04-01 18:42:19 +00:00
|
|
|
|
text_gc, x_offset,
|
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
display_string, strlen (display_string));
|
|
|
|
|
else
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XDrawString (XtDisplay (mw), ws->pixmap,
|
2005-03-18 04:19:41 +00:00
|
|
|
|
text_gc, x_offset,
|
1994-01-18 23:47:41 +00:00
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
display_string, strlen (display_string));
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!horizontal_p)
|
|
|
|
|
{
|
1999-07-21 21:43:52 +00:00
|
|
|
|
if (val->button_type == BUTTON_TYPE_TOGGLE)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
draw_toggle (mw, ws->pixmap, x, y + v_spacing + shadow,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
val->selected);
|
|
|
|
|
else if (val->button_type == BUTTON_TYPE_RADIO)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
draw_radio (mw, ws->pixmap, x, y + v_spacing + shadow,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
val->selected);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (val->contents)
|
|
|
|
|
{
|
|
|
|
|
int a_w = arrow_width (mw);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
draw_arrow (mw, ws->pixmap, deco_gc,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
x + width - a_w
|
2000-09-28 20:30:52 +00:00
|
|
|
|
- mw->menu.horizontal_spacing
|
1994-09-17 12:53:30 +00:00
|
|
|
|
- mw->menu.shadow_thickness,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
y + v_spacing + shadow, a_w,
|
|
|
|
|
highlighted_p);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
else if (val->key)
|
|
|
|
|
{
|
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
|
|
|
|
|
if (ws->xft_draw)
|
|
|
|
|
{
|
|
|
|
|
int draw_x = ws->width - ws->max_rest_width
|
|
|
|
|
+ mw->menu.arrow_spacing;
|
|
|
|
|
int draw_y = y + v_spacing + shadow + font_ascent;
|
|
|
|
|
XftDrawStringUtf8 (ws->xft_draw, xftfg,
|
|
|
|
|
mw->menu.xft_font,
|
|
|
|
|
draw_x, draw_y,
|
|
|
|
|
(unsigned char *) val->key,
|
|
|
|
|
strlen (val->key));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
if (mw->menu.fontSet)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XmbDrawString (XtDisplay (mw), ws->pixmap,
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.fontSet,
|
|
|
|
|
text_gc,
|
|
|
|
|
x + label_width + mw->menu.arrow_spacing,
|
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
val->key, strlen (val->key));
|
|
|
|
|
else
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XDrawString (XtDisplay (mw), ws->pixmap,
|
2005-03-18 04:19:41 +00:00
|
|
|
|
text_gc,
|
1994-01-18 23:47:41 +00:00
|
|
|
|
x + label_width + mw->menu.arrow_spacing,
|
|
|
|
|
y + v_spacing + shadow + font_ascent,
|
|
|
|
|
val->key, strlen (val->key));
|
|
|
|
|
}
|
|
|
|
|
}
|
1994-09-17 12:53:30 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XDrawRectangle (XtDisplay (mw), ws->pixmap,
|
1994-09-17 12:53:30 +00:00
|
|
|
|
mw->menu.background_gc,
|
|
|
|
|
x + shadow, y + shadow,
|
|
|
|
|
label_width + h_spacing - 1,
|
2005-03-18 04:19:41 +00:00
|
|
|
|
font_height + 2 * v_spacing - 1);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
True, False);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (highlighted_p)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
draw_shadow_rectangle (mw, ws->pixmap, x, y, width, height, False,
|
1999-07-21 21:43:52 +00:00
|
|
|
|
False);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
where->x += width;
|
|
|
|
|
where->y += height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
display_menu (XlwMenuWidget mw,
|
|
|
|
|
int level,
|
|
|
|
|
Boolean just_compute_p,
|
|
|
|
|
XPoint *highlighted_pos,
|
|
|
|
|
XPoint *hit,
|
|
|
|
|
widget_value **hit_return)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value* val;
|
|
|
|
|
widget_value* following_item;
|
|
|
|
|
window_state* ws;
|
|
|
|
|
XPoint where;
|
|
|
|
|
int horizontal_p = mw->menu.horizontal && (level == 0);
|
|
|
|
|
int highlighted_p;
|
1997-07-26 01:40:05 +00:00
|
|
|
|
int no_return = 0;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
enum menu_separator separator;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (level >= mw->menu.old_depth)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
abort_gracefully ((Widget) mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (level < mw->menu.old_depth - 1)
|
|
|
|
|
following_item = mw->menu.old_stack [level + 1];
|
2000-09-28 20:30:52 +00:00
|
|
|
|
else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
following_item = NULL;
|
|
|
|
|
|
|
|
|
|
if (hit)
|
|
|
|
|
*hit_return = NULL;
|
|
|
|
|
|
|
|
|
|
where.x = 0;
|
|
|
|
|
where.y = 0;
|
|
|
|
|
|
|
|
|
|
ws = &mw->menu.windows [level];
|
2010-04-17 17:43:03 +00:00
|
|
|
|
|
|
|
|
|
if (!just_compute_p)
|
|
|
|
|
XFillRectangle (XtDisplay (mw), ws->pixmap, mw->menu.background_gc,
|
|
|
|
|
0, 0, ws->width, ws->height);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
for (val = mw->menu.old_stack [level]->contents; val; val = val->next)
|
|
|
|
|
{
|
|
|
|
|
highlighted_p = val == following_item;
|
|
|
|
|
if (highlighted_p && highlighted_pos)
|
|
|
|
|
{
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
highlighted_pos->x = where.x;
|
|
|
|
|
else
|
|
|
|
|
highlighted_pos->y = where.y;
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
display_menu_item (mw, val, ws, &where, highlighted_p, horizontal_p,
|
2010-04-17 17:43:03 +00:00
|
|
|
|
just_compute_p);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (highlighted_p && highlighted_pos)
|
|
|
|
|
{
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
highlighted_pos->y = where.y;
|
|
|
|
|
else
|
|
|
|
|
highlighted_pos->x = where.x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (hit
|
|
|
|
|
&& !*hit_return
|
|
|
|
|
&& (horizontal_p ? hit->x < where.x : hit->y < where.y)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
&& !lw_separator_p (val->name, &separator, 0)
|
1997-07-26 01:40:05 +00:00
|
|
|
|
&& !no_return)
|
|
|
|
|
{
|
|
|
|
|
if (val->enabled)
|
|
|
|
|
*hit_return = val;
|
2011-04-16 01:36:46 +00:00
|
|
|
|
else
|
2007-01-01 15:20:11 +00:00
|
|
|
|
no_return = 1;
|
2011-04-16 01:36:46 +00:00
|
|
|
|
if (mw->menu.inside_entry != val)
|
2007-01-01 15:20:11 +00:00
|
|
|
|
{
|
|
|
|
|
if (mw->menu.inside_entry)
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.leave,
|
|
|
|
|
(XtPointer) mw->menu.inside_entry);
|
|
|
|
|
mw->menu.inside_entry = val;
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.enter,
|
|
|
|
|
(XtPointer) mw->menu.inside_entry);
|
|
|
|
|
}
|
1997-07-26 01:40:05 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
where.y = 0;
|
|
|
|
|
else
|
|
|
|
|
where.x = 0;
|
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!just_compute_p)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
{
|
|
|
|
|
draw_shadow_rectangle (mw, ws->pixmap, 0, 0, ws->width, ws->height,
|
|
|
|
|
False, False);
|
|
|
|
|
XCopyArea (XtDisplay (mw), ws->pixmap, ws->window,
|
|
|
|
|
mw->menu.foreground_gc, 0, 0, ws->width, ws->height, 0, 0);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Motion code */
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
set_new_state (XlwMenuWidget mw, widget_value *val, int level)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.new_depth = 0;
|
|
|
|
|
for (i = 0; i < level; i++)
|
|
|
|
|
push_new_stack (mw, mw->menu.old_stack [i]);
|
|
|
|
|
push_new_stack (mw, val);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-17 17:43:03 +00:00
|
|
|
|
static void
|
|
|
|
|
expose_cb (Widget widget,
|
|
|
|
|
XtPointer closure,
|
|
|
|
|
XEvent* event,
|
|
|
|
|
Boolean* continue_to_dispatch)
|
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) closure;
|
|
|
|
|
int i;
|
|
|
|
|
|
2010-04-21 16:13:55 +00:00
|
|
|
|
*continue_to_dispatch = False;
|
2010-04-17 17:43:03 +00:00
|
|
|
|
for (i = 0; i < mw->menu.windows_length; ++i)
|
|
|
|
|
if (mw->menu.windows [i].w == widget) break;
|
|
|
|
|
if (i < mw->menu.windows_length && i < mw->menu.old_depth)
|
2010-07-04 05:47:55 +00:00
|
|
|
|
display_menu (mw, i, False, NULL, NULL, NULL);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-04-17 18:18:12 +00:00
|
|
|
|
static void
|
|
|
|
|
set_window_type (Widget w, XlwMenuWidget mw)
|
|
|
|
|
{
|
|
|
|
|
int popup_menu_p = mw->menu.top_depth == 1;
|
|
|
|
|
Atom type = XInternAtom (XtDisplay (w),
|
|
|
|
|
popup_menu_p
|
|
|
|
|
? "_NET_WM_WINDOW_TYPE_POPUP_MENU"
|
|
|
|
|
: "_NET_WM_WINDOW_TYPE_DROPDOWN_MENU",
|
|
|
|
|
False);
|
|
|
|
|
|
|
|
|
|
XChangeProperty (XtDisplay (w), XtWindow (w),
|
|
|
|
|
XInternAtom (XtDisplay (w), "_NET_WM_WINDOW_TYPE", False),
|
|
|
|
|
XA_ATOM, 32, PropModeReplace,
|
|
|
|
|
(unsigned char *)&type, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
make_windows_if_needed (XlwMenuWidget mw, int n)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int start_at;
|
|
|
|
|
window_state* windows;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.windows_length >= n)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!mw->menu.windows)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.windows =
|
|
|
|
|
(window_state*)XtMalloc (n * sizeof (window_state));
|
|
|
|
|
start_at = 0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mw->menu.windows =
|
|
|
|
|
(window_state*)XtRealloc ((char*)mw->menu.windows,
|
|
|
|
|
n * sizeof (window_state));
|
|
|
|
|
start_at = mw->menu.windows_length;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.windows_length = n;
|
|
|
|
|
|
|
|
|
|
windows = mw->menu.windows;
|
|
|
|
|
|
|
|
|
|
for (i = start_at; i < n; i++)
|
|
|
|
|
{
|
2010-04-17 17:43:03 +00:00
|
|
|
|
Arg av[10];
|
|
|
|
|
int ac = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
windows [i].x = 0;
|
|
|
|
|
windows [i].y = 0;
|
|
|
|
|
windows [i].width = 1;
|
|
|
|
|
windows [i].height = 1;
|
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
|
|
|
|
windows [i].max_rest_width = 0;
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XtSetArg (av[ac], XtNwidth, 1); ++ac;
|
|
|
|
|
XtSetArg (av[ac], XtNheight, 1); ++ac;
|
|
|
|
|
XtSetArg (av[ac], XtNsaveUnder, True); ++ac;
|
|
|
|
|
XtSetArg (av[ac], XtNbackground, mw->core.background_pixel); ++ac;
|
|
|
|
|
XtSetArg (av[ac], XtNborderColor, mw->core.border_pixel); ++ac;
|
|
|
|
|
XtSetArg (av[ac], XtNborderWidth, mw->core.border_width); ++ac;
|
|
|
|
|
XtSetArg (av[ac], XtNcursor, mw->menu.cursor_shape); ++ac;
|
|
|
|
|
windows [i].w =
|
|
|
|
|
XtCreatePopupShell ("sub", overrideShellWidgetClass,
|
|
|
|
|
(Widget) mw, av, ac);
|
|
|
|
|
XtRealizeWidget (windows [i].w);
|
|
|
|
|
XtAddEventHandler (windows [i].w, ExposureMask, False, expose_cb, mw);
|
|
|
|
|
windows [i].window = XtWindow (windows [i].w);
|
|
|
|
|
windows [i].pixmap = None;
|
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
|
2010-04-17 17:43:03 +00:00
|
|
|
|
windows [i].xft_draw = 0;
|
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
|
2010-04-17 18:18:12 +00:00
|
|
|
|
set_window_type (windows [i].w, mw);
|
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
|
|
|
|
}
|
2011-02-14 17:21:10 +00:00
|
|
|
|
XFlush (XtDisplay (mw));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-04-30 14:34:54 +00:00
|
|
|
|
/* Value is non-zero if WINDOW is part of menu bar widget W. */
|
|
|
|
|
|
|
|
|
|
int
|
2010-07-04 05:47:55 +00:00
|
|
|
|
xlwmenu_window_p (Widget w, Window window)
|
2001-04-30 14:34:54 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
int i;
|
2003-02-04 14:56:31 +00:00
|
|
|
|
|
2001-04-30 14:34:54 +00:00
|
|
|
|
for (i = 0; i < mw->menu.windows_length; ++i)
|
|
|
|
|
if (window == mw->menu.windows[i].window)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
return i < mw->menu.windows_length;
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Make the window fit in the screen */
|
|
|
|
|
static void
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
fit_to_screen (XlwMenuWidget mw,
|
|
|
|
|
window_state *ws,
|
|
|
|
|
window_state *previous_ws,
|
|
|
|
|
Boolean horizontal_p)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1995-04-15 18:33:29 +00:00
|
|
|
|
unsigned int screen_width = WidthOfScreen (XtScreen (mw));
|
|
|
|
|
unsigned int screen_height = HeightOfScreen (XtScreen (mw));
|
1997-01-22 02:04:17 +00:00
|
|
|
|
/* 1 if we are unable to avoid an overlap between
|
|
|
|
|
this menu and the parent menu in the X dimension. */
|
|
|
|
|
int horizontal_overlap = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (ws->x < 0)
|
|
|
|
|
ws->x = 0;
|
|
|
|
|
else if (ws->x + ws->width > screen_width)
|
|
|
|
|
{
|
|
|
|
|
if (!horizontal_p)
|
2000-09-04 13:04:49 +00:00
|
|
|
|
/* The addition of shadow-thickness for a sub-menu's position is
|
|
|
|
|
to reflect a similar adjustment when the menu is displayed to
|
|
|
|
|
the right of the invoking menu-item; it makes the sub-menu
|
|
|
|
|
look more `attached' to the menu-item. */
|
|
|
|
|
ws->x = previous_ws->x - ws->width + mw->menu.shadow_thickness;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
|
|
|
|
ws->x = screen_width - ws->width;
|
1994-10-08 04:16:17 +00:00
|
|
|
|
if (ws->x < 0)
|
1997-01-22 02:04:17 +00:00
|
|
|
|
{
|
|
|
|
|
ws->x = 0;
|
|
|
|
|
horizontal_overlap = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* If we overlap in X, try to avoid overlap in Y. */
|
|
|
|
|
if (horizontal_overlap
|
|
|
|
|
&& ws->y < previous_ws->y + previous_ws->height
|
|
|
|
|
&& previous_ws->y < ws->y + ws->height)
|
|
|
|
|
{
|
|
|
|
|
/* Put this menu right below or right above PREVIOUS_WS
|
|
|
|
|
if there's room. */
|
|
|
|
|
if (previous_ws->y + previous_ws->height + ws->height < screen_height)
|
|
|
|
|
ws->y = previous_ws->y + previous_ws->height;
|
|
|
|
|
else if (previous_ws->y - ws->height > 0)
|
|
|
|
|
ws->y = previous_ws->y - ws->height;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
1997-01-22 02:04:17 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (ws->y < 0)
|
|
|
|
|
ws->y = 0;
|
|
|
|
|
else if (ws->y + ws->height > screen_height)
|
|
|
|
|
{
|
|
|
|
|
if (horizontal_p)
|
|
|
|
|
ws->y = previous_ws->y - ws->height;
|
|
|
|
|
else
|
|
|
|
|
ws->y = screen_height - ws->height;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
if (ws->y < 0)
|
1994-10-08 04:16:17 +00:00
|
|
|
|
ws->y = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-17 17:43:03 +00:00
|
|
|
|
static void
|
|
|
|
|
create_pixmap_for_menu (window_state* ws, XlwMenuWidget mw)
|
|
|
|
|
{
|
2011-04-16 01:36:46 +00:00
|
|
|
|
if (ws->pixmap != None)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
{
|
|
|
|
|
XFreePixmap (XtDisplay (ws->w), ws->pixmap);
|
|
|
|
|
ws->pixmap = None;
|
|
|
|
|
}
|
|
|
|
|
ws->pixmap = XCreatePixmap (XtDisplay (ws->w), ws->window,
|
|
|
|
|
ws->width, ws->height,
|
|
|
|
|
DefaultDepthOfScreen (XtScreen (ws->w)));
|
|
|
|
|
#ifdef HAVE_XFT
|
|
|
|
|
if (ws->xft_draw)
|
|
|
|
|
XftDrawDestroy (ws->xft_draw);
|
|
|
|
|
if (mw->menu.xft_font)
|
|
|
|
|
{
|
|
|
|
|
int screen = XScreenNumberOfScreen (mw->core.screen);
|
|
|
|
|
ws->xft_draw = XftDrawCreate (XtDisplay (ws->w),
|
|
|
|
|
ws->pixmap,
|
|
|
|
|
DefaultVisual (XtDisplay (ws->w), screen),
|
|
|
|
|
mw->core.colormap);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
ws->xft_draw = 0;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Updates old_stack from new_stack and redisplays. */
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
remap_menubar (XlwMenuWidget mw)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
int last_same;
|
|
|
|
|
XPoint selection_position;
|
|
|
|
|
int old_depth = mw->menu.old_depth;
|
|
|
|
|
int new_depth = mw->menu.new_depth;
|
|
|
|
|
widget_value** old_stack;
|
|
|
|
|
widget_value** new_stack;
|
|
|
|
|
window_state* windows;
|
|
|
|
|
widget_value* old_selection;
|
|
|
|
|
widget_value* new_selection;
|
|
|
|
|
|
|
|
|
|
/* Check that enough windows and old_stack are ready. */
|
|
|
|
|
make_windows_if_needed (mw, new_depth);
|
|
|
|
|
make_old_stack_space (mw, new_depth);
|
|
|
|
|
windows = mw->menu.windows;
|
|
|
|
|
old_stack = mw->menu.old_stack;
|
|
|
|
|
new_stack = mw->menu.new_stack;
|
|
|
|
|
|
|
|
|
|
/* compute the last identical different entry */
|
|
|
|
|
for (i = 1; i < old_depth && i < new_depth; i++)
|
|
|
|
|
if (old_stack [i] != new_stack [i])
|
|
|
|
|
break;
|
|
|
|
|
last_same = i - 1;
|
|
|
|
|
|
|
|
|
|
/* Memorize the previously selected item to be able to refresh it */
|
|
|
|
|
old_selection = last_same + 1 < old_depth ? old_stack [last_same + 1] : NULL;
|
|
|
|
|
if (old_selection && !old_selection->enabled)
|
|
|
|
|
old_selection = NULL;
|
|
|
|
|
new_selection = last_same + 1 < new_depth ? new_stack [last_same + 1] : NULL;
|
|
|
|
|
if (new_selection && !new_selection->enabled)
|
|
|
|
|
new_selection = NULL;
|
|
|
|
|
|
2011-11-18 08:31:02 +00:00
|
|
|
|
/* Call callback when the highlighted item changes. */
|
2000-01-17 09:10:58 +00:00
|
|
|
|
if (old_selection || new_selection)
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.highlight,
|
|
|
|
|
(XtPointer) new_selection);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* updates old_state from new_state. It has to be done now because
|
|
|
|
|
display_menu (called below) uses the old_stack to know what to display. */
|
|
|
|
|
for (i = last_same + 1; i < new_depth; i++)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
{
|
|
|
|
|
XtPopdown (mw->menu.windows [i].w);
|
|
|
|
|
old_stack [i] = new_stack [i];
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.old_depth = new_depth;
|
|
|
|
|
|
1996-01-05 00:45:43 +00:00
|
|
|
|
/* refresh the last selection */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
selection_position.x = 0;
|
|
|
|
|
selection_position.y = 0;
|
|
|
|
|
display_menu (mw, last_same, new_selection == old_selection,
|
2010-04-17 17:43:03 +00:00
|
|
|
|
&selection_position, NULL, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1997-01-22 02:04:17 +00:00
|
|
|
|
/* Now place the new menus. */
|
|
|
|
|
for (i = last_same + 1; i < new_depth && new_stack[i]->contents; i++)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
1997-01-22 02:04:17 +00:00
|
|
|
|
window_state *previous_ws = &windows[i - 1];
|
|
|
|
|
window_state *ws = &windows[i];
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->x = (previous_ws->x + selection_position.x
|
|
|
|
|
+ mw->menu.shadow_thickness);
|
2000-09-04 13:04:49 +00:00
|
|
|
|
if (mw->menu.horizontal && i == 1)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->x += mw->menu.margin;
|
|
|
|
|
|
|
|
|
|
#if 0
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (!mw->menu.horizontal || i > 1)
|
|
|
|
|
ws->x += mw->menu.shadow_thickness;
|
1999-07-21 21:43:52 +00:00
|
|
|
|
#endif
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->y = (previous_ws->y + selection_position.y
|
|
|
|
|
+ mw->menu.shadow_thickness);
|
2000-09-04 13:04:49 +00:00
|
|
|
|
if (mw->menu.horizontal && i == 1)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
ws->y += mw->menu.margin;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2015-02-28 15:20:45 +00:00
|
|
|
|
/* WMs like Gnome 3 ignores requests to move windows. So we
|
|
|
|
|
must destroy the current one and create a new to get it to move. */
|
|
|
|
|
XtUnrealizeWidget (ws->w);
|
|
|
|
|
XtRealizeWidget (ws->w);
|
|
|
|
|
ws->window = XtWindow (ws->w);
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
size_menu (mw, i);
|
|
|
|
|
|
|
|
|
|
fit_to_screen (mw, ws, previous_ws, mw->menu.horizontal && i == 1);
|
|
|
|
|
|
2010-04-17 17:43:03 +00:00
|
|
|
|
create_pixmap_for_menu (ws, mw);
|
2015-02-28 15:20:45 +00:00
|
|
|
|
XtConfigureWidget (ws->w, ws->x, ws->y, ws->width, ws->height,
|
|
|
|
|
ws->w->core.border_width);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
display_menu (mw, i, False, &selection_position, NULL, NULL);
|
2015-02-28 15:20:45 +00:00
|
|
|
|
XtPopup (ws->w, XtGrabNone);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* unmap the menus that popped down */
|
|
|
|
|
for (i = new_depth - 1; i < old_depth; i++)
|
2002-12-22 22:00:44 +00:00
|
|
|
|
if (i >= new_depth || (i > 0 && !new_stack[i]->contents))
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XtPopdown (windows[i].w);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Boolean
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
motion_event_is_in_menu (XlwMenuWidget mw,
|
|
|
|
|
XMotionEvent *ev,
|
|
|
|
|
int level,
|
|
|
|
|
XPoint *relative_pos)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
window_state* ws = &mw->menu.windows [level];
|
1997-09-20 04:48:29 +00:00
|
|
|
|
int shadow = level == 0 ? 0 : mw->menu.shadow_thickness;
|
|
|
|
|
int x = ws->x + shadow;
|
|
|
|
|
int y = ws->y + shadow;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
relative_pos->x = ev->x_root - x;
|
|
|
|
|
relative_pos->y = ev->y_root - y;
|
1997-09-20 04:48:29 +00:00
|
|
|
|
return (x - shadow < ev->x_root && ev->x_root < x + ws->width
|
2007-01-01 15:20:11 +00:00
|
|
|
|
&& y - shadow < ev->y_root && ev->y_root < y + ws->height);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static Boolean
|
Change function definition from K&R to prototype. Fix prototype warnings.
* lwlib-Xaw.c (xaw_generic_callback, command_reset)
(xaw_update_one_value): Reformat.
(xaw_update_one_widget): Reformat and remove dead code.
(xaw_scrollbar_scroll, xaw_scrollbar_jump, xaw_create_scrollbar)
(xaw_update_scrollbar): Remove (not used).
(make_dialog): Change from K&R to prototype. Remove dead code.
(xaw_creation_table): Remove scrollbar entry.
* lwlib-Xlw.c (x_print_complete_resource_name): Change from K&R to
prototype.
(xlw_update_one_value): Reformat.
* lwlib-Xm.c (x_print_complete_resource_name)
(make_destroyed_instance, free_destroyed_instance, first_child)
(lw_motif_widget_p, resource_motif_string, destroy_all_children)
(xm_arm_callback, xm_update_label, xm_update_list)
(xm_update_pushbutton, xm_update_cascadebutton)
(xm_update_toggle, xm_update_radiobox, make_menu_in_widget)
(update_one_menu_entry, xm_update_menu, xm_update_text)
(xm_update_text_field, xm_update_one_widget)
(xm_update_one_value, activate_button, dialog_key_cb)
(make_dialog, mark_dead_instance_destroyed)
(find_matching_instance, recenter_widget, recycle_instance)
(xm_create_dialog, make_menubar, remove_grabs, make_popup_menu)
(make_main, xm_destroy_instance, xm_popup_menu)
(set_min_dialog_size, xm_pop_instance, do_call)
(xm_internal_update_other_instances, xm_generic_callback)
(xm_nosel_callback, xm_pull_down_callback, xm_pop_down_callback)
(xm_set_keyboard_focus, xm_set_main_areas, xm_manage_resizing): Change
from K&R to prototype.
* lwlib-int.h (widget_creation_function): Fix prototype.
* lwlib.c (allocate_widget_info, lw_register_widget): Change from K&R
to prototype.
(lw_internal_update_other_instances, merge_widget_value): Reformat.
* xlwmenu.c (size_menu_item): Change from K&R to prototype.
Change label_width and height to int.
(draw_arrow, draw_shadow_rectangle, draw_shadow_rhombus)
(draw_separator, display_menu, fit_to_screen, motion_event_is_in_menu)
(map_event_to_widget_value): Reformat.
(display_menu_item): Change from K&R to prototype.
2010-07-08 10:29:51 +00:00
|
|
|
|
map_event_to_widget_value (XlwMenuWidget mw,
|
|
|
|
|
XMotionEvent *ev,
|
|
|
|
|
widget_value **val,
|
|
|
|
|
int *level)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
XPoint relative_pos;
|
|
|
|
|
window_state* ws;
|
2007-01-01 15:20:11 +00:00
|
|
|
|
int inside = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
*val = NULL;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
/* Find the window */
|
|
|
|
|
for (i = mw->menu.old_depth - 1; i >= 0; i--)
|
|
|
|
|
{
|
|
|
|
|
ws = &mw->menu.windows [i];
|
|
|
|
|
if (ws && motion_event_is_in_menu (mw, ev, i, &relative_pos))
|
|
|
|
|
{
|
2007-01-01 15:20:11 +00:00
|
|
|
|
inside = 1;
|
2010-04-17 17:43:03 +00:00
|
|
|
|
display_menu (mw, i, True, NULL, &relative_pos, val);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (*val)
|
|
|
|
|
{
|
|
|
|
|
*level = i + 1;
|
|
|
|
|
return True;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-01-01 15:20:11 +00:00
|
|
|
|
|
2011-04-16 01:36:46 +00:00
|
|
|
|
if (!inside)
|
2007-01-01 15:20:11 +00:00
|
|
|
|
{
|
2011-04-16 01:36:46 +00:00
|
|
|
|
if (mw->menu.inside_entry != NULL)
|
2007-01-01 15:20:11 +00:00
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.leave,
|
|
|
|
|
(XtPointer) mw->menu.inside_entry);
|
|
|
|
|
mw->menu.inside_entry = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
return False;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Procedures */
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
make_drawing_gcs (XlwMenuWidget mw)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XGCValues xgcv;
|
2002-05-07 05:22:48 +00:00
|
|
|
|
float scale;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
XtGCMask mask = GCForeground | GCBackground;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2011-02-14 17:21:10 +00:00
|
|
|
|
if (!mw->menu.fontSet && mw->menu.font)
|
2005-04-01 18:42:19 +00:00
|
|
|
|
{
|
|
|
|
|
xgcv.font = mw->menu.font->fid;
|
|
|
|
|
mask |= GCFont;
|
|
|
|
|
}
|
|
|
|
|
#else
|
2011-02-14 17:21:10 +00:00
|
|
|
|
if (mw->menu.font)
|
|
|
|
|
{
|
|
|
|
|
xgcv.font = mw->menu.font->fid;
|
|
|
|
|
mask |= GCFont;
|
|
|
|
|
}
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->menu.foreground;
|
|
|
|
|
xgcv.background = mw->core.background_pixel;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.foreground_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->menu.button_foreground;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.button_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.background = mw->core.background_pixel;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
|
|
|
|
|
#define BRIGHTNESS(color) (((color) & 0xff) + (((color) >> 8) & 0xff) + (((color) >> 16) & 0xff))
|
|
|
|
|
|
|
|
|
|
/* Allocate color for disabled menu-items. */
|
2002-05-07 05:22:48 +00:00
|
|
|
|
mw->menu.disabled_foreground = mw->menu.foreground;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
if (BRIGHTNESS(mw->menu.foreground) < BRIGHTNESS(mw->core.background_pixel))
|
2002-05-07 05:22:48 +00:00
|
|
|
|
scale = 2.3;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
else
|
2002-05-07 05:22:48 +00:00
|
|
|
|
scale = 0.55;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
|
|
|
|
|
x_alloc_lighter_color_for_widget ((Widget) mw, XtDisplay ((Widget) mw),
|
|
|
|
|
mw->core.colormap,
|
2002-05-07 05:22:48 +00:00
|
|
|
|
&mw->menu.disabled_foreground,
|
|
|
|
|
scale,
|
2002-05-06 18:56:25 +00:00
|
|
|
|
0x8000);
|
|
|
|
|
|
|
|
|
|
if (mw->menu.foreground == mw->menu.disabled_foreground
|
|
|
|
|
|| mw->core.background_pixel == mw->menu.disabled_foreground)
|
|
|
|
|
{
|
|
|
|
|
/* Too few colors, use stipple. */
|
|
|
|
|
xgcv.foreground = mw->menu.foreground;
|
|
|
|
|
xgcv.fill_style = FillStippled;
|
|
|
|
|
xgcv.stipple = mw->menu.gray_pixmap;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.disabled_gc = XtGetGC ((Widget)mw, mask
|
2005-03-18 04:19:41 +00:00
|
|
|
|
| GCFillStyle | GCStipple, &xgcv);
|
2002-05-06 18:56:25 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Many colors available, use disabled pixel. */
|
|
|
|
|
xgcv.foreground = mw->menu.disabled_foreground;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.disabled_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
2002-05-06 18:56:25 +00:00
|
|
|
|
}
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->menu.button_foreground;
|
|
|
|
|
xgcv.background = mw->core.background_pixel;
|
|
|
|
|
xgcv.fill_style = FillStippled;
|
|
|
|
|
xgcv.stipple = mw->menu.gray_pixmap;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.inactive_button_gc = XtGetGC ((Widget)mw, mask
|
2005-03-18 04:19:41 +00:00
|
|
|
|
| GCFillStyle | GCStipple, &xgcv);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
xgcv.foreground = mw->core.background_pixel;
|
|
|
|
|
xgcv.background = mw->menu.foreground;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
mw->menu.background_gc = XtGetGC ((Widget)mw, mask, &xgcv);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
release_drawing_gcs (XlwMenuWidget mw)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.foreground_gc);
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.button_gc);
|
2002-05-06 18:56:25 +00:00
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.disabled_gc);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.inactive_button_gc);
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.background_gc);
|
|
|
|
|
/* let's get some segvs if we try to use these... */
|
|
|
|
|
mw->menu.foreground_gc = (GC) -1;
|
|
|
|
|
mw->menu.button_gc = (GC) -1;
|
2002-05-06 18:56:25 +00:00
|
|
|
|
mw->menu.disabled_gc = (GC) -1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.inactive_button_gc = (GC) -1;
|
|
|
|
|
mw->menu.background_gc = (GC) -1;
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-16 01:38:14 +00:00
|
|
|
|
#ifndef emacs
|
1994-01-18 23:47:41 +00:00
|
|
|
|
#define MINL(x,y) ((((unsigned long) (x)) < ((unsigned long) (y))) \
|
|
|
|
|
? ((unsigned long) (x)) : ((unsigned long) (y)))
|
2011-04-16 01:38:14 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
make_shadow_gcs (XlwMenuWidget mw)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XGCValues xgcv;
|
|
|
|
|
unsigned long pm = 0;
|
|
|
|
|
Display *dpy = XtDisplay ((Widget) mw);
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Screen *screen = XtScreen ((Widget) mw);
|
2000-03-04 16:04:00 +00:00
|
|
|
|
Colormap cmap = mw->core.colormap;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XColor topc, botc;
|
|
|
|
|
int top_frobbed = 0, bottom_frobbed = 0;
|
|
|
|
|
|
2000-06-16 18:34:17 +00:00
|
|
|
|
mw->menu.free_top_shadow_color_p = 0;
|
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 0;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.top_shadow_color == -1)
|
|
|
|
|
mw->menu.top_shadow_color = mw->core.background_pixel;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
else
|
|
|
|
|
mw->menu.top_shadow_color = mw->menu.top_shadow_color;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.bottom_shadow_color == -1)
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.foreground;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
else
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.bottom_shadow_color;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (mw->menu.top_shadow_color == mw->core.background_pixel ||
|
|
|
|
|
mw->menu.top_shadow_color == mw->menu.foreground)
|
|
|
|
|
{
|
|
|
|
|
topc.pixel = mw->core.background_pixel;
|
2000-09-03 11:37:45 +00:00
|
|
|
|
#ifdef emacs
|
|
|
|
|
if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
|
|
|
|
|
&topc.pixel,
|
|
|
|
|
1.2, 0x8000))
|
|
|
|
|
#else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XQueryColor (dpy, cmap, &topc);
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Don't overflow/wrap! */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
topc.red = MINL (65535, topc.red * 1.2);
|
|
|
|
|
topc.green = MINL (65535, topc.green * 1.2);
|
|
|
|
|
topc.blue = MINL (65535, topc.blue * 1.2);
|
|
|
|
|
if (XAllocColor (dpy, cmap, &topc))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
mw->menu.top_shadow_color = topc.pixel;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
mw->menu.free_top_shadow_color_p = 1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
top_frobbed = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (mw->menu.bottom_shadow_color == mw->menu.foreground ||
|
|
|
|
|
mw->menu.bottom_shadow_color == mw->core.background_pixel)
|
|
|
|
|
{
|
|
|
|
|
botc.pixel = mw->core.background_pixel;
|
2000-09-03 11:37:45 +00:00
|
|
|
|
#ifdef emacs
|
|
|
|
|
if (x_alloc_lighter_color_for_widget ((Widget) mw, dpy, cmap,
|
|
|
|
|
&botc.pixel,
|
|
|
|
|
0.6, 0x4000))
|
|
|
|
|
#else
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XQueryColor (dpy, cmap, &botc);
|
|
|
|
|
botc.red *= 0.6;
|
|
|
|
|
botc.green *= 0.6;
|
|
|
|
|
botc.blue *= 0.6;
|
|
|
|
|
if (XAllocColor (dpy, cmap, &botc))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
mw->menu.bottom_shadow_color = botc.pixel;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 1;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
bottom_frobbed = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (top_frobbed && bottom_frobbed)
|
|
|
|
|
{
|
2000-09-03 11:37:45 +00:00
|
|
|
|
if (topc.pixel == botc.pixel)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
if (botc.pixel == mw->menu.foreground)
|
2000-06-12 19:12:11 +00:00
|
|
|
|
{
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_top_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap,
|
|
|
|
|
&mw->menu.top_shadow_color, 1);
|
|
|
|
|
mw->menu.free_top_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.top_shadow_color = mw->core.background_pixel;
|
2000-06-12 19:12:11 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
else
|
2000-06-12 19:12:11 +00:00
|
|
|
|
{
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_bottom_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap,
|
|
|
|
|
&mw->menu.bottom_shadow_color, 1);
|
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.foreground;
|
2000-06-12 19:12:11 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
if (!mw->menu.top_shadow_pixmap
|
|
|
|
|
&& mw->menu.top_shadow_color == mw->core.background_pixel)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
mw->menu.top_shadow_pixmap = mw->menu.gray_pixmap;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_top_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap, &mw->menu.top_shadow_color, 1);
|
|
|
|
|
mw->menu.free_top_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.top_shadow_color = mw->menu.foreground;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
2015-03-18 14:31:07 +00:00
|
|
|
|
if (!mw->menu.bottom_shadow_pixmap
|
|
|
|
|
&& mw->menu.bottom_shadow_color == mw->core.background_pixel)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
mw->menu.bottom_shadow_pixmap = mw->menu.gray_pixmap;
|
2000-06-16 18:34:17 +00:00
|
|
|
|
if (mw->menu.free_bottom_shadow_color_p)
|
|
|
|
|
{
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap,
|
|
|
|
|
&mw->menu.bottom_shadow_color, 1);
|
|
|
|
|
mw->menu.free_bottom_shadow_color_p = 0;
|
|
|
|
|
}
|
|
|
|
|
mw->menu.bottom_shadow_color = mw->menu.foreground;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
xgcv.fill_style = FillStippled;
|
|
|
|
|
xgcv.foreground = mw->menu.top_shadow_color;
|
|
|
|
|
xgcv.stipple = mw->menu.top_shadow_pixmap;
|
|
|
|
|
pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
|
|
|
|
|
mw->menu.shadow_top_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
|
|
|
|
|
|
|
|
|
|
xgcv.foreground = mw->menu.bottom_shadow_color;
|
|
|
|
|
xgcv.stipple = mw->menu.bottom_shadow_pixmap;
|
|
|
|
|
pm = (xgcv.stipple ? GCStipple|GCFillStyle : 0);
|
|
|
|
|
mw->menu.shadow_bottom_gc = XtGetGC ((Widget)mw, GCForeground | pm, &xgcv);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
release_shadow_gcs (XlwMenuWidget mw)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2000-06-12 19:12:11 +00:00
|
|
|
|
Display *dpy = XtDisplay ((Widget) mw);
|
|
|
|
|
Screen *screen = XtScreen ((Widget) mw);
|
|
|
|
|
Colormap cmap = mw->core.colormap;
|
|
|
|
|
Pixel px[2];
|
2000-06-16 18:34:17 +00:00
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
|
|
if (mw->menu.free_top_shadow_color_p)
|
|
|
|
|
px[i++] = mw->menu.top_shadow_color;
|
|
|
|
|
if (mw->menu.free_bottom_shadow_color_p)
|
|
|
|
|
px[i++] = mw->menu.bottom_shadow_color;
|
|
|
|
|
if (i > 0)
|
|
|
|
|
x_free_dpy_colors (dpy, screen, cmap, px, i);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.shadow_top_gc);
|
|
|
|
|
XtReleaseGC ((Widget) mw, mw->menu.shadow_bottom_gc);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
2011-02-14 17:21:10 +00:00
|
|
|
|
static XftFont *
|
|
|
|
|
getDefaultXftFont (XlwMenuWidget mw)
|
|
|
|
|
{
|
|
|
|
|
int screen = XScreenNumberOfScreen (mw->core.screen);
|
|
|
|
|
return XftFontOpenName (XtDisplay (mw), screen, DEFAULT_FONTNAME);
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
static int
|
2010-07-04 05:47:55 +00:00
|
|
|
|
openXftFont (XlwMenuWidget mw)
|
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
|
|
|
|
{
|
2011-02-14 17:21:10 +00:00
|
|
|
|
char *fname = mw->menu.fontName;
|
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
|
|
|
|
|
|
|
|
|
mw->menu.xft_font = 0;
|
2011-02-14 17:21:10 +00:00
|
|
|
|
mw->menu.default_face = fname && strcmp (fname, DEFAULT_FONTNAME) == 0;
|
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
|
|
|
|
|
|
|
|
|
if (fname && strcmp (fname, "none") != 0)
|
|
|
|
|
{
|
|
|
|
|
int screen = XScreenNumberOfScreen (mw->core.screen);
|
2015-03-18 14:31:07 +00:00
|
|
|
|
int len = strlen (fname), i = len - 1;
|
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
|
|
|
|
/* Try to convert Gtk-syntax (Sans 9) to Xft syntax Sans-9. */
|
Use ASCII tests for character types.
* admin/merge-gnulib (GNULIB_MODULES): Add c-ctype.
* lwlib/lwlib-Xaw.c, lwlib/lwlib.c, lwlib/xlwmenu.c:
Don't include <ctype.h>; no longer needed.
* lwlib/lwlib-Xaw.c (openFont):
* lwlib/xlwmenu.c (openXftFont): Test just for ASCII digits.
* src/category.c, src/dispnew.c, src/doprnt.c, src/editfns.c, src/syntax.c
* src/term.c, src/xfns.c, src/xterm.c:
Don't include <ctype.h>; was not needed.
* src/charset.c, src/doc.c, src/fileio.c, src/font.c, src/frame.c:
* src/gtkutil.c, src/image.c, src/sysdep.c, src/xfaces.c:
Include <c-ctype.h> instead of <ctype.h>.
* src/nsterm.m: Include <c-ctype.h>.
* src/charset.c (read_hex):
* src/doc.c (Fsnarf_documentation):
* src/fileio.c (IS_DRIVE) [WINDOWSNT]:
(DRIVE_LETTER) [DOS_NT]:
(Ffile_name_directory, Fexpand_file_name)
(Fsubstitute_in_file_name):
* src/font.c (font_parse_xlfd, font_parse_fcname):
* src/frame.c (x_set_font_backend):
* src/gtkutil.c (xg_get_font):
* src/image.c (xbm_scan, xpm_scan, pbm_scan_number):
* src/nsimage.m (hexchar):
* src/nsterm.m (ns_xlfd_to_fontname):
* src/sysdep.c (system_process_attributes):
* src/xfaces.c (hash_string_case_insensitive):
Use C-locale tests instead of locale-specific tests for character
types, since we want the ASCII interpretation here, not the
interpretation suitable for whatever happens to be the current locale.
2012-08-16 21:58:44 +00:00
|
|
|
|
while (i > 0 && '0' <= fname[i] && fname[i] <= '9')
|
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
|
|
|
|
--i;
|
|
|
|
|
if (fname[i] == ' ')
|
|
|
|
|
{
|
2011-02-14 17:21:10 +00:00
|
|
|
|
fname = xstrdup (mw->menu.fontName);
|
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
|
|
|
|
fname[i] = '-';
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-03 04:17:53 +00:00
|
|
|
|
mw->menu.xft_font = XftFontOpenName (XtDisplay (mw), screen, fname);
|
|
|
|
|
if (!mw->menu.xft_font)
|
|
|
|
|
mw->menu.xft_font = getDefaultXftFont (mw);
|
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
|
|
|
|
}
|
|
|
|
|
|
2011-10-13 14:55:46 +00:00
|
|
|
|
if (fname != mw->menu.fontName) xfree (fname);
|
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
|
|
|
|
|
|
|
|
|
return mw->menu.xft_font != 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
static void
|
Fix some bad prototypes and formatting after conversion from K&R declaration.
* lwlib/lwlib-Xaw.c: Include <ctype.h> for isdigit.
(fill_xft_data, set_text): Remove unused variable screen.
(draw_text): Cast bp to FcChar8*.
(find_xft_data): Return 0 if inst or xft_data is not set.
(wm_delete_window): Correct prototype. Initialize widget to 0
and return if widget is still 0 after loop.
* lwlib/xlwmenu.c (XlwMenuSetValues, XlwMenuInitialize): Correct prototype.
(display_menu_item): Remove unused variable gi.
(make_windows_if_needed): Remove unused variable screen.
(XlwMenuRedisplay): Remove unused variable i.
* src/gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
(xg_get_image_for_pixmap, create_dialog)
(xg_get_file_with_selection, xg_get_file_name, update_cl_data)
(menuitem_highlight_callback, make_menu_item)
(xg_create_one_menuitem, create_menus, xg_update_menu_item)
(xg_create_scroll_bar, xg_update_scrollbar_pos)
(xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
(xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
(xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
(xg_tool_bar_item_expose_callback): Reformat prototype.
(xg_update_menubar): GList *group => GSList *group.
(xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
before use.
(update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
to GTK_IMAGE (wimage).
* src/xsettings.c (something_changedCB, parse_settings)
(apply_xft_settings): Reformat prototype.
(something_changedCB, init_gconf): Remove unused variable i.
(read_settings): Remove unused variable long_len.
* src/xsmfns.c (SSDATA): New macro.
(smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
passed to strlen/strcpy/strcat.
(create_client_leader_window): Surround with #ifndef USE_GTK. Cast
7:th arg to XChangeProperty to (unsigned char *)
2010-07-05 09:17:12 +00:00
|
|
|
|
XlwMenuInitialize (Widget request, Widget w, ArgList args, Cardinal *num_args)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Get the GCs and the widget size. */
|
Fix some bad prototypes and formatting after conversion from K&R declaration.
* lwlib/lwlib-Xaw.c: Include <ctype.h> for isdigit.
(fill_xft_data, set_text): Remove unused variable screen.
(draw_text): Cast bp to FcChar8*.
(find_xft_data): Return 0 if inst or xft_data is not set.
(wm_delete_window): Correct prototype. Initialize widget to 0
and return if widget is still 0 after loop.
* lwlib/xlwmenu.c (XlwMenuSetValues, XlwMenuInitialize): Correct prototype.
(display_menu_item): Remove unused variable gi.
(make_windows_if_needed): Remove unused variable screen.
(XlwMenuRedisplay): Remove unused variable i.
* src/gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
(xg_get_image_for_pixmap, create_dialog)
(xg_get_file_with_selection, xg_get_file_name, update_cl_data)
(menuitem_highlight_callback, make_menu_item)
(xg_create_one_menuitem, create_menus, xg_update_menu_item)
(xg_create_scroll_bar, xg_update_scrollbar_pos)
(xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
(xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
(xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
(xg_tool_bar_item_expose_callback): Reformat prototype.
(xg_update_menubar): GList *group => GSList *group.
(xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
before use.
(update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
to GTK_IMAGE (wimage).
* src/xsettings.c (something_changedCB, parse_settings)
(apply_xft_settings): Reformat prototype.
(something_changedCB, init_gconf): Remove unused variable i.
(read_settings): Remove unused variable long_len.
* src/xsmfns.c (SSDATA): New macro.
(smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
passed to strlen/strcpy/strcat.
(create_client_leader_window): Surround with #ifndef USE_GTK. Cast
7:th arg to XChangeProperty to (unsigned char *)
2010-07-05 09:17:12 +00:00
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
Window window = RootWindowOfScreen (DefaultScreenOfDisplay (XtDisplay (mw)));
|
|
|
|
|
Display* display = XtDisplay (mw);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
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
|
|
|
|
/* mw->menu.cursor = XCreateFontCursor (display, mw->menu.cursor_shape); */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.cursor = mw->menu.cursor_shape;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1995-05-23 03:04:22 +00:00
|
|
|
|
mw->menu.gray_pixmap
|
2012-05-31 05:08:37 +00:00
|
|
|
|
= XCreatePixmapFromBitmapData (display, window, gray_bits,
|
|
|
|
|
gray_width, gray_height,
|
1995-05-23 03:04:22 +00:00
|
|
|
|
(unsigned long)1, (unsigned long)0, 1);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
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
|
|
|
|
|
if (openXftFont (mw))
|
|
|
|
|
;
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
{
|
2011-02-14 17:21:10 +00:00
|
|
|
|
mw->menu.font = XLoadQueryFont (display, mw->menu.fontName);
|
|
|
|
|
if (!mw->menu.font)
|
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
|
|
|
|
{
|
2011-02-14 17:21:10 +00:00
|
|
|
|
mw->menu.font = XLoadQueryFont (display, "fixed");
|
2011-04-16 01:36:46 +00:00
|
|
|
|
if (!mw->menu.font)
|
2011-02-14 17:21:10 +00:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, "Menu font fixed not found, can't continue.\n");
|
Tweak X toolkit code to pacify modern GCC
* lwlib/lwlib-Xaw.c, lwlib/lwlib-Xm.c, lwlib/lwlib.c:
Don’t include <stdlib.h>, since this code now calls emacs_abort
rather than abort.
* lwlib/lwlib-Xaw.c (make_dialog, xaw_generic_callback)
(wm_delete_window):
* lwlib/lwlib-Xm.c (make_menu_in_widget, do_call):
* lwlib/lwlib.c (instantiate_widget_instance, lw_make_widget):
* lwlib/xlwmenu.c (abort_gracefully, draw_separator)
(separator_height, XlwMenuInitialize):
Use emacs_abort, not abort. Without this change, some calls
to ‘abort’ were invalid, as stdlib.h was not always included.
* src/widget.c (resources, emacsFrameClassRec):
* src/xfns.c (x_window) [USE_X_TOOLKIT]:
* src/xmenu.c (create_and_show_popup_menu) [USE_X_TOOLKIT]:
* src/xterm.c (emacs_options) [USE_X_TOOLKIT}:
(x_term_init) [USE_X_TOOLKIT]:
Cast string constants to char * to pacify --enable-gcc-warnings.
2017-03-10 17:30:30 +00:00
|
|
|
|
emacs_abort ();
|
2011-02-14 17:21:10 +00:00
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-16 01:36:46 +00:00
|
|
|
|
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
if (mw->menu.fontSet)
|
|
|
|
|
mw->menu.font_extents = XExtentsOfFontSet (mw->menu.fontSet);
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#endif
|
2011-04-16 01:36:46 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
make_drawing_gcs (mw);
|
|
|
|
|
make_shadow_gcs (mw);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.popped_up = False;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.old_depth = 1;
|
|
|
|
|
mw->menu.old_stack = (widget_value**)XtMalloc (sizeof (widget_value*));
|
|
|
|
|
mw->menu.old_stack_length = 1;
|
|
|
|
|
mw->menu.old_stack [0] = mw->menu.contents;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.new_depth = 0;
|
|
|
|
|
mw->menu.new_stack = 0;
|
|
|
|
|
mw->menu.new_stack_length = 0;
|
|
|
|
|
push_new_stack (mw, mw->menu.contents);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.windows = (window_state*)XtMalloc (sizeof (window_state));
|
|
|
|
|
mw->menu.windows_length = 1;
|
|
|
|
|
mw->menu.windows [0].x = 0;
|
|
|
|
|
mw->menu.windows [0].y = 0;
|
|
|
|
|
mw->menu.windows [0].width = 0;
|
|
|
|
|
mw->menu.windows [0].height = 0;
|
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
|
|
|
|
mw->menu.windows [0].max_rest_width = 0;
|
2010-04-17 17:43:03 +00:00
|
|
|
|
mw->menu.windows [0].pixmap = None;
|
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
|
|
|
|
|
mw->menu.windows [0].xft_draw = 0;
|
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
size_menu (mw, 0);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->core.width = mw->menu.windows [0].width;
|
|
|
|
|
mw->core.height = mw->menu.windows [0].height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
XlwMenuClassInitialize (void)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
XlwMenuRealize (Widget w, Mask *valueMask, XSetWindowAttributes *attributes)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
XSetWindowAttributes xswa;
|
|
|
|
|
int mask;
|
|
|
|
|
|
|
|
|
|
(*xlwMenuWidgetClass->core_class.superclass->core_class.realize)
|
|
|
|
|
(w, valueMask, attributes);
|
|
|
|
|
|
|
|
|
|
xswa.save_under = True;
|
|
|
|
|
xswa.cursor = mw->menu.cursor_shape;
|
|
|
|
|
mask = CWSaveUnder | CWCursor;
|
2006-01-02 07:43:46 +00:00
|
|
|
|
/* I sometimes get random BadCursor errors while creating the first
|
|
|
|
|
frame on a display. I can not find their reason, but they are
|
|
|
|
|
annoying so for now let's ignore any errors here. -- lorentey */
|
|
|
|
|
#ifdef emacs
|
2006-05-24 12:14:26 +00:00
|
|
|
|
x_catch_errors (XtDisplay (w));
|
2006-01-02 07:43:46 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XChangeWindowAttributes (XtDisplay (w), XtWindow (w), mask, &xswa);
|
2006-01-02 07:43:46 +00:00
|
|
|
|
#ifdef emacs
|
2006-05-24 12:14:26 +00:00
|
|
|
|
x_uncatch_errors ();
|
2006-01-02 07:43:46 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2010-04-17 17:43:03 +00:00
|
|
|
|
mw->menu.windows [0].w = w;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.windows [0].window = XtWindow (w);
|
|
|
|
|
mw->menu.windows [0].x = w->core.x;
|
|
|
|
|
mw->menu.windows [0].y = w->core.y;
|
|
|
|
|
mw->menu.windows [0].width = w->core.width;
|
|
|
|
|
mw->menu.windows [0].height = w->core.height;
|
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
|
|
|
|
|
2010-04-17 18:18:12 +00:00
|
|
|
|
set_window_type (mw->menu.windows [0].w, mw);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
create_pixmap_for_menu (&mw->menu.windows [0], mw);
|
|
|
|
|
|
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
|
|
|
|
|
if (mw->menu.xft_font)
|
|
|
|
|
{
|
|
|
|
|
XColor colors[3];
|
|
|
|
|
colors[0].pixel = mw->menu.xft_fg.pixel = mw->menu.foreground;
|
|
|
|
|
colors[1].pixel = mw->menu.xft_bg.pixel = mw->core.background_pixel;
|
|
|
|
|
colors[2].pixel = mw->menu.xft_disabled_fg.pixel
|
|
|
|
|
= mw->menu.disabled_foreground;
|
|
|
|
|
XQueryColors (XtDisplay (mw), mw->core.colormap, colors, 3);
|
|
|
|
|
mw->menu.xft_fg.color.alpha = 0xFFFF;
|
|
|
|
|
mw->menu.xft_fg.color.red = colors[0].red;
|
|
|
|
|
mw->menu.xft_fg.color.green = colors[0].green;
|
|
|
|
|
mw->menu.xft_fg.color.blue = colors[0].blue;
|
|
|
|
|
mw->menu.xft_bg.color.alpha = 0xFFFF;
|
|
|
|
|
mw->menu.xft_bg.color.red = colors[1].red;
|
|
|
|
|
mw->menu.xft_bg.color.green = colors[1].green;
|
|
|
|
|
mw->menu.xft_bg.color.blue = colors[1].blue;
|
|
|
|
|
mw->menu.xft_disabled_fg.color.alpha = 0xFFFF;
|
|
|
|
|
mw->menu.xft_disabled_fg.color.red = colors[2].red;
|
|
|
|
|
mw->menu.xft_disabled_fg.color.green = colors[2].green;
|
|
|
|
|
mw->menu.xft_disabled_fg.color.blue = colors[2].blue;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Only the toplevel menubar/popup is a widget so it's the only one that
|
|
|
|
|
receives expose events through Xt. So we repaint all the other panes
|
2015-03-18 14:31:07 +00:00
|
|
|
|
when receiving an Expose event. */
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
XlwMenuRedisplay (Widget w, XEvent *ev, Region region)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
/* If we have a depth beyond 1, it's because a submenu was displayed.
|
|
|
|
|
If the submenu has been destroyed, set the depth back to 1. */
|
|
|
|
|
if (submenu_destroyed)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.old_depth = 1;
|
|
|
|
|
submenu_destroyed = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-17 17:43:03 +00:00
|
|
|
|
display_menu (mw, 0, False, NULL, NULL, NULL);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-11-21 22:27:08 +00:00
|
|
|
|
|
|
|
|
|
/* Part of a hack to make the menu redisplay when a tooltip frame
|
|
|
|
|
over a menu item is unmapped. */
|
|
|
|
|
|
|
|
|
|
void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
xlwmenu_redisplay (Widget w)
|
2000-11-21 22:27:08 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuRedisplay (w, NULL, None);
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
XlwMenuDestroy (Widget w)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
if (pointer_grabbed)
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all ((Widget)w, CurrentTime);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
pointer_grabbed = 0;
|
|
|
|
|
|
|
|
|
|
submenu_destroyed = 1;
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
release_drawing_gcs (mw);
|
|
|
|
|
release_shadow_gcs (mw);
|
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* This doesn't come from the resource db but is created explicitly
|
|
|
|
|
so we must free it ourselves. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XFreePixmap (XtDisplay (mw), mw->menu.gray_pixmap);
|
|
|
|
|
mw->menu.gray_pixmap = (Pixmap) -1;
|
|
|
|
|
|
|
|
|
|
/* Don't free mw->menu.contents because that comes from our creator.
|
|
|
|
|
The `*_stack' elements are just pointers into `contents' so leave
|
2015-03-18 14:31:07 +00:00
|
|
|
|
that alone too. But free the stacks themselves. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.old_stack) XtFree ((char *) mw->menu.old_stack);
|
|
|
|
|
if (mw->menu.new_stack) XtFree ((char *) mw->menu.new_stack);
|
|
|
|
|
|
2014-06-03 04:17:53 +00:00
|
|
|
|
/* Original comment was:
|
|
|
|
|
|
|
|
|
|
Remember, you can't free anything that came from the resource
|
1994-01-18 23:47:41 +00:00
|
|
|
|
database. This includes:
|
|
|
|
|
mw->menu.cursor
|
|
|
|
|
mw->menu.top_shadow_pixmap
|
|
|
|
|
mw->menu.bottom_shadow_pixmap
|
|
|
|
|
mw->menu.font
|
|
|
|
|
Also the color cells of top_shadow_color, bottom_shadow_color,
|
|
|
|
|
foreground, and button_foreground will never be freed until this
|
|
|
|
|
client exits. Nice, eh?
|
2014-06-03 04:17:53 +00:00
|
|
|
|
|
|
|
|
|
But now I can free font without any visible glitches. */
|
|
|
|
|
|
|
|
|
|
if (mw->menu.font)
|
|
|
|
|
XFreeFont (XtDisplay (mw), mw->menu.font);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
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
|
|
|
|
|
if (mw->menu.windows [0].xft_draw)
|
|
|
|
|
XftDrawDestroy (mw->menu.windows [0].xft_draw);
|
|
|
|
|
if (mw->menu.xft_font)
|
|
|
|
|
XftFontClose (XtDisplay (mw), mw->menu.xft_font);
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-04-16 01:36:46 +00:00
|
|
|
|
if (mw->menu.windows [0].pixmap != None)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XFreePixmap (XtDisplay (mw), mw->menu.windows [0].pixmap);
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Start from 1 because the one in slot 0 is w->core.window. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
for (i = 1; i < mw->menu.windows_length; i++)
|
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
|
|
|
|
{
|
2011-04-16 01:36:46 +00:00
|
|
|
|
if (mw->menu.windows [i].pixmap != None)
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XFreePixmap (XtDisplay (mw), mw->menu.windows [i].pixmap);
|
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
|
|
|
|
|
if (mw->menu.windows [i].xft_draw)
|
|
|
|
|
XftDrawDestroy (mw->menu.windows [i].xft_draw);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (mw->menu.windows)
|
|
|
|
|
XtFree ((char *) mw->menu.windows);
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-16 01:08:29 +00:00
|
|
|
|
#ifdef HAVE_XFT
|
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
|
|
|
|
static int
|
2011-02-14 17:21:10 +00:00
|
|
|
|
fontname_changed (XlwMenuWidget newmw,
|
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
|
|
|
|
XlwMenuWidget oldmw)
|
|
|
|
|
{
|
2011-02-14 17:21:10 +00:00
|
|
|
|
/* This will force a new XftFont even if the same string is set.
|
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
|
|
|
|
This is good, as rendering parameters may have changed and
|
|
|
|
|
we just want to do a redisplay. */
|
2011-02-14 17:21:10 +00:00
|
|
|
|
return newmw->menu.fontName != oldmw->menu.fontName;
|
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
|
|
|
|
}
|
2010-04-16 01:08:29 +00:00
|
|
|
|
#endif
|
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
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static Boolean
|
Fix some bad prototypes and formatting after conversion from K&R declaration.
* lwlib/lwlib-Xaw.c: Include <ctype.h> for isdigit.
(fill_xft_data, set_text): Remove unused variable screen.
(draw_text): Cast bp to FcChar8*.
(find_xft_data): Return 0 if inst or xft_data is not set.
(wm_delete_window): Correct prototype. Initialize widget to 0
and return if widget is still 0 after loop.
* lwlib/xlwmenu.c (XlwMenuSetValues, XlwMenuInitialize): Correct prototype.
(display_menu_item): Remove unused variable gi.
(make_windows_if_needed): Remove unused variable screen.
(XlwMenuRedisplay): Remove unused variable i.
* src/gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
(xg_get_image_for_pixmap, create_dialog)
(xg_get_file_with_selection, xg_get_file_name, update_cl_data)
(menuitem_highlight_callback, make_menu_item)
(xg_create_one_menuitem, create_menus, xg_update_menu_item)
(xg_create_scroll_bar, xg_update_scrollbar_pos)
(xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
(xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
(xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
(xg_tool_bar_item_expose_callback): Reformat prototype.
(xg_update_menubar): GList *group => GSList *group.
(xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
before use.
(update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
to GTK_IMAGE (wimage).
* src/xsettings.c (something_changedCB, parse_settings)
(apply_xft_settings): Reformat prototype.
(something_changedCB, init_gconf): Remove unused variable i.
(read_settings): Remove unused variable long_len.
* src/xsmfns.c (SSDATA): New macro.
(smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
passed to strlen/strcpy/strcat.
(create_client_leader_window): Surround with #ifndef USE_GTK. Cast
7:th arg to XChangeProperty to (unsigned char *)
2010-07-05 09:17:12 +00:00
|
|
|
|
XlwMenuSetValues (Widget current, Widget request, Widget new,
|
|
|
|
|
ArgList args, Cardinal *num_args)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget oldmw = (XlwMenuWidget)current;
|
|
|
|
|
XlwMenuWidget newmw = (XlwMenuWidget)new;
|
2011-04-16 01:36:46 +00:00
|
|
|
|
Boolean do_redisplay = False;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (newmw->menu.contents
|
|
|
|
|
&& newmw->menu.contents->contents
|
|
|
|
|
&& newmw->menu.contents->contents->change >= VISIBLE_CHANGE)
|
2011-04-16 01:36:46 +00:00
|
|
|
|
do_redisplay = True;
|
1995-12-31 19:15:18 +00:00
|
|
|
|
/* Do redisplay if the contents are entirely eliminated. */
|
|
|
|
|
if (newmw->menu.contents
|
|
|
|
|
&& newmw->menu.contents->contents == 0
|
|
|
|
|
&& newmw->menu.contents->change >= VISIBLE_CHANGE)
|
2011-04-16 01:36:46 +00:00
|
|
|
|
do_redisplay = True;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
if (newmw->core.background_pixel != oldmw->core.background_pixel
|
1994-09-17 12:53:30 +00:00
|
|
|
|
|| newmw->menu.foreground != oldmw->menu.foreground
|
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
|
2011-02-14 17:21:10 +00:00
|
|
|
|
|| fontname_changed (newmw, oldmw)
|
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
|
2005-04-01 18:42:19 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
|
|
|
|
|| newmw->menu.fontSet != oldmw->menu.fontSet
|
|
|
|
|
|| (newmw->menu.fontSet == NULL && newmw->menu.font != oldmw->menu.font)
|
|
|
|
|
#else
|
2005-03-18 04:19:41 +00:00
|
|
|
|
|| newmw->menu.font != oldmw->menu.font
|
|
|
|
|
#endif
|
|
|
|
|
)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
2011-04-16 01:36:46 +00:00
|
|
|
|
int i;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
release_drawing_gcs (newmw);
|
|
|
|
|
make_drawing_gcs (newmw);
|
2000-08-30 11:52:37 +00:00
|
|
|
|
|
|
|
|
|
release_shadow_gcs (newmw);
|
|
|
|
|
/* Cause the shadow colors to be recalculated. */
|
|
|
|
|
newmw->menu.top_shadow_color = -1;
|
|
|
|
|
newmw->menu.bottom_shadow_color = -1;
|
|
|
|
|
make_shadow_gcs (newmw);
|
|
|
|
|
|
2011-04-16 01:36:46 +00:00
|
|
|
|
do_redisplay = True;
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
2000-09-04 12:13:34 +00:00
|
|
|
|
if (XtIsRealized (current))
|
2000-09-04 11:55:02 +00:00
|
|
|
|
/* If the menu is currently displayed, change the display. */
|
|
|
|
|
for (i = 0; i < oldmw->menu.windows_length; i++)
|
|
|
|
|
{
|
|
|
|
|
XSetWindowBackground (XtDisplay (oldmw),
|
|
|
|
|
oldmw->menu.windows [i].window,
|
|
|
|
|
newmw->core.background_pixel);
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Clear windows and generate expose events. */
|
2000-09-04 11:55:02 +00:00
|
|
|
|
XClearArea (XtDisplay (oldmw), oldmw->menu.windows[i].window,
|
|
|
|
|
0, 0, 0, 0, True);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
2011-02-14 17:21:10 +00:00
|
|
|
|
if (fontname_changed (newmw, oldmw))
|
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 i;
|
|
|
|
|
int screen = XScreenNumberOfScreen (newmw->core.screen);
|
|
|
|
|
if (newmw->menu.xft_font)
|
|
|
|
|
XftFontClose (XtDisplay (newmw), newmw->menu.xft_font);
|
|
|
|
|
openXftFont (newmw);
|
|
|
|
|
for (i = 0; i < newmw->menu.windows_length; i++)
|
|
|
|
|
{
|
|
|
|
|
if (newmw->menu.windows [i].xft_draw)
|
|
|
|
|
XftDrawDestroy (newmw->menu.windows [i].xft_draw);
|
|
|
|
|
newmw->menu.windows [i].xft_draw = 0;
|
|
|
|
|
}
|
|
|
|
|
if (newmw->menu.xft_font)
|
|
|
|
|
for (i = 0; i < newmw->menu.windows_length; i++)
|
|
|
|
|
newmw->menu.windows [i].xft_draw
|
|
|
|
|
= XftDrawCreate (XtDisplay (newmw),
|
|
|
|
|
newmw->menu.windows [i].window,
|
|
|
|
|
DefaultVisual (XtDisplay (newmw), screen),
|
|
|
|
|
newmw->core.colormap);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2005-03-18 04:19:41 +00:00
|
|
|
|
#ifdef HAVE_X_I18N
|
2005-04-01 18:42:19 +00:00
|
|
|
|
if (newmw->menu.fontSet != oldmw->menu.fontSet && newmw->menu.fontSet != NULL)
|
2005-03-18 04:19:41 +00:00
|
|
|
|
{
|
2011-04-16 01:36:46 +00:00
|
|
|
|
do_redisplay = True;
|
2005-04-01 18:42:19 +00:00
|
|
|
|
newmw->menu.font_extents = XExtentsOfFontSet (newmw->menu.fontSet);
|
2005-03-18 04:19:41 +00:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2011-04-16 01:36:46 +00:00
|
|
|
|
return do_redisplay;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
XlwMenuResize (Widget w)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
/* Don't allow the popup menu to resize itself. */
|
|
|
|
|
mw->core.width = mw->menu.windows [0].width;
|
|
|
|
|
mw->core.height = mw->menu.windows [0].height;
|
2010-04-17 17:43:03 +00:00
|
|
|
|
mw->core.parent->core.width = mw->core.width;
|
|
|
|
|
mw->core.parent->core.height = mw->core.height;
|
1994-09-17 12:53:30 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
mw->menu.windows [0].width = mw->core.width;
|
|
|
|
|
mw->menu.windows [0].height = mw->core.height;
|
2010-04-17 17:43:03 +00:00
|
|
|
|
create_pixmap_for_menu (&mw->menu.windows [0], mw);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Action procedures */
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
handle_single_motion_event (XlwMenuWidget mw, XMotionEvent *ev)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value* val;
|
|
|
|
|
int level;
|
|
|
|
|
|
|
|
|
|
if (!map_event_to_widget_value (mw, ev, &val, &level))
|
|
|
|
|
pop_new_stack_if_no_contents (mw);
|
|
|
|
|
else
|
|
|
|
|
set_new_state (mw, val, level);
|
|
|
|
|
remap_menubar (mw);
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Sync with the display. Makes it feel better on X terms. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XSync (XtDisplay (mw), False);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
handle_motion_event (XlwMenuWidget mw, XMotionEvent *ev)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int x = ev->x_root;
|
|
|
|
|
int y = ev->y_root;
|
|
|
|
|
int state = ev->state;
|
2010-04-17 17:43:03 +00:00
|
|
|
|
XMotionEvent oldev = *ev;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Allow motion events to be generated again. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
if (ev->is_hint
|
|
|
|
|
&& XQueryPointer (XtDisplay (mw), ev->window,
|
|
|
|
|
&ev->root, &ev->subwindow,
|
|
|
|
|
&ev->x_root, &ev->y_root,
|
|
|
|
|
&ev->x, &ev->y,
|
|
|
|
|
&ev->state)
|
|
|
|
|
&& ev->state == state
|
|
|
|
|
&& (ev->x_root != x || ev->y_root != y))
|
|
|
|
|
handle_single_motion_event (mw, ev);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
else
|
|
|
|
|
handle_single_motion_event (mw, &oldev);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Start (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
if (!mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
menu_post_event = *ev;
|
2004-01-12 01:45:22 +00:00
|
|
|
|
/* If event is set to CurrentTime, get the last known time stamp.
|
|
|
|
|
This is for calculating if (popup) menus should stay up after
|
|
|
|
|
a fast click. */
|
|
|
|
|
if (menu_post_event.xbutton.time == CurrentTime)
|
|
|
|
|
menu_post_event.xbutton.time
|
|
|
|
|
= XtLastTimestampProcessed (XtDisplay (w));
|
|
|
|
|
|
2000-06-06 14:21:15 +00:00
|
|
|
|
pop_up_menu (mw, (XButtonPressedEvent*) ev);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
1994-09-23 21:02:25 +00:00
|
|
|
|
{
|
|
|
|
|
/* If we push a button while the menu is posted semipermanently,
|
|
|
|
|
releasing the button should always pop the menu down. */
|
|
|
|
|
next_release_must_exit = 1;
|
1994-09-17 12:53:30 +00:00
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Notes the absolute position of the menubar window. */
|
1994-09-23 21:02:25 +00:00
|
|
|
|
mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
|
|
|
|
|
mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Handles the down like a move, slots are compatible. */
|
2006-05-23 07:19:45 +00:00
|
|
|
|
ev->xmotion.is_hint = 0;
|
1994-09-23 21:02:25 +00:00
|
|
|
|
handle_motion_event (mw, &ev->xmotion);
|
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-28 20:30:52 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Drag (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
1995-05-29 07:16:27 +00:00
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
handle_motion_event (mw, &ev->xmotion);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
1995-12-31 19:15:18 +00:00
|
|
|
|
/* Do nothing.
|
|
|
|
|
This is how we handle presses and releases of modifier keys. */
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Nothing (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
1995-12-31 19:15:18 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static widget_value *
|
2010-07-04 05:47:55 +00:00
|
|
|
|
find_first_selectable (XlwMenuWidget mw, widget_value *item, int skip_titles)
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value *current = item;
|
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
while (lw_separator_p (current->name, &separator, 0) || !current->enabled
|
2004-11-01 12:20:45 +00:00
|
|
|
|
|| (skip_titles && !current->call_data && !current->contents))
|
2002-04-20 13:39:57 +00:00
|
|
|
|
if (current->next)
|
2015-03-18 14:31:07 +00:00
|
|
|
|
current = current->next;
|
2002-04-20 13:39:57 +00:00
|
|
|
|
else
|
2004-11-01 12:20:45 +00:00
|
|
|
|
return NULL;
|
2002-04-20 13:39:57 +00:00
|
|
|
|
|
|
|
|
|
return current;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static widget_value *
|
2010-07-04 05:47:55 +00:00
|
|
|
|
find_next_selectable (XlwMenuWidget mw, widget_value *item, int skip_titles)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value *current = item;
|
|
|
|
|
enum menu_separator separator;
|
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
while (current->next && (current = current->next)
|
|
|
|
|
&& (lw_separator_p (current->name, &separator, 0) || !current->enabled
|
|
|
|
|
|| (skip_titles && !current->call_data && !current->contents)))
|
2002-04-19 18:56:51 +00:00
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
if (current == item)
|
|
|
|
|
{
|
2002-05-06 18:56:25 +00:00
|
|
|
|
if (mw->menu.old_depth < 2)
|
|
|
|
|
return current;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
current = mw->menu.old_stack [mw->menu.old_depth - 2]->contents;
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
while (lw_separator_p (current->name, &separator, 0)
|
|
|
|
|
|| !current->enabled
|
2004-11-01 12:20:45 +00:00
|
|
|
|
|| (skip_titles && !current->call_data
|
|
|
|
|
&& !current->contents))
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (current->next)
|
2015-03-18 14:31:07 +00:00
|
|
|
|
current = current->next;
|
2002-04-20 13:39:57 +00:00
|
|
|
|
|
|
|
|
|
if (current == item)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return current;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static widget_value *
|
2010-07-04 05:47:55 +00:00
|
|
|
|
find_prev_selectable (XlwMenuWidget mw, widget_value *item, int skip_titles)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
widget_value *current = item;
|
|
|
|
|
widget_value *prev = item;
|
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
while ((current = find_next_selectable (mw, current, skip_titles))
|
2004-01-12 01:45:22 +00:00
|
|
|
|
!= item)
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (prev == current)
|
|
|
|
|
break;
|
2015-03-18 14:31:07 +00:00
|
|
|
|
prev = current;
|
2002-04-20 13:39:57 +00:00
|
|
|
|
}
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
return prev;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Down (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
int popup_menu_p = mw->menu.top_depth == 1;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
/* When <down> in the menu-bar is pressed, display the corresponding
|
2004-01-12 01:45:22 +00:00
|
|
|
|
sub-menu and select the first selectable menu item there.
|
2004-11-01 12:20:45 +00:00
|
|
|
|
If this is a popup menu, skip title item of the popup. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw,
|
|
|
|
|
find_first_selectable (mw,
|
|
|
|
|
selected_item->contents,
|
|
|
|
|
popup_menu_p),
|
|
|
|
|
mw->menu.old_depth);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else
|
|
|
|
|
/* Highlight next possible (enabled and not separator) menu item. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_next_selectable (mw, selected_item, popup_menu_p),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Up (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
int popup_menu_p = mw->menu.top_depth == 1;
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
/* FIXME: this is tricky. <up> in the menu-bar should select the
|
2002-04-20 13:39:57 +00:00
|
|
|
|
last selectable item in the list. So we select the first
|
|
|
|
|
selectable one and find the previous selectable item. Is there
|
|
|
|
|
a better way? */
|
2004-11-01 12:20:45 +00:00
|
|
|
|
/* If this is a popup menu, skip title item of the popup. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw,
|
|
|
|
|
find_first_selectable (mw,
|
|
|
|
|
selected_item->contents,
|
|
|
|
|
popup_menu_p),
|
|
|
|
|
mw->menu.old_depth);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw,
|
|
|
|
|
find_prev_selectable (mw,
|
|
|
|
|
selected_item,
|
|
|
|
|
popup_menu_p),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
/* Highlight previous (enabled and not separator) menu item. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_prev_selectable (mw, selected_item, popup_menu_p),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Left (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
/* When <left> in the menu-bar is pressed, display the previous item on
|
|
|
|
|
the menu-bar. If the current item is the first one, highlight the
|
|
|
|
|
last item in the menubar (probably Help). */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_prev_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-12-22 22:00:44 +00:00
|
|
|
|
else if (mw->menu.old_depth == 1
|
|
|
|
|
&& selected_item->contents) /* Is this menu item expandable? */
|
|
|
|
|
{
|
|
|
|
|
set_new_state (mw, selected_item->contents, mw->menu.old_depth);
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (!selected_item->enabled && find_first_selectable (mw,
|
|
|
|
|
selected_item,
|
|
|
|
|
0))
|
|
|
|
|
set_new_state (mw, find_first_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-12-22 22:00:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pop_new_stack_if_no_contents (mw);
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
|
|
|
|
|
mw->menu.old_depth - 2);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-12 01:45:22 +00:00
|
|
|
|
void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Right (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget) w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
|
|
|
|
|
|
|
|
|
/* Inside top-level menu-bar? */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (mw->menu.old_depth == mw->menu.top_depth)
|
2002-04-19 18:56:51 +00:00
|
|
|
|
/* When <right> in the menu-bar is pressed, display the next item on
|
|
|
|
|
the menu-bar. If the current item is the last one, highlight the
|
|
|
|
|
first item (probably File). */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, find_next_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else if (selected_item->contents) /* Is this menu item expandable? */
|
2002-04-20 13:39:57 +00:00
|
|
|
|
{
|
|
|
|
|
set_new_state (mw, selected_item->contents, mw->menu.old_depth);
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2004-01-12 01:45:22 +00:00
|
|
|
|
if (!selected_item->enabled && find_first_selectable (mw,
|
|
|
|
|
selected_item,
|
|
|
|
|
0))
|
|
|
|
|
set_new_state (mw, find_first_selectable (mw, selected_item, 0),
|
|
|
|
|
mw->menu.old_depth - 1);
|
2002-04-20 13:39:57 +00:00
|
|
|
|
}
|
2002-04-19 18:56:51 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
pop_new_stack_if_no_contents (mw);
|
2004-01-12 01:45:22 +00:00
|
|
|
|
set_new_state (mw, mw->menu.old_stack [mw->menu.old_depth - 2],
|
|
|
|
|
mw->menu.old_depth - 2);
|
2002-04-19 18:56:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
}
|
|
|
|
|
|
1995-12-31 19:15:18 +00:00
|
|
|
|
/* Handle key press and release events while menu is popped up.
|
|
|
|
|
Our action is to get rid of the menu. */
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Key (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
1995-12-31 19:15:18 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
|
|
|
|
|
/* Pop down everything. */
|
|
|
|
|
mw->menu.new_depth = 1;
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
|
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.popped_up = False;
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all ((Widget)mw, ev->xmotion.time);
|
1995-12-31 19:15:18 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget) mw)))
|
|
|
|
|
XtPopdown (XtParent ((Widget) mw));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XtRemoveGrab ((Widget) mw);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
display_menu (mw, 0, False, NULL, NULL, NULL);
|
1995-12-31 19:15:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* callback */
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
Select (Widget w, XEvent *ev, String *params, Cardinal *num_params)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
XlwMenuWidget mw = (XlwMenuWidget)w;
|
|
|
|
|
widget_value* selected_item = mw->menu.old_stack [mw->menu.old_depth - 1];
|
2000-09-28 20:30:52 +00:00
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
/* If user releases the button quickly, without selecting anything,
|
|
|
|
|
after the initial down-click that brought the menu up,
|
|
|
|
|
do nothing. */
|
|
|
|
|
if ((selected_item == 0
|
|
|
|
|
|| ((widget_value *) selected_item)->call_data == 0)
|
|
|
|
|
&& !next_release_must_exit
|
|
|
|
|
&& (ev->xbutton.time - menu_post_event.xbutton.time
|
|
|
|
|
< XtGetMultiClickTime (XtDisplay (w))))
|
|
|
|
|
return;
|
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Pop down everything. */
|
1994-01-18 23:47:41 +00:00
|
|
|
|
mw->menu.new_depth = 1;
|
|
|
|
|
remap_menubar (mw);
|
|
|
|
|
|
|
|
|
|
if (mw->menu.popped_up)
|
|
|
|
|
{
|
|
|
|
|
mw->menu.popped_up = False;
|
2002-04-22 18:21:06 +00:00
|
|
|
|
ungrab_all ((Widget)mw, ev->xmotion.time);
|
1994-09-24 00:12:06 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget) mw)))
|
|
|
|
|
XtPopdown (XtParent ((Widget) mw));
|
1994-09-23 21:02:25 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XtRemoveGrab ((Widget) mw);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
display_menu (mw, 0, False, NULL, NULL, NULL);
|
1994-09-23 21:02:25 +00:00
|
|
|
|
}
|
1994-01-18 23:47:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* callback */
|
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.select, (XtPointer)selected_item);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Special code to pop-up a menu. */
|
2004-01-12 01:45:22 +00:00
|
|
|
|
static void
|
2010-07-04 05:47:55 +00:00
|
|
|
|
pop_up_menu (XlwMenuWidget mw, XButtonPressedEvent *event)
|
1994-01-18 23:47:41 +00:00
|
|
|
|
{
|
|
|
|
|
int x = event->x_root;
|
|
|
|
|
int y = event->y_root;
|
|
|
|
|
int w;
|
|
|
|
|
int h;
|
|
|
|
|
int borderwidth = mw->menu.shadow_thickness;
|
|
|
|
|
Screen* screen = XtScreen (mw);
|
1994-10-26 04:57:41 +00:00
|
|
|
|
Display *display = XtDisplay (mw);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
next_release_must_exit = 0;
|
|
|
|
|
|
2007-01-01 15:20:11 +00:00
|
|
|
|
mw->menu.inside_entry = NULL;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
XtCallCallbackList ((Widget)mw, mw->menu.open, NULL);
|
|
|
|
|
|
1994-09-24 00:12:06 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget)mw)))
|
1994-09-23 21:02:25 +00:00
|
|
|
|
size_menu (mw, 0);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
|
|
w = mw->menu.windows [0].width;
|
|
|
|
|
h = mw->menu.windows [0].height;
|
|
|
|
|
|
|
|
|
|
x -= borderwidth;
|
|
|
|
|
y -= borderwidth;
|
|
|
|
|
if (x < borderwidth)
|
|
|
|
|
x = borderwidth;
|
|
|
|
|
if (x + w + 2 * borderwidth > WidthOfScreen (screen))
|
|
|
|
|
x = WidthOfScreen (screen) - w - 2 * borderwidth;
|
|
|
|
|
if (y < borderwidth)
|
|
|
|
|
y = borderwidth;
|
|
|
|
|
if (y + h + 2 * borderwidth> HeightOfScreen (screen))
|
|
|
|
|
y = HeightOfScreen (screen) - h - 2 * borderwidth;
|
|
|
|
|
|
|
|
|
|
mw->menu.popped_up = True;
|
1994-09-24 00:12:06 +00:00
|
|
|
|
if (XtIsShell (XtParent ((Widget)mw)))
|
1994-09-23 21:02:25 +00:00
|
|
|
|
{
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* fprintf (stderr, "Config %d %d\n", x, y); */
|
1994-09-24 00:12:06 +00:00
|
|
|
|
XtConfigureWidget (XtParent ((Widget)mw), x, y, w, h,
|
|
|
|
|
XtParent ((Widget)mw)->core.border_width);
|
|
|
|
|
XtPopup (XtParent ((Widget)mw), XtGrabExclusive);
|
2010-04-17 17:43:03 +00:00
|
|
|
|
display_menu (mw, 0, False, NULL, NULL, NULL);
|
1994-09-23 21:02:25 +00:00
|
|
|
|
mw->menu.windows [0].x = x + borderwidth;
|
|
|
|
|
mw->menu.windows [0].y = y + borderwidth;
|
2015-03-18 14:31:07 +00:00
|
|
|
|
mw->menu.top_depth = 1; /* Popup menus don't have a bar so top is 1. */
|
1994-09-23 21:02:25 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XEvent *ev = (XEvent *) event;
|
|
|
|
|
|
1994-09-25 23:30:51 +00:00
|
|
|
|
XtAddGrab ((Widget) mw, True, True);
|
1994-09-23 21:02:25 +00:00
|
|
|
|
|
2015-03-18 14:31:07 +00:00
|
|
|
|
/* Notes the absolute position of the menubar window. */
|
1994-09-23 21:02:25 +00:00
|
|
|
|
mw->menu.windows [0].x = ev->xmotion.x_root - ev->xmotion.x;
|
|
|
|
|
mw->menu.windows [0].y = ev->xmotion.y_root - ev->xmotion.y;
|
2004-01-12 01:45:22 +00:00
|
|
|
|
mw->menu.top_depth = 2;
|
1994-09-23 21:02:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#ifdef emacs
|
2006-05-23 07:19:45 +00:00
|
|
|
|
x_catch_errors (display);
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#endif
|
2002-04-22 18:21:06 +00:00
|
|
|
|
if (XtGrabPointer ((Widget)mw, False,
|
|
|
|
|
(PointerMotionMask
|
|
|
|
|
| PointerMotionHintMask
|
|
|
|
|
| ButtonReleaseMask
|
|
|
|
|
| ButtonPressMask),
|
|
|
|
|
GrabModeAsync, GrabModeAsync, None,
|
|
|
|
|
mw->menu.cursor_shape,
|
|
|
|
|
event->time) == Success)
|
|
|
|
|
{
|
2002-04-28 19:54:30 +00:00
|
|
|
|
if (! GRAB_KEYBOARD
|
2002-04-22 18:21:06 +00:00
|
|
|
|
|| XtGrabKeyboard ((Widget)mw, False, GrabModeAsync,
|
|
|
|
|
GrabModeAsync, event->time) == Success)
|
|
|
|
|
{
|
|
|
|
|
XtSetKeyboardFocus((Widget)mw, None);
|
|
|
|
|
pointer_grabbed = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
XtUngrabPointer ((Widget)mw, event->time);
|
|
|
|
|
}
|
|
|
|
|
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#ifdef emacs
|
1994-10-26 04:57:41 +00:00
|
|
|
|
if (x_had_errors_p (display))
|
1994-09-17 12:53:30 +00:00
|
|
|
|
{
|
|
|
|
|
pointer_grabbed = 0;
|
|
|
|
|
XtUngrabPointer ((Widget)mw, event->time);
|
|
|
|
|
}
|
2006-05-23 07:19:45 +00:00
|
|
|
|
x_uncatch_errors ();
|
1994-09-17 12:53:30 +00:00
|
|
|
|
#endif
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
2006-05-23 07:19:45 +00:00
|
|
|
|
((XMotionEvent*)event)->is_hint = 0;
|
1994-01-18 23:47:41 +00:00
|
|
|
|
handle_motion_event (mw, (XMotionEvent*)event);
|
|
|
|
|
}
|