summaryrefslogtreecommitdiff
path: root/otk_c/screeninfo.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-17 06:40:00 +0000
committerDana Jansens <danakj@orodu.net>2003-01-17 06:40:00 +0000
commit6188650ce975e287c7c8644927cd5d01e7cc7baa (patch)
tree6396de81dbb9ef56f39c24a062b93e4c896a5773 /otk_c/screeninfo.h
parent58ff3f35c2b712ec92b093ffd8b96331615f546a (diff)
rm my lucid experiment
Diffstat (limited to 'otk_c/screeninfo.h')
-rw-r--r--otk_c/screeninfo.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/otk_c/screeninfo.h b/otk_c/screeninfo.h
deleted file mode 100644
index 70ce7d3a..00000000
--- a/otk_c/screeninfo.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// -*- mode: C; indent-tabs-mode: nil; c-basic-offset: 2; -*-
-#ifndef __screeninfo_h
-#define __screeninfo_h
-
-#include <X11/Xlib.h>
-#include <Python.h>
-
-extern PyTypeObject OtkScreenInfo_Type;
-
-struct OtkRect;
-
-typedef struct OtkScreenInfo {
- PyObject_HEAD
- int screen;
- Window root_window;
-
- int depth;
- Visual *visual;
- Colormap colormap;
-
- PyStringObject *display_string;
- struct OtkRect *rect; // OtkRect
-#ifdef XINERAMA
- PyListObject *xinerama_areas; // holds OtkRect's
- 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