aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11/ffi.rs
diff options
context:
space:
mode:
authorTomaka17 <pierre.krieger1708@gmail.com>2014-07-31 20:55:55 +0200
committerTomaka17 <pierre.krieger1708@gmail.com>2014-07-31 20:55:55 +0200
commit14c59e8d815970386c247e4ff2d05ea895cef6b4 (patch)
treefc5a5d2cde58dd181bd7b6df75d65f7697344844 /src/x11/ffi.rs
parentfd203468296b0eea7f299a82a6eec2a238a5c952 (diff)
parent26fec195d54d16ae086534f4950b4f5576f64726 (diff)
downloadglutin-14c59e8d815970386c247e4ff2d05ea895cef6b4.tar.gz
glutin-14c59e8d815970386c247e4ff2d05ea895cef6b4.zip
Merge branch 'master' of http://github.com/tomaka/gl-init-rs
Diffstat (limited to 'src/x11/ffi.rs')
-rw-r--r--src/x11/ffi.rs49
1 files changed, 43 insertions, 6 deletions
diff --git a/src/x11/ffi.rs b/src/x11/ffi.rs
index 4a72ca3..ec5b69c 100644
--- a/src/x11/ffi.rs
+++ b/src/x11/ffi.rs
@@ -9,6 +9,7 @@ pub type Bool = libc::c_int;
pub type Colormap = XID;
pub type Cursor = XID;
pub type Display = ();
+pub type Drawable = XID; // TODO: not sure
pub type GLXContext = *const ();
pub type GLXContextID = XID;
pub type GLXDrawable = XID;
@@ -24,11 +25,20 @@ pub type Time = libc::c_ulong;
pub type Visual = (); // TODO: not sure
pub type VisualID = libc::c_ulong; // TODO: not sure
pub type Window = XID;
+pub type XrmDatabase = *const (); // TODO: not sure
+pub type XIC = *mut ();
pub type XID = uint;
+pub type XIM = *mut ();
pub static AllocNone: libc::c_int = 0;
pub static AllocAll: libc::c_int = 1;
+pub static Button1: libc::c_uint = 1;
+pub static Button2: libc::c_uint = 2;
+pub static Button3: libc::c_uint = 3;
+pub static Button4: libc::c_uint = 4;
+pub static Button5: libc::c_uint = 5;
+
pub static InputOutput: libc::c_uint = 1;
pub static InputOnly: libc::c_uint = 2;
@@ -158,6 +168,7 @@ pub static GLX_TRANSPARENT_RED_VALUE: libc::c_int = 0x25;
pub static GLX_TRANSPARENT_GREEN_VALUE: libc::c_int = 0x26;
pub static GLX_TRANSPARENT_BLUE_VALUE: libc::c_int = 0x27;
pub static GLX_TRANSPARENT_ALPHA_VALUE: libc::c_int = 0x28;
+#[allow(type_overflow)]
pub static GLX_DONT_CARE: libc::c_int = 0xFFFFFFFF;
pub static GLX_NONE: libc::c_int = 0x8000;
pub static GLX_SLOW_CONFIG: libc::c_int = 0x8001;
@@ -193,6 +204,16 @@ pub static GLX_PBUFFER: libc::c_int = 0x8023;
pub static GLX_PBUFFER_HEIGHT: libc::c_int = 0x8040;
pub static GLX_PBUFFER_WIDTH: libc::c_int = 0x8041;
+pub static XIMPreeditArea: libc::c_long = 0x0001;
+pub static XIMPreeditCallbacks: libc::c_long = 0x0002;
+pub static XIMPreeditPosition: libc::c_long = 0x0004;
+pub static XIMPreeditNothing: libc::c_long = 0x0008;
+pub static XIMPreeditNone: libc::c_long = 0x0010;
+pub static XIMStatusArea: libc::c_long = 0x0100;
+pub static XIMStatusCallbacks: libc::c_long = 0x0200;
+pub static XIMStatusNothing: libc::c_long = 0x0400;
+pub static XIMStatusNone: libc::c_long = 0x0800;
+
pub static XK_BackSpace: libc::c_uint = 0xFF08;
pub static XK_Tab: libc::c_uint = 0xFF09;
pub static XK_Linefeed: libc::c_uint = 0xFF0A;
@@ -1325,7 +1346,12 @@ extern "C" {
pub fn XDefaultRootWindow(display: *mut Display) -> Window;
pub fn XDefaultScreen(display: *mut Display) -> libc::c_int;
pub fn XDestroyWindow(display: *mut Display, w: Window);
+ pub fn XFilterEvent(event: *mut XEvent, w: Window) -> Bool;
pub fn XFlush(display: *mut Display);
+ pub fn XGetGeometry(display: *mut Display, d: Drawable, root_return: *mut Window,
+ x_return: *mut libc::c_int, y_return: *mut libc::c_int,
+ width_return: *mut libc::c_uint, height_return: *mut libc::c_uint,
+ border_width_return: *mut libc::c_uint, depth_return: *mut libc::c_uint) -> Status;
pub fn XInternAtom(display: *mut Display, atom_name: *const libc::c_char,
only_if_exists: Bool) -> Atom;
pub fn XKeycodeToKeysym(display: *mut Display, keycode: KeyCode,
@@ -1334,26 +1360,37 @@ extern "C" {
pub fn XNextEvent(display: *mut Display, event_return: *mut XEvent);
pub fn XOpenDisplay(display_name: *const libc::c_char) -> *mut Display;
pub fn XPeekEvent(display: *mut Display, event_return: *mut XEvent);
+ pub fn XRefreshKeyboardMapping(event_map: *const XEvent);
pub fn XSetWMProtocols(display: *mut Display, w: Window, protocols: *mut Atom,
count: libc::c_int) -> Status;
pub fn XStoreName(display: *mut Display, w: Window, window_name: *const libc::c_char);
+ pub fn XCloseIM(im: XIM) -> Status;
+ pub fn XOpenIM(display: *mut Display, db: XrmDatabase, res_name: *mut libc::c_char,
+ res_class: *mut libc::c_char) -> XIM;
+
+ // TODO: this is a vararg function
+ //pub fn XCreateIC(im: XIM, ...) -> XIC;
+ pub fn XCreateIC(im: XIM, a: *const libc::c_char, b: libc::c_long, c: *const libc::c_char,
+ d: Window, e: *const ()) -> XIC;
+ pub fn XDestroyIC(ic: XIC);
+ pub fn XSetICFocus(ic: XIC);
+ pub fn XUnsetICFocus(ic: XIC);
+
+ pub fn Xutf8LookupString(ic: XIC, event: *mut XKeyEvent,
+ buffer_return: *mut libc::c_char, bytes_buffer: libc::c_int,
+ keysym_return: *mut KeySym, status_return: *mut Status) -> libc::c_int;
+
pub fn glXCreateContext(dpy: *mut Display, vis: *const XVisualInfo,
shareList: GLXContext, direct: Bool) -> GLXContext;
-
pub fn glXDestroyContext(dpy: *mut Display, ctx: GLXContext);
-
pub fn glXChooseFBConfig(dpy: *mut Display, screen: libc::c_int,
attrib_list: *const libc::c_int, nelements: *mut libc::c_int);
-
pub fn glXChooseVisual(dpy: *mut Display, screen: libc::c_int,
attribList: *const libc::c_int) -> *const XVisualInfo;
-
pub fn glXGetProcAddress(procName: *const libc::c_uchar) -> *const ();
-
pub fn glXMakeCurrent(dpy: *mut Display, drawable: GLXDrawable,
ctx: GLXContext) -> Bool;
-
pub fn glXSwapBuffers(dpy: *mut Display, drawable: GLXDrawable);
}