File: disp_color_cap.c

package info (click to toggle)
garlic 1.5-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,324 kB
  • ctags: 1,378
  • sloc: ansic: 50,306; makefile: 1,088
file content (112 lines) | stat: -rw-r--r-- 3,354 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* Copyright (C) 2000 Damir Zucic */

/*=============================================================================

				disp_color_cap.c

Purpose:
	Find display depth. Check is the TrueColor visual class supported.
	Prepare the colormap. Prepare the parameters for color allocation.
	TrueColor is  the only visual class suitable for garlic.  A server
	which  is capable  to support  DirectColor  should  be capable  to
	support TrueColor also. Some X servers do not support this visual
	at 8 bits per pixel: increase the color depth and try again!

Input:
	(1) Pointer to GUIS structure (with GUI data).

Output:
	(1) Data stored to GUIS structure.
	(2) Return value.

Return value:
	(1) Positive on success.
	(2) Negative on failure.

=============================================================================*/

#include <stdio.h>

#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xos.h>
#include <X11/Xatom.h>

#include "defines.h"
#include "typedefs.h"

/*======function prototypes:=================================================*/

void		ErrorMessage_ (char *, char *, char *,
			       char *, char *, char *, char *);
int		PrepareColorShifts_ (GUIS *);

/*======retrieve display color capabilities:=================================*/

int DisplayColorCapabilities_ (GUIS *guiSP)
{
Status		status;
Window		root_windowID;
int		n;

/*------depth:---------------------------------------------------------------*/

/* Default depth for default screen (maximal number of bits per pixel). */
/* Note:  it is not possible to distinguish gray-scale and color screen */
/* by the number of bits per pixel; XVisualInfo structure must be used. */
guiSP->depth = DefaultDepth (guiSP->displaySP, guiSP->screenID);
if (guiSP->depth <= 0)
	{
	ErrorMessage_ ("garlic", "DisplayColorCapabilities_", "",
		       "Default depth <= 0\n", "", "", "");
	return -1;
	}

/*------visual:--------------------------------------------------------------*/

/* Check is  TrueColor visual class supported */
/* by X server; if it is, prepare the visual: */
status = XMatchVisualInfo (guiSP->displaySP, guiSP->screenID,
			   guiSP->depth, TrueColor, &guiSP->visual_infoS);
if (status == 0)
	{
	fprintf (stdout,
		 "Sorry, garlic refuses to work if TrueColor");
	fprintf (stdout,
		 " visual is not supported!\n");
	fprintf (stdout,
		 "The current color depth is %d bits per pixel.\n",
		 guiSP->depth);
	fprintf (stdout,
		 "Your X server does not support the TrueColor visual");
	fprintf (stdout,
		 " at this color depth.\n");
	if (guiSP->depth <= 8)
		{
		fprintf (stdout, "Switch to at least 12 bits per pixel");
		fprintf (stdout, " (or more -> 24 is recommended)!\n");
		}
	return -2;
	}
else guiSP->visualSP = guiSP->visual_infoS.visual;

/*------colormap:------------------------------------------------------------*/

/* Prepare the colormap: */
root_windowID = RootWindow (guiSP->displaySP, guiSP->screenID);
guiSP->colormapID = XCreateColormap (guiSP->displaySP, root_windowID,
				     guiSP->visualSP, AllocNone);

/*------parameters for fast color allocation:--------------------------------*/

n = PrepareColorShifts_ (guiSP);

/*---------------------------------------------------------------------------*/

/* Return positive value on success: */
return 1;
}

/*===========================================================================*/