2014-06-03 19:59:55 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1992, 1993 Lucid, Inc.
|
2024-01-02 01:47:10 +00:00
|
|
|
Copyright (C) 1994, 1999-2024 Free Software Foundation, Inc.
|
2014-06-03 19:59:55 +00:00
|
|
|
|
|
|
|
This file is part of the Lucid Widget Library.
|
|
|
|
|
|
|
|
The Lucid Widget Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 1, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
The Lucid Widget Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
|
2014-06-03 19:59:55 +00:00
|
|
|
|
|
|
|
/* This part is separate from lwlib.h because it does not need X,
|
|
|
|
and thus can be used by non-X code in Emacs proper. */
|
|
|
|
|
|
|
|
#ifndef LWLIB_WIDGET_H
|
|
|
|
#define LWLIB_WIDGET_H
|
|
|
|
|
Make src headers idempotent and standalone
Redo src/*.h so that each include file is idempotent (that is, can
be included multiple times with the latter inclusions having no
effect) and standalone (that is, can be included by itself,
with no include file other than config.h needed as a prerequisite).
This is standard practice in GNU programs nowadays.
* lwlib/lwlib-widget.h, src/buffer.h, src/category.h, src/character.h:
* src/charset.h, src/coding.h, src/commands.h, src/disptab.h:
* src/fontset.h, src/gnutls.h, src/indent.h, src/keymap.h, src/macros.h:
* src/regex.h [emacs]:
* src/syntax.h, src/systty.h, src/termhooks.h:
Include lisp.h, for Lisp_Object.
* src/buffer.h, src/category.h, src/cm.h, src/commands.h, src/disptab.h:
* src/indent.h, src/intervals.h, src/keyboard.h, src/macros.h:
* src/process.h, src/puresize.h, src/region-cache.h, src/syntax.h:
* src/syssignal.h, src/sysstdio.h, src/systty.h, src/termchar.h:
* src/termopts.h, src/tparam.h, src/unexec.h:
Protect against multiple inclusion.
* src/buffer.h: Include character.h, for STRING_CHAR.
* src/emacsgtkfixed.h (struct frame):
* src/fontset.h (struct face):
* src/region-cache.h (struct buffer):
* src/termhooks.h (struct glyph):
* src/xsettings.h (struct x_display_info):
Add possibly-forward decl.
* src/syntax.h: Include buffer.h, for BVAR.
* src/sysselect.h: Include lisp.h, for eassume.
* src/termchar.h: Include <stdio.h>, for FILE.
* src/widget.h: Include <X11/IntrinsicP.h>, for Widget.
* src/xsettings.h: Include <X11/Xlib.h>, for XEvent.
2015-10-16 21:54:09 +00:00
|
|
|
#include "../src/lisp.h"
|
|
|
|
|
2014-06-03 19:59:55 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
NO_CHANGE = 0,
|
|
|
|
INVISIBLE_CHANGE = 1,
|
|
|
|
VISIBLE_CHANGE = 2,
|
|
|
|
STRUCTURAL_CHANGE = 3
|
|
|
|
} change_type;
|
|
|
|
|
|
|
|
enum button_type
|
|
|
|
{
|
|
|
|
BUTTON_TYPE_NONE,
|
|
|
|
BUTTON_TYPE_TOGGLE,
|
|
|
|
BUTTON_TYPE_RADIO
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct _widget_value
|
|
|
|
{
|
|
|
|
/* Name of widget. */
|
|
|
|
Lisp_Object lname;
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
/* Value (meaning depend on widget type). */
|
|
|
|
char *value;
|
|
|
|
|
|
|
|
/* Keyboard equivalent. no implications for XtTranslations. */
|
|
|
|
Lisp_Object lkey;
|
|
|
|
char *key;
|
|
|
|
|
|
|
|
/* Help string or nil if none.
|
|
|
|
GC finds this string through the frame's menu_bar_vector
|
|
|
|
or through menu_items. */
|
|
|
|
Lisp_Object help;
|
|
|
|
|
|
|
|
/* True if enabled. */
|
|
|
|
bool enabled;
|
|
|
|
|
|
|
|
/* True if selected. */
|
|
|
|
bool selected;
|
|
|
|
|
|
|
|
/* True if was edited (maintained by get_value). */
|
|
|
|
bool edited;
|
|
|
|
|
|
|
|
#ifdef HAVE_NTGUI
|
|
|
|
/* True if menu title. */
|
|
|
|
bool title;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* The type of a button. */
|
|
|
|
enum button_type button_type;
|
|
|
|
|
|
|
|
/* Contents of the sub-widgets, also selected slot for checkbox. */
|
|
|
|
struct _widget_value *contents;
|
|
|
|
|
|
|
|
/* Data passed to callback. */
|
|
|
|
void *call_data;
|
|
|
|
|
|
|
|
/* Next one in the list. */
|
|
|
|
struct _widget_value *next;
|
|
|
|
|
2014-06-04 03:20:11 +00:00
|
|
|
#ifdef USE_X_TOOLKIT
|
|
|
|
/* Type of change (maintained by lw library). */
|
|
|
|
change_type change;
|
|
|
|
|
|
|
|
/* Type of this widget's change, but not counting the other widgets
|
|
|
|
found in the `next' field. */
|
|
|
|
change_type this_one_change;
|
|
|
|
|
2014-06-03 19:59:55 +00:00
|
|
|
/* Slot for the toolkit dependent part. Always initialize to NULL. */
|
|
|
|
void *toolkit_data;
|
|
|
|
|
|
|
|
/* Whether we should free the toolkit data slot when freeing the
|
|
|
|
widget_value itself. */
|
|
|
|
bool free_toolkit_data;
|
Make src headers idempotent and standalone
Redo src/*.h so that each include file is idempotent (that is, can
be included multiple times with the latter inclusions having no
effect) and standalone (that is, can be included by itself,
with no include file other than config.h needed as a prerequisite).
This is standard practice in GNU programs nowadays.
* lwlib/lwlib-widget.h, src/buffer.h, src/category.h, src/character.h:
* src/charset.h, src/coding.h, src/commands.h, src/disptab.h:
* src/fontset.h, src/gnutls.h, src/indent.h, src/keymap.h, src/macros.h:
* src/regex.h [emacs]:
* src/syntax.h, src/systty.h, src/termhooks.h:
Include lisp.h, for Lisp_Object.
* src/buffer.h, src/category.h, src/cm.h, src/commands.h, src/disptab.h:
* src/indent.h, src/intervals.h, src/keyboard.h, src/macros.h:
* src/process.h, src/puresize.h, src/region-cache.h, src/syntax.h:
* src/syssignal.h, src/sysstdio.h, src/systty.h, src/termchar.h:
* src/termopts.h, src/tparam.h, src/unexec.h:
Protect against multiple inclusion.
* src/buffer.h: Include character.h, for STRING_CHAR.
* src/emacsgtkfixed.h (struct frame):
* src/fontset.h (struct face):
* src/region-cache.h (struct buffer):
* src/termhooks.h (struct glyph):
* src/xsettings.h (struct x_display_info):
Add possibly-forward decl.
* src/syntax.h: Include buffer.h, for BVAR.
* src/sysselect.h: Include lisp.h, for eassume.
* src/termchar.h: Include <stdio.h>, for FILE.
* src/widget.h: Include <X11/IntrinsicP.h>, for Widget.
* src/xsettings.h: Include <X11/Xlib.h>, for XEvent.
2015-10-16 21:54:09 +00:00
|
|
|
#endif
|
2014-06-04 03:20:11 +00:00
|
|
|
|
2014-06-03 19:59:55 +00:00
|
|
|
} widget_value;
|
|
|
|
|
|
|
|
#endif
|