annotate lwlib/lwlib-int.h @ 88130:363419a0d27c

Commentary: Add text. History: Add header and mbox item. Overhaul summary buffer movement. (rmail-summary-font-lock-keywords): Compress the attribute character display field by one character. (rmail-new-summary): Rewrite. (rmail-make-summary-line-1): Slight rewrite to deal with small changes in the summary format. (rmail-make-basic-summary-line): Use the rmail message vector. (rmail-summary-next-msg): Rewrite. (rmail-summary-next-labeled-message): Set the summary buffer copy of the rmail-current-message to force the display to show it. (rmail-summary-next-same-subject): Rewrite. (rmail-summary-delete-forward): Remove some questionable code and make summary buffer movement explicit. (rmail-summary-mark-deleted): Make sure to reflect the deletion for the Rmail buffer. (rmail-summary-deleted-p): Rewrite. (rmail-summary-undelete-many): Set the summary buffer copy of the rmail-current-message to force the display to show it. (rmail-summary-rmail-update): Rewrite. (rmail-summary-mode-map): Use "B" to send the message body to a browser; use (rmail-summary-output) instead of (rmail-summary-output-to-rmail-file). Similarly for the menu item. (rmail-summary-mouse-goto-msg): Set the summary buffer copy of the rmail-current-message to force the display to show it. (rmail-summary-get-message-at-point): New function. (rmail-summary-goto-msg): Rewrite. (rmail-summary-expunge, rmail-summary-expunge-and-save, rmail-summary-get-new-mail, rmail-summary-toggle-header): Rewrite. (rmail-summary-get-line-count, rmail-summary-get-summary-attributes, rmail-summary-get-summary, rmail-summary-update-attribute, rmail-summary-browse-body): New functions.
author Paul Reilly <pmr@pajato.com>
date Sat, 15 Feb 2003 17:13:03 +0000
parents 6ed38ee607e9
children 695cf19ef79e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1 #ifndef LWLIB_INTERNAL_H
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 #define LWLIB_INTERNAL_H
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 #include "lwlib.h"
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
29466
6ed38ee607e9 Enable prototypes.
Dave Love <fx@gnu.org>
parents: 27336
diff changeset
6 extern char *safe_strdup __P ((const char *));
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8 typedef struct _widget_instance
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10 Widget widget;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 Widget parent;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 Boolean pop_up_p;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 struct _widget_info* info;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 struct _widget_instance* next;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15 } widget_instance;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 typedef struct _widget_info
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 char* type;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 char* name;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 LWLIB_ID id;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 widget_value* val;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 Boolean busy;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 lw_callback pre_activate_cb;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 lw_callback selection_cb;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 lw_callback post_activate_cb;
27336
397da07a6912 Add prototype for lw_get_widget_instance.
Gerd Moellmann <gerd@gnu.org>
parents: 14018
diff changeset
27 lw_callback highlight_cb;
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 struct _widget_instance* instances;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 struct _widget_info* next;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 } widget_info;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 typedef Widget
5706
75570af32e92 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 5626
diff changeset
33 (*widget_creation_function) ();
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 typedef struct _widget_creation_entry
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 {
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 char* type;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 widget_creation_function function;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 } widget_creation_entry;
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 /* update all other instances of a widget. Can be used in a callback when
14018
0a94cd2c51c4 Comment fixes.
Karl Heuer <kwzh@gnu.org>
parents: 10079
diff changeset
42 a widget has been used by the user */
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 void
29466
6ed38ee607e9 Enable prototypes.
Dave Love <fx@gnu.org>
parents: 27336
diff changeset
44 lw_internal_update_other_instances __P ((Widget, XtPointer, XtPointer));
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 /* get the widget_value for a widget in a given instance */
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 widget_value*
29466
6ed38ee607e9 Enable prototypes.
Dave Love <fx@gnu.org>
parents: 27336
diff changeset
48 lw_get_widget_value_for_widget __P ((widget_instance *, Widget));
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49
29466
6ed38ee607e9 Enable prototypes.
Dave Love <fx@gnu.org>
parents: 27336
diff changeset
50 widget_info *lw_get_widget_info __P ((LWLIB_ID));
6ed38ee607e9 Enable prototypes.
Dave Love <fx@gnu.org>
parents: 27336
diff changeset
51 widget_instance * lw_get_widget_instance __P ((Widget));
8723
10af98fd7fa4 entered into RCS
Paul Reilly <pmr@pajato.com>
parents: 5706
diff changeset
52
5626
93bb7e0935ba Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 #endif /* LWLIB_INTERNAL_H */