summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/cocoa/org/eclipse/swt/internal/cocoa/NSTabViewItem.java
blob: 635e8fc687b6b0b89e6c9a893ccf10722975a6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package org.eclipse.swt.internal.cocoa;

public class NSTabViewItem extends NSObject {

public NSTabViewItem() {
	super();
}

public NSTabViewItem(int id) {
	super(id);
}

public NSColor color() {
	int result = OS.objc_msgSend(this.id, OS.sel_color);
	return result != 0 ? new NSColor(result) : null;
}

public void drawLabel(boolean shouldTruncateLabel, NSRect labelRect) {
	OS.objc_msgSend(this.id, OS.sel_drawLabel_1inRect_1, shouldTruncateLabel, labelRect);
}

public id identifier() {
	int result = OS.objc_msgSend(this.id, OS.sel_identifier);
	return result != 0 ? new id(result) : null;
}

public NSTabViewItem initWithIdentifier(id identifier) {
	int result = OS.objc_msgSend(this.id, OS.sel_initWithIdentifier_1, identifier != null ? identifier.id : 0);
	return result != 0 ? this : null;
}

public NSTabViewItem initialFirstResponder() {
	int result = OS.objc_msgSend(this.id, OS.sel_initialFirstResponder);
	return result != 0 ? this : null;
}

public NSString label() {
	int result = OS.objc_msgSend(this.id, OS.sel_label);
	return result != 0 ? new NSString(result) : null;
}

public void setColor(NSColor color) {
	OS.objc_msgSend(this.id, OS.sel_setColor_1, color != null ? color.id : 0);
}

public void setIdentifier(id identifier) {
	OS.objc_msgSend(this.id, OS.sel_setIdentifier_1, identifier != null ? identifier.id : 0);
}

public void setInitialFirstResponder(NSView view) {
	OS.objc_msgSend(this.id, OS.sel_setInitialFirstResponder_1, view != null ? view.id : 0);
}

public void setLabel(NSString label) {
	OS.objc_msgSend(this.id, OS.sel_setLabel_1, label != null ? label.id : 0);
}

public void setView(NSView view) {
	OS.objc_msgSend(this.id, OS.sel_setView_1, view != null ? view.id : 0);
}

public NSSize sizeOfLabel(boolean computeMin) {
	NSSize result = new NSSize();
	OS.objc_msgSend_stret(result, this.id, OS.sel_sizeOfLabel_1, computeMin);
	return result;
}

public int tabState() {
	return OS.objc_msgSend(this.id, OS.sel_tabState);
}

public NSTabView tabView() {
	int result = OS.objc_msgSend(this.id, OS.sel_tabView);
	return result != 0 ? new NSTabView(result) : null;
}

public id view() {
	int result = OS.objc_msgSend(this.id, OS.sel_view);
	return result != 0 ? new id(result) : null;
}

}