Mercurial > hg > xemacs-beta
comparison src/EmacsFrame.h @ 16:0293115a14e9 r19-15b91
Import from CVS: tag r19-15b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:49:20 +0200 |
parents | ac2d302a0011 |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
15:ad457d5f7d04 | 16:0293115a14e9 |
---|---|
274 #ifndef XtCUseBackingStore | 274 #ifndef XtCUseBackingStore |
275 #define XtCUseBackingStore (String) "UseBackingStore" | 275 #define XtCUseBackingStore (String) "UseBackingStore" |
276 #endif | 276 #endif |
277 | 277 |
278 /* scrollbar placement types; like in ScrolledW.h */ | 278 /* scrollbar placement types; like in ScrolledW.h */ |
279 | 279 #define EM_TOP 1 |
280 #define EM_TOP 1 | 280 #define EM_BOTTOM 0 |
281 #define EM_BOTTOM 0 | 281 #define EM_LEFT 2 |
282 #define EM_LEFT 2 | 282 #define EM_RIGHT 0 |
283 #define EM_RIGHT 0 | |
284 | 283 |
285 #define XtTOP_LEFT (EM_TOP | EM_LEFT) | 284 #define XtTOP_LEFT (EM_TOP | EM_LEFT) |
286 #define XtBOTTOM_LEFT (EM_BOTTOM | EM_LEFT) | 285 #define XtBOTTOM_LEFT (EM_BOTTOM | EM_LEFT) |
287 #define XtTOP_RIGHT (EM_TOP | EM_RIGHT) | 286 #define XtTOP_RIGHT (EM_TOP | EM_RIGHT) |
288 #define XtBOTTOM_RIGHT (EM_BOTTOM | EM_RIGHT) | 287 #define XtBOTTOM_RIGHT (EM_BOTTOM | EM_RIGHT) |
289 | 288 |
290 /* structures | 289 /* structures */ |
291 */ | |
292 typedef struct _EmacsFrameRec *EmacsFrame; | 290 typedef struct _EmacsFrameRec *EmacsFrame; |
293 typedef struct _EmacsFrameClassRec *EmacsFrameClass; | 291 typedef struct _EmacsFrameClassRec *EmacsFrameClass; |
294 | 292 |
295 extern WidgetClass emacsFrameClass; | 293 extern WidgetClass emacsFrameClass; |
296 | 294 |