blob: 4892f51538dfee678870f855ba5dae52b0de64fa (
plain)
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
|
//============================================================================
//==== Titre: AlienImage_X11XColor.hxx
//==== Role : The header file of primitve type "X11XColor" from package
//==== "AlienImage"
//====
//==== Implementation: This is a primitive type implemented with typedef
//==== typedef XColor AlienImage_X11XColor;
//============================================================================
#ifndef AlienImage_X11XColor_HeaderFile
#define AlienImage_X11XColor_HeaderFile
/*
* Data structure used by color operations from <X11/Xlib.h>
*/
//==== Definition de Type ====================================================
#include <Standard_Type.hxx>
extern const Handle_Standard_Type AlienImage_X11XColorType;
inline Handle(Standard_Type) AlienImage_X11XColorType_Type_() {return 0;}
//============================================================================
/*
invalide car unsigned long = 32 ou 64 !
#include <X11/Xlib.h>
typedef XColor AlienImage_X11XColor ;
*/
/*
* Data structure used by color operations
*/
typedef struct {
unsigned int pixel;
unsigned short red, green, blue;
char flags; /* do_red, do_green, do_blue */
char pad;
} AlienImage_X11XColor;
ostream& operator << ( ostream& s, const AlienImage_X11XColor& color );
Standard_Boolean operator == (const AlienImage_X11XColor& AnObject,
const AlienImage_X11XColor& AnotherObject);
void ShallowDump (const AlienImage_X11XColor& AnObject, Standard_OStream& S);
#endif
|