1 // -*- mode: C; indent-tabs-mode: nil; c-basic-offset: 2; -*-
8 extern PyTypeObject OtkScreenInfo_Type
;
12 typedef struct OtkScreenInfo
{
21 PyStringObject
*display_string
;
22 struct OtkRect
*rect
; // OtkRect
24 PyListObject
*xinerama_areas
; // holds OtkRect's
29 //! Creates an OtkScreenInfo for a screen
31 @param num The number of the screen on the display for which to fill the
32 struct with information. Must be a value >= 0.
34 PyObject
*OtkScreenInfo_New(int num
);
36 #endif // __screeninfo_h