gwenhywfar  5.4.1
CocoaComboBox.h
Go to the documentation of this file.
1 //
2 // CocoaComboBox.h
3 //
4 //
5 // Created by Samuel Strupp on 10.08.10.
6 //
7 
8 
9 
10 #ifndef COCOA_COMBOBOX_H
11 #define COCOA_COMBOBOX_H
12 
13 #import <Cocoa/Cocoa.h>
14 #import "CocoaGwenGUIProtocol.h"
15 
16 typedef void (*gwenComboBoxActionPtr)(NSComboBox *comboBox, void *data);
17 
18 
19 @interface CocoaComboBox : NSComboBox <CocoaGwenGUIProtocol>
20 {
21 
22  BOOL fillX;
23  BOOL fillY;
24 
25  CGFloat minWidth;
26 
28  void *c_actionData;
29 }
30 
31 @property BOOL fillX;
32 @property BOOL fillY;
33 
34 -(void) setC_ComboBoxActionPtr:(gwenComboBoxActionPtr)ptr Data:(void *)data;
35 
36 @end
37 
38 #endif
CocoaComboBox::minWidth
CGFloat minWidth
Definition: CocoaComboBox.h:26
CocoaComboBox::c_actionData
void * c_actionData
Definition: CocoaComboBox.h:29
CocoaComboBox::fillY
BOOL fillY
Definition: CocoaComboBox.h:24
CocoaGwenGUIProtocol-p
Definition: CocoaGwenGUIProtocol.h:12
CocoaComboBox::fillX
BOOL fillX
Definition: CocoaComboBox.h:23
CocoaComboBox
Definition: CocoaComboBox.h:21
gwenComboBoxActionPtr
void(* gwenComboBoxActionPtr)(NSComboBox *comboBox, void *data)
Definition: CocoaComboBox.h:16
CocoaComboBox::c_actionPtr
gwenComboBoxActionPtr c_actionPtr
Definition: CocoaComboBox.h:28
CocoaGwenGUIProtocol.h