Constructs a new instance of this class given its parent (which must be a <code>Tree</code>) and a style value describing its behavior and appearance. The item is added to the end of the items maintained by its parent. <p> The style value is either one of the style constants defined in class <code>SWT</code> which is applicable to instances of this class, or must be built by <em>bitwise OR</em>'ing together (that is, using the <code>int</code> "|" operator) two or more of those <code>SWT</code> style constants. The class description lists the style constants that are applicable to the class. Style bits are also inherited from superclasses. </p>
Constructs a new instance of this class given its parent (which must be a <code>Tree</code>), a style value describing its behavior and appearance, and the index at which to place it in the items maintained by its parent. <p> The style value is either one of the style constants defined in class <code>SWT</code> which is applicable to instances of this class, or must be built by <em>bitwise OR</em>'ing together (that is, using the <code>int</code> "|" operator) two or more of those <code>SWT</code> style constants. The class description lists the style constants that are applicable to the class. Style bits are also inherited from superclasses. </p> <p> Note that due to a restriction on some platforms, the first column is always left aligned. </p> @param parent a composite control which will be the parent of the new instance (cannot be null) @param style the style of control to construct @param index the zero-relative index to store the receiver in its parent
Adds the listener to the collection of listeners who will be notified when the control is moved or resized, by sending it one of the messages defined in the <code>ControlListener</code> interface.
Adds the listener to the collection of listeners who will be notified when the control is selected by the user, by sending it one of the messages defined in the <code>SelectionListener</code> interface. <p> <code>widgetSelected</code> is called when the column header is selected. <code>widgetDefaultSelected</code> is not called. </p>
Returns a value which describes the position of the text or image in the receiver. The value will be one of <code>LEFT</code>, <code>RIGHT</code> or <code>CENTER</code>.
Gets the moveable attribute. A column that is not moveable cannot be reordered by the user by dragging the header but may be reordered by the programmer.
Returns the receiver's parent, which must be a <code>Tree</code>.
Gets the resizable attribute. A column that is not resizable cannot be dragged by the user but may be resized by the programmer.
Returns the receiver's tool tip text, or null if it has not been set.
Gets the width of the receiver.
Causes the receiver to be resized to its preferred size. For a composite, this involves computing the preferred size from its layout, if there is one.
Removes the listener from the collection of listeners who will be notified when the control is moved or resized.
Removes the listener from the collection of listeners who will be notified when the control is selected by the user.
Controls how text and images will be displayed in the receiver. The argument should be one of <code>LEFT</code>, <code>RIGHT</code> or <code>CENTER</code>. <p> Note that due to a restriction on some platforms, the first column is always left aligned. </p> @param alignment the new alignment
Sets the moveable attribute. A column that is moveable can be reordered by the user by dragging the header. A column that is not moveable cannot be dragged by the user but may be reordered by the programmer.
Sets the resizable attribute. A column that is not resizable cannot be dragged by the user but may be resized by the programmer.
Sets the receiver's tool tip text to the argument, which may be null indicating that no tool tip text should be shown.
Sets the width of the receiver.
Returns the receiver's image if it has one, or null if it does not.
Returns the receiver's text, which will be an empty string if it has never been set.
Sets the receiver's image to the argument, which may be null indicating that no image should be displayed.
Sets the receiver's text.
Instances of this class represent a column in a tree widget. <p><dl> <dt><b>Styles:</b></dt> <dd>LEFT, RIGHT, CENTER</dd> <dt><b>Events:</b></dt> <dd> Move, Resize, Selection</dd> </dl> </p><p> Note: Only one of the styles LEFT, RIGHT and CENTER may be specified. </p><p> IMPORTANT: This class is <em>not</em> intended to be subclassed. </p>
@see <a href="http://www.eclipse.org/swt/snippets/#tree">Tree, TreeItem, TreeColumn snippets</a> @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a>
@since 3.1