baseview 0.1.0

Low-level windowing system geared towards making audio plugin UIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod keyboard;
mod view;
mod window;

pub use window::*;

#[allow(non_upper_case_globals)]
mod consts {
    use cocoa::foundation::NSUInteger;

    pub const NSDragOperationNone: NSUInteger = 0;
    pub const NSDragOperationCopy: NSUInteger = 1;
    pub const NSDragOperationLink: NSUInteger = 2;
    pub const NSDragOperationGeneric: NSUInteger = 4;
    pub const NSDragOperationMove: NSUInteger = 16;
}
use consts::*;