gwenhywfar  4.6.0beta
CocoaLineTextField.h
Go to the documentation of this file.
1 //
2 // CocoaLineTextField.h
3 //
4 //
5 // Created by Samuel Strupp on 10.08.10.
6 //
7 
8 
9 
10 #ifndef COCOA_LINE_TEXTFIELD_H
11 #define COCOA_LINE_TEXTFIELD_H
12 
13 #import <Cocoa/Cocoa.h>
14 #import "CocoaLabel.h"
15 
16 typedef void (*gwenTextFieldActionPtr)(NSTextField *textField, void* data);
17 
18 
21  void* c_actionData;
22 
25 }
26 
27 -(void) setC_ActionPtr:(gwenTextFieldActionPtr)ptr Data:(void*)data;
28 -(void) setC_TextChanged_ActionPtr:(gwenTextFieldActionPtr)ptr Data:(void*)data;
29 
30 @end
31 
32 #endif