aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-03-04 16:00:56 +0000
committerGerd Moellmann <[email protected]>2000-03-04 16:00:56 +0000
commit7353f3a342be6307be00f0319bc50db56c9fdc95 (patch)
treebe20d6b996f9c67f13936879280b198b4dd525f4 /src
parent43bd1b2bfe1b14ab5f2bed007d09049021aa55c5 (diff)
(struct x_display_info): Add Colormap member `cmap'.
(FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/xterm.h b/src/xterm.h
index df44b85606..d4d040295c 100644
--- a/src/xterm.h
+++ b/src/xterm.h
@@ -169,6 +169,9 @@ struct x_display_info
/* The Visual being used for this display. */
Visual *visual;
+
+ /* THe colormap being used. */
+ Colormap cmap;
/* Number of panes on this screen. */
int n_planes;
@@ -602,6 +605,12 @@ struct x_output
/* This is the `Screen *' which frame F is on. */
#define FRAME_X_SCREEN(f) (FRAME_X_DISPLAY_INFO (f)->screen)
+/* This is the Visual which frame F is on. */
+#define FRAME_X_VISUAL(f) FRAME_X_DISPLAY_INFO (f)->visual
+
+/* This is the Colormap which frame F uses. */
+#define FRAME_X_COLORMAP(f) FRAME_X_DISPLAY_INFO (f)->cmap
+
/* This is the 'font_info *' which frame F has. */
#define FRAME_X_FONT_TABLE(f) (FRAME_X_DISPLAY_INFO (f)->font_table)