gwenhywfar  4.3.3
CocoaWindow.h
Go to the documentation of this file.
00001 //
00002 //  CocoaWindow.h
00003 //  
00004 //
00005 //  Created by Samuel Strupp on 20.08.10.
00006 //
00007 
00008 
00009 
00010 #ifndef COCOA_WINDOW_H
00011 #define COCOA_WINDOW_H
00012 
00013 #import <Cocoa/Cocoa.h>
00014 
00015 typedef void (*gwenWindowActionPtr)(NSWindow *window, void* data);
00016 
00017 @interface CocoaWindow : NSWindow {
00018         gwenWindowActionPtr c_actionPtr;
00019         void* c_actionData;
00020         
00021         gwenWindowActionPtr c_textChangedActionPtr;
00022         void* c_textChangedActionData;
00023 }
00024 
00025 @end
00026 
00027 #endif