openbox/otk_c/screeninfo.h
2002-12-21 12:27:05 +00:00

33 lines
740 B
C

// -*- mode: C; indent-tabs-mode: nil; -*-
#ifndef __screeninfo_h
#define __screeninfo_h
#include <X11/Xlib.h>
#include <Python.h>
extern PyTypeObject OtkScreenInfo_Type;
typedef struct OtkScreenInfo {
int screen;
Window root_window;
int depth;
Visual *visual;
Colormap colormap;
PyObject *display_string; // PyStringObject
PyObject *rect; // OtkRect
#ifdef XINERAMA
PyObject *xinerama_areas; // PyListObject[OtkRect]
Bool xinerama_active;
#endif
} OtkScreenInfo;
//! Creates an OtkScreenInfo for a screen
/*!
@param num The number of the screen on the display for which to fill the
struct with information. Must be a value >= 0.
*/
PyObject *OtkScreenInfo_New(int num);
#endif // __screeninfo_h