comparison org.eclipse.swt.win32.win32.x86/src/org/eclipse/swt/custom/CTabItem.d @ 36:d46287db17ed

rakefile reorg, swt win phobosification
author Frank Benoit <benoit@tionex.de>
date Tue, 24 Mar 2009 08:48:41 +0100
parents 6dd524f61e62
children b98647bc0aef
comparison
equal deleted inserted replaced
35:634e4380db78 36:d46287db17ed
66 int closeImageState = CTabFolder.NONE; 66 int closeImageState = CTabFolder.NONE;
67 bool showClose = false; 67 bool showClose = false;
68 bool showing = false; 68 bool showing = false;
69 69
70 // internal constants 70 // internal constants
71 static final int TOP_MARGIN = 2; 71 static const int TOP_MARGIN = 2;
72 static final int BOTTOM_MARGIN = 2; 72 static const int BOTTOM_MARGIN = 2;
73 static final int LEFT_MARGIN = 4; 73 static const int LEFT_MARGIN = 4;
74 static final int RIGHT_MARGIN = 4; 74 static const int RIGHT_MARGIN = 4;
75 static final int INTERNAL_SPACING = 4; 75 static const int INTERNAL_SPACING = 4;
76 static final int FLAGS = SWT.DRAW_TRANSPARENT | SWT.DRAW_MNEMONIC; 76 static const int FLAGS = SWT.DRAW_TRANSPARENT | SWT.DRAW_MNEMONIC;
77 static final String ELLIPSIS = "..."; //$NON-NLS-1$ // could use the ellipsis glyph on some platforms "\u2026" 77 static const String ELLIPSIS = "..."; //$NON-NLS-1$ // could use the ellipsis glyph on some platforms "\u2026"
78 78
79 /** 79 /**
80 * Constructs a new instance of this class given its parent 80 * Constructs a new instance of this class given its parent
81 * (which must be a <code>CTabFolder</code>) and a style value 81 * (which must be a <code>CTabFolder</code>) and a style value
82 * describing its behavior and appearance. The item is added 82 * describing its behavior and appearance. The item is added