aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorjave2009-01-01 03:11:46 +0100
committerjave2009-01-01 03:11:46 +0100
commite93fd428afe08eed3cbec9fc1d6322a5930c27a3 (patch)
treea095c436e524a2bf9ea370b206177902550f7028 /src
parentaae452aab234e9d81243b3a9d69725e3ec601aff (diff)
downloademacs-e93fd428afe08eed3cbec9fc1d6322a5930c27a3.tar.gz
emacs-e93fd428afe08eed3cbec9fc1d6322a5930c27a3.zip
whitespace cleanup
Diffstat (limited to 'src')
-rw-r--r--src/xwidget.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xwidget.h b/src/xwidget.h
index 18a9a1da483..6f3f4bb0449 100644
--- a/src/xwidget.h
+++ b/src/xwidget.h
@@ -20,12 +20,12 @@ lisp pseudovector.
20 20
21 */ 21 */
22struct xwidget{ 22struct xwidget{
23 struct vectorlike_header header; 23 struct vectorlike_header header;
24 Lisp_Object plist;//auxilliary data 24 Lisp_Object plist;//auxilliary data
25 Lisp_Object type;//the widget type 25 Lisp_Object type;//the widget type
26 Lisp_Object buffer; //buffer where xwidget lives 26 Lisp_Object buffer; //buffer where xwidget lives
27 Lisp_Object title;//a title that is used for button labels for instance 27 Lisp_Object title;//a title that is used for button labels for instance
28 28
29 //here ends the lisp part. 29 //here ends the lisp part.
30 //"height" is the marker field 30 //"height" is the marker field
31 int height; 31 int height;
@@ -45,10 +45,10 @@ struct xwidget_view {
45 struct vectorlike_header header; 45 struct vectorlike_header header;
46 Lisp_Object model; 46 Lisp_Object model;
47 Lisp_Object w; 47 Lisp_Object w;
48 48
49 //here ends the lisp part. 49 //here ends the lisp part.
50 //"redisplayed" is the marker field 50 //"redisplayed" is the marker field
51 int redisplayed; //if touched by redisplay 51 int redisplayed; //if touched by redisplay
52 52
53 int hidden;//if the "live" instance isnt drawn 53 int hidden;//if the "live" instance isnt drawn
54 54
@@ -90,7 +90,7 @@ struct xwidget_type
90 /* Next in list of all supported image types. */ 90 /* Next in list of all supported image types. */
91 struct xwidget_type *next; 91 struct xwidget_type *next;
92}; 92};
93 93
94static struct xwidget_type *lookup_xwidget_type (Lisp_Object symbol); 94static struct xwidget_type *lookup_xwidget_type (Lisp_Object symbol);
95 95
96struct xwidget* xwidget_from_id(int id); 96struct xwidget* xwidget_from_id(int id);
@@ -104,7 +104,7 @@ void xwidget_touch (struct xwidget_view *xw);
104 104
105//void assert_valid_xwidget_id(int id,char *str); 105//void assert_valid_xwidget_id(int id,char *str);
106 106
107struct xwidget* lookup_xwidget (Lisp_Object spec); 107struct xwidget* lookup_xwidget (Lisp_Object spec);
108#define XG_XWIDGET "emacs_xwidget" 108#define XG_XWIDGET "emacs_xwidget"
109#define XG_XWIDGET_VIEW "emacs_xwidget_view" 109#define XG_XWIDGET_VIEW "emacs_xwidget_view"
110void xwidget_view_delete_all_in_window( struct window *w ); 110void xwidget_view_delete_all_in_window( struct window *w );