/******************************************************************************* * Copyright (c) 2000, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.swt.widgets; import org.eclipse.swt.internal.carbon.DataBrowserListViewHeaderDesc; import org.eclipse.swt.internal.carbon.OS; import org.eclipse.swt.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.events.*; /** * Instances of this class represent a column in a table widget. *

*
Styles:
*
LEFT, RIGHT, CENTER
*
Events:
*
Move, Resize, Selection
*
*

* Note: Only one of the styles LEFT, RIGHT and CENTER may be specified. *

* IMPORTANT: This class is not intended to be subclassed. *

*/ public class TableColumn extends Item { Table parent; int id, lastWidth, lastPosition, iconRef; boolean resizable; String toolTipText; /** * Constructs a new instance of this class given its parent * (which must be a Table) and a style value * describing its behavior and appearance. The item is added * to the end of the items maintained by its parent. *

* The style value is either one of the style constants defined in * class SWT which is applicable to instances of this * class, or must be built by bitwise OR'ing together * (that is, using the int "|" operator) two or more * of those SWT style constants. The class description * lists the style constants that are applicable to the class. * Style bits are also inherited from superclasses. *

* * @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 * * @exception IllegalArgumentException * @exception SWTException * * @see SWT#LEFT * @see SWT#RIGHT * @see SWT#CENTER * @see Widget#checkSubclass * @see Widget#getStyle */ public TableColumn (Table parent, int style) { super (parent, checkStyle (style)); resizable = true; this.parent = parent; parent.createItem (this, parent.getColumnCount ()); } /** * Constructs a new instance of this class given its parent * (which must be a Table), a style value * describing its behavior and appearance, and the index * at which to place it in the items maintained by its parent. *

* The style value is either one of the style constants defined in * class SWT which is applicable to instances of this * class, or must be built by bitwise OR'ing together * (that is, using the int "|" operator) two or more * of those SWT style constants. The class description * lists the style constants that are applicable to the class. * Style bits are also inherited from superclasses. *

* * @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 * * @exception IllegalArgumentException * @exception SWTException * * @see SWT#LEFT * @see SWT#RIGHT * @see SWT#CENTER * @see Widget#checkSubclass * @see Widget#getStyle */ public TableColumn (Table parent, int style, int index) { super (parent, checkStyle (style)); resizable = true; this.parent = parent; parent.createItem (this, index); } /** * 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 ControlListener * interface. * * @param listener the listener which should be notified * * @exception IllegalArgumentException * @exception SWTException * * @see ControlListener * @see #removeControlListener */ public void addControlListener(ControlListener listener) { checkWidget (); if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); TypedListener typedListener = new TypedListener (listener); addListener (SWT.Resize,typedListener); addListener (SWT.Move,typedListener); } /** * Adds the listener to the collection of listeners who will * be notified when the control is selected, by sending * it one of the messages defined in the SelectionListener * interface. *

* widgetSelected is called when the column header is selected. * widgetDefaultSelected is not called. *

* * @param listener the listener which should be notified * * @exception IllegalArgumentException * @exception SWTException * * @see SelectionListener * @see #removeSelectionListener * @see SelectionEvent */ public void addSelectionListener (SelectionListener listener) { checkWidget (); if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); TypedListener typedListener = new TypedListener (listener); addListener (SWT.Selection,typedListener); addListener (SWT.DefaultSelection,typedListener); } static int checkStyle (int style) { return checkBits (style, SWT.LEFT, SWT.CENTER, SWT.RIGHT, 0, 0, 0); } protected void checkSubclass () { if (!isValidSubclass ()) error (SWT.ERROR_INVALID_SUBCLASS); } void destroyWidget () { parent.destroyItem (this); releaseHandle (); } /** * Returns a value which describes the position of the * text or image in the receiver. The value will be one of * LEFT, RIGHT or CENTER. * * @return the alignment * * @exception SWTException */ public int getAlignment () { checkWidget (); if ((style & SWT.LEFT) != 0) return SWT.LEFT; if ((style & SWT.CENTER) != 0) return SWT.CENTER; if ((style & SWT.RIGHT) != 0) return SWT.RIGHT; return SWT.LEFT; } String getNameText () { return getText (); } /** * Returns the receiver's parent, which must be a Table. * * @return the receiver's parent * * @exception SWTException */ public Table getParent () { checkWidget (); return parent; } /** * 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. * * @return the moveable attribute * * @exception SWTException * * @see Table#getColumnOrder() * @see Table#setColumnOrder(int[]) * @see TableColumn#setMoveable(boolean) * @see SWT#Move * * @since 3.1 */ public boolean getMoveable () { checkWidget (); int [] flags = new int [1]; OS.GetDataBrowserPropertyFlags (parent.handle, id, flags); return (flags [0] & OS.kDataBrowserListViewMovableColumn) != 0; } /** * Gets the resizable attribute. A column that is * not resizable cannot be dragged by the user but * may be resized by the programmer. * * @return the resizable attribute * * @exception SWTException */ public boolean getResizable () { checkWidget (); return resizable; } /** * Returns the receiver's tool tip text, or null if it has * not been set. * * @return the receiver's tool tip text * * @exception SWTException * * @since 3.2 */ public String getToolTipText () { checkWidget (); return toolTipText; } /** * Gets the width of the receiver. * * @return the width * * @exception SWTException */ public int getWidth () { checkWidget (); short [] width = new short [1]; OS.GetDataBrowserTableViewNamedColumnWidth (parent.handle, id, width); return Math.max (0, width [0]); } /** * 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. * * @exception SWTException * */ public void pack () { checkWidget (); GC gc = new GC (parent); int width = gc.stringExtent (text).x; if (iconRef != 0 || (image != null && OS.VERSION >= 0x1040)) { /* Note that the image is stretched to the header height */ width += parent.headerHeight; if (text.length () != 0) width += parent.getGap (); } int index = parent.indexOf (this); for (int i=0; i *
  • ERROR_NULL_ARGUMENT - if the listener is null
  • * * @exception SWTException * * @see ControlListener * @see #addControlListener */ public void removeControlListener (ControlListener listener) { checkWidget (); if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); if (eventTable == null) return; eventTable.unhook (SWT.Move, listener); eventTable.unhook (SWT.Resize, listener); } /** * Removes the listener from the collection of listeners who will * be notified when the control is selected. * * @param listener the listener which should no longer be notified * * @exception IllegalArgumentException * @exception SWTException * * @see SelectionListener * @see #addSelectionListener */ public void removeSelectionListener(SelectionListener listener) { checkWidget (); if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); if (eventTable == null) return; eventTable.unhook (SWT.Selection, listener); eventTable.unhook (SWT.DefaultSelection,listener); } void resized (int newWidth) { lastWidth = newWidth; sendEvent (SWT.Resize); if (isDisposed ()) return; boolean moved = false; int [] order = parent.getColumnOrder (); TableColumn [] columns = parent.getColumns (); for (int i=0; iLEFT, RIGHT * or CENTER. * * @param alignment the new alignment * * @exception SWTException */ public void setAlignment (int alignment) { checkWidget (); if ((alignment & (SWT.LEFT | SWT.RIGHT | SWT.CENTER)) == 0) return; int index = parent.indexOf (this); if (index == -1 || index == 0) return; style &= ~(SWT.LEFT | SWT.RIGHT | SWT.CENTER); style |= alignment & (SWT.LEFT | SWT.RIGHT | SWT.CENTER); updateHeader (); } public void setImage (Image image) { checkWidget(); if (image != null && image.isDisposed ()) { error (SWT.ERROR_INVALID_ARGUMENT); } int index = parent.indexOf (this); if (index == -1) return; if (iconRef != 0) { OS.ReleaseIconRef (iconRef); iconRef = 0; } super.setImage (image); if (image != null) { if (OS.VERSION < 0x1040) { iconRef = createIconRef (image); } } updateHeader (); } /** * 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. * * @param moveable the moveable attribute * * @exception SWTException * * @see Table#setColumnOrder(int[]) * @see Table#getColumnOrder() * @see TableColumn#getMoveable() * @see SWT#Move * * @since 3.1 */ public void setMoveable (boolean moveable) { checkWidget (); int [] flags = new int [1]; OS.GetDataBrowserPropertyFlags (parent.handle, id, flags); if (moveable) { flags [0] |= OS.kDataBrowserListViewMovableColumn; } else { flags [0] &= ~OS.kDataBrowserListViewMovableColumn; } OS.SetDataBrowserPropertyFlags (parent.handle, id, flags [0]); } /** * Sets the resizable attribute. A column that is * resizable can be resized by the user dragging the * edge of the header. A column that is not resizable * cannot be dragged by the user but may be resized * by the programmer. * * @param resizable the resize attribute * * @exception SWTException */ public void setResizable (boolean resizable) { checkWidget (); this.resizable = resizable; updateHeader (); } public void setText (String string) { checkWidget (); if (string == null) error (SWT.ERROR_NULL_ARGUMENT); super.setText (string); updateHeader (); } /** * Sets the receiver's tool tip text to the argument, which * may be null indicating that no tool tip text should be shown. * * @param string the new tool tip text (or null) * * @exception SWTException * * @since 3.2 */ public void setToolTipText (String string) { checkWidget(); toolTipText = string; } /** * Sets the width of the receiver. * * @param width the new width * * @exception SWTException */ public void setWidth (int width) { checkWidget (); if (width < 0) return; OS.SetDataBrowserTableViewNamedColumnWidth (parent.handle, id, (short) width); updateHeader (); if (width != lastWidth) resized (width); } void updateHeader () { char [] buffer = new char [text.length ()]; text.getChars (0, buffer.length, buffer, 0); int length = fixMnemonic (buffer); int str = OS.CFStringCreateWithCharacters (OS.kCFAllocatorDefault, buffer, length); if (str == 0) error (SWT.ERROR_CANNOT_SET_TEXT); DataBrowserListViewHeaderDesc desc = new DataBrowserListViewHeaderDesc (); desc.version = OS.kDataBrowserListViewLatestHeaderDesc; desc.btnFontStyle_just = OS.teFlushLeft; if ((style & SWT.CENTER) != 0) desc.btnFontStyle_just = OS.teCenter; if ((style & SWT.RIGHT) != 0) desc.btnFontStyle_just = OS.teFlushRight; desc.btnFontStyle_flags |= OS.kControlUseJustMask; if (resizable) { desc.minimumWidth = 0; desc.maximumWidth = 0x7fff; } else { short [] width = new short [1]; OS.GetDataBrowserTableViewNamedColumnWidth (parent.handle, id, width); desc.minimumWidth = desc.maximumWidth = width [0]; } desc.titleString = str; if (OS.VERSION < 0x1040) { desc.btnContentInfo_contentType = (short) (iconRef != 0 ? OS.kControlContentIconRef : OS.kControlContentTextOnly); desc.btnContentInfo_iconRef = iconRef; } else { if (image != null) { desc.btnContentInfo_contentType = OS.kControlContentCGImageRef; desc.btnContentInfo_iconRef = image.handle; } } OS.SetDataBrowserListViewHeaderDesc (parent.handle, id, desc); OS.CFRelease (str); } }