org.eclipse.swt.widgets.Button Maven / Gradle / Ivy
Show all versions of org.eclipse.swt.gtk.linux.x86 Show documentation
/******************************************************************************* * Copyright (c) 2000, 2016 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.swt.widgets; import org.eclipse.swt.*; import org.eclipse.swt.events.*; import org.eclipse.swt.graphics.*; import org.eclipse.swt.internal.*; import org.eclipse.swt.internal.gtk.*; /** * Instances of this class represent a selectable user interface object that * issues notification when pressed and released. *
,*
*- Styles:
*- ARROW, CHECK, PUSH, RADIO, TOGGLE, FLAT, WRAP
*- UP, DOWN, LEFT, RIGHT, CENTER
*- Events:
*- Selection
** Note: Only one of the styles ARROW, CHECK, PUSH, RADIO, and TOGGLE * may be specified. *
* Note: Only one of the styles LEFT, RIGHT, and CENTER may be specified. *
* Note: Only one of the styles UP, DOWN, LEFT, and RIGHT may be specified * when the ARROW style is specified. *
* IMPORTANT: This class is not intended to be subclassed. *
* * @see Button snippets * @see SWT Example: ControlExample * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Button extends Control { int /*long*/ boxHandle, labelHandle, imageHandle, arrowHandle, groupHandle; boolean selected, grayed; ImageList imageList; Image image; String text; GdkRGBA background; static final int INNER_BORDER = 1; static final int DEFAULT_BORDER = 1; /** * Constructs a new instance of this class given its parent * and a style value describing its behavior and appearance. ** The style value is either one of the style constants defined in * class
* * @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 IllegalArgumentExceptionSWT
which is applicable to instances of this * class, or must be built by bitwise OR'ing together * (that is, using theint
"|" operator) two or more * of thoseSWT
style constants. The class description * lists the style constants that are applicable to the class. * Style bits are also inherited from superclasses. **
* @exception SWTException- ERROR_NULL_ARGUMENT - if the parent is null
**
* * @see SWT#ARROW * @see SWT#CHECK * @see SWT#PUSH * @see SWT#RADIO * @see SWT#TOGGLE * @see SWT#FLAT * @see SWT#UP * @see SWT#DOWN * @see SWT#LEFT * @see SWT#RIGHT * @see SWT#CENTER * @see Widget#checkSubclass * @see Widget#getStyle */ public Button (Composite parent, int style) { super (parent, checkStyle (style)); } static int checkStyle (int style) { style = checkBits (style, SWT.PUSH, SWT.ARROW, SWT.CHECK, SWT.RADIO, SWT.TOGGLE, 0); if ((style & (SWT.PUSH | SWT.TOGGLE)) != 0) { return checkBits (style, SWT.CENTER, SWT.LEFT, SWT.RIGHT, 0, 0, 0); } if ((style & (SWT.CHECK | SWT.RADIO)) != 0) { return checkBits (style, SWT.LEFT, SWT.RIGHT, SWT.CENTER, 0, 0, 0); } if ((style & SWT.ARROW) != 0) { style |= SWT.NO_FOCUS; return checkBits (style, SWT.UP, SWT.DOWN, SWT.LEFT, SWT.RIGHT, 0, 0); } return style; } static GtkBorder getBorder (byte[] border, int /*long*/ handle, int defaultBorder) { GtkBorder gtkBorder = new GtkBorder(); int /*long*/ [] borderPtr = new int /*long*/ [1]; GTK.gtk_widget_style_get (handle, border, borderPtr,0); if (borderPtr[0] != 0) { OS.memmove (gtkBorder, borderPtr[0], GtkBorder.sizeof); GTK.gtk_border_free(borderPtr[0]); return gtkBorder; } gtkBorder.left = defaultBorder; gtkBorder.top = defaultBorder; gtkBorder.right = defaultBorder; gtkBorder.bottom = defaultBorder; return gtkBorder; } @Override GdkRGBA getContextBackgroundGdkRGBA () { assert GTK.GTK3 : "GTK3 code was run by GTK2"; if (background != null && (state & BACKGROUND) != 0) { return background; } return defaultBackground(); } /** * 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- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent
*- ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass
*SelectionListener
* interface. **
*widgetSelected
is called when the control is selected by the user. *widgetDefaultSelected
is not called. ** When the
* * @param listener the listener which should be notified * * @exception IllegalArgumentExceptionSWT.RADIO
style bit is set, thewidgetSelected
method is * also called when the receiver loses selection because another item in the same radio group * was selected by the user. DuringwidgetSelected
the application can use *getSelection()
to determine the current selected state of the receiver. **
* @exception SWTException- ERROR_NULL_ARGUMENT - if the listener is null
**
* * @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); } @Override Point computeSizeInPixels (int wHint, int hHint, boolean changed) { checkWidget (); if (wHint != SWT.DEFAULT && wHint < 0) wHint = 0; if (hHint != SWT.DEFAULT && hHint < 0) hHint = 0; /* * Feature in GTK, GtkCheckButton and GtkRadioButton allocate * only the minimum size necessary for its child. This causes the child * alignment to fail. The fix is to set the child size to the size * of the button. */ forceResize (); int [] reqWidth = null, reqHeight = null; if ((style & (SWT.CHECK | SWT.RADIO)) != 0) { reqWidth = new int [1]; reqHeight = new int [1]; GTK.gtk_widget_get_size_request (boxHandle, reqWidth, reqHeight); GTK.gtk_widget_set_size_request (boxHandle, -1, -1); } Point size; boolean wrap = labelHandle != 0 && (style & SWT.WRAP) != 0 && GTK.gtk_widget_get_visible (labelHandle); if (wrap) { int borderWidth = GTK.gtk_container_get_border_width (handle); int[] focusWidth = new int[1]; GTK.gtk_widget_style_get (handle, OS.focus_line_width, focusWidth, 0); int[] focusPadding = new int[1]; GTK.gtk_widget_style_get (handle, OS.focus_padding, focusPadding, 0); int trimWidth = 2 * (borderWidth + focusWidth [0] + focusPadding [0]), trimHeight = trimWidth; int indicatorHeight = 0; if ((style & (SWT.CHECK | SWT.RADIO)) != 0) { int[] indicatorSize = new int[1]; GTK.gtk_widget_style_get (handle, OS.indicator_size, indicatorSize, 0); int[] indicatorSpacing = new int[1]; GTK.gtk_widget_style_get (handle, OS.indicator_spacing, indicatorSpacing, 0); indicatorHeight = indicatorSize [0] + 2 * indicatorSpacing [0]; trimWidth += indicatorHeight + indicatorSpacing [0]; } else { Point thickness = getThickness (handle); trimWidth += thickness.x * 2; trimHeight += thickness.y * 2; GtkBorder innerBorder = getBorder (OS.inner_border, handle, INNER_BORDER); trimWidth += innerBorder.left + innerBorder.right; trimHeight += innerBorder.top + innerBorder.bottom; if (GTK.gtk_widget_get_can_default (handle)) { GtkBorder defaultBorder = getBorder (OS.default_border, handle, DEFAULT_BORDER); trimWidth += defaultBorder.left + defaultBorder.right; trimHeight += defaultBorder.top + defaultBorder.bottom; } } int imageWidth = 0, imageHeight = 0; if (GTK.gtk_widget_get_visible (imageHandle)) { GtkRequisition requisition = new GtkRequisition (); gtk_widget_get_preferred_size (imageHandle, requisition); imageWidth = requisition.width; imageHeight = requisition.height; int [] spacing = new int [1]; OS.g_object_get (boxHandle, OS.spacing, spacing, 0); imageWidth += spacing [0]; } int /*long*/ labelLayout = GTK.gtk_label_get_layout (labelHandle); int pangoWidth = OS.pango_layout_get_width (labelLayout); if (wHint != SWT.DEFAULT) { OS.pango_layout_set_width (labelLayout, Math.max (1, (wHint - imageWidth - trimWidth)) * OS.PANGO_SCALE); } else { OS.pango_layout_set_width (labelLayout, -1); } int [] w = new int [1], h = new int [1]; OS.pango_layout_get_pixel_size (labelLayout, w, h); OS.pango_layout_set_width (labelLayout, pangoWidth); size = new Point(0, 0); size.x += wHint == SWT.DEFAULT ? w [0] + imageWidth + trimWidth : wHint; size.y += hHint == SWT.DEFAULT ? Math.max(Math.max(imageHeight, indicatorHeight), h [0]) + trimHeight : hHint; } else { size = computeNativeSize (handle, wHint, hHint, changed); } if ((style & (SWT.CHECK | SWT.RADIO)) != 0) { GTK.gtk_widget_set_size_request (boxHandle, reqWidth [0], reqHeight [0]); } if (wHint != SWT.DEFAULT || hHint != SWT.DEFAULT) { if (GTK.gtk_widget_get_can_default (handle)) { GtkBorder border = getBorder (OS.default_border, handle, DEFAULT_BORDER); if (wHint != SWT.DEFAULT) size.x += border.left + border.right; if (hHint != SWT.DEFAULT) size.y += border.top + border.bottom; } } return size; } @Override void createHandle (int index) { state |= HANDLE; if ((style & (SWT.PUSH | SWT.TOGGLE)) == 0) state |= THEME_BACKGROUND; int bits = SWT.ARROW | SWT.TOGGLE | SWT.CHECK | SWT.RADIO | SWT.PUSH; fixedHandle = OS.g_object_new (display.gtk_fixed_get_type (), 0); if (fixedHandle == 0) error (SWT.ERROR_NO_HANDLES); GTK.gtk_widget_set_has_window (fixedHandle, true); switch (style & bits) { case SWT.ARROW: if (GTK.GTK3) { byte arrowType [] = GTK.GTK_NAMED_ICON_GO_UP; if ((style & SWT.UP) != 0) arrowType = GTK.GTK_NAMED_ICON_GO_UP; if ((style & SWT.DOWN) != 0) arrowType = GTK.GTK_NAMED_ICON_GO_DOWN; if ((style & SWT.LEFT) != 0) arrowType = GTK.GTK_NAMED_ICON_GO_PREVIOUS; if ((style & SWT.RIGHT) != 0) arrowType = GTK.GTK_NAMED_ICON_GO_NEXT; arrowHandle = GTK.gtk_image_new_from_icon_name (arrowType, GTK.GTK_ICON_SIZE_MENU); } else { //GTK2 int arrowType = GTK.GTK_ARROW_UP; if ((style & SWT.UP) != 0) arrowType = GTK.GTK_ARROW_UP; if ((style & SWT.DOWN) != 0) arrowType = GTK.GTK_ARROW_DOWN; if ((style & SWT.LEFT) != 0) arrowType = GTK.GTK_ARROW_LEFT; if ((style & SWT.RIGHT) != 0) arrowType = GTK.GTK_ARROW_RIGHT; arrowHandle = GTK.gtk_arrow_new (arrowType, GTK.GTK_SHADOW_OUT); } if (arrowHandle == 0) error (SWT.ERROR_NO_HANDLES); handle = GTK.gtk_button_new (); if (handle == 0) error (SWT.ERROR_NO_HANDLES); break; case SWT.TOGGLE: handle = GTK.gtk_toggle_button_new (); if (handle == 0) error (SWT.ERROR_NO_HANDLES); break; case SWT.CHECK: handle = GTK.gtk_check_button_new (); if (handle == 0) error (SWT.ERROR_NO_HANDLES); break; case SWT.RADIO: /* * Feature in GTK. In GTK, radio button must always be part of * a radio button group. In a GTK radio group, one button is always * selected. This means that it is not possible to have a single * radio button that is unselected. This is necessary to allow * applications to implement their own radio behavior or use radio * buttons outside of radio groups. The fix is to create a hidden * radio button for each radio button we create and add them * to the same group. This allows the visible button to be * unselected. */ groupHandle = GTK.gtk_radio_button_new (0); if (groupHandle == 0) error (SWT.ERROR_NO_HANDLES); OS.g_object_ref (groupHandle); OS.g_object_ref_sink (groupHandle); handle = GTK.gtk_radio_button_new (GTK.gtk_radio_button_get_group (groupHandle)); if (handle == 0) error (SWT.ERROR_NO_HANDLES); break; case SWT.PUSH: default: handle = GTK.gtk_button_new (); if (handle == 0) error (SWT.ERROR_NO_HANDLES); GTK.gtk_widget_set_can_default (handle, true); break; } if ((style & SWT.ARROW) != 0) { // Use gtk_button_set_image() on GTK3 to prevent icons from being // trimmed with smaller sized buttons; see bug 528284. if (GTK.GTK3) { GTK.gtk_button_set_image(handle, arrowHandle); } else { GTK.gtk_container_add (handle, arrowHandle); } } else { boxHandle = gtk_box_new (GTK.GTK_ORIENTATION_HORIZONTAL, false, 4); if (boxHandle == 0) error (SWT.ERROR_NO_HANDLES); labelHandle = GTK.gtk_label_new_with_mnemonic (null); if (labelHandle == 0) error (SWT.ERROR_NO_HANDLES); imageHandle = GTK.gtk_image_new (); if (imageHandle == 0) error (SWT.ERROR_NO_HANDLES); GTK.gtk_container_add (handle, boxHandle); GTK.gtk_container_add (boxHandle, imageHandle); GTK.gtk_container_add (boxHandle, labelHandle); if ((style & SWT.WRAP) != 0) { GTK.gtk_label_set_line_wrap (labelHandle, true); GTK.gtk_label_set_line_wrap_mode (labelHandle, OS.PANGO_WRAP_WORD_CHAR); } } GTK.gtk_container_add (fixedHandle, handle); if ((style & SWT.ARROW) != 0) return; // In GTK 3 font description is inherited from parent widget which is not how SWT has always worked, // reset to default font to get the usual behavior if (GTK.GTK3) { setFontDescription(defaultFont().handle); } _setAlignment (style & (SWT.LEFT | SWT.CENTER | SWT.RIGHT)); } @Override void createWidget (int index) { super.createWidget (index); text = ""; } @Override void deregister () { super.deregister (); if (boxHandle != 0) display.removeWidget (boxHandle); if (labelHandle != 0) display.removeWidget (labelHandle); if (imageHandle != 0) display.removeWidget (imageHandle); if (arrowHandle != 0) display.removeWidget (arrowHandle); } @Override int /*long*/ fontHandle () { if (labelHandle != 0) return labelHandle; return super.fontHandle (); } /** * Returns a value which describes the position of the * text or image in the receiver. The value will be one of *- ERROR_WIDGET_DISPOSED - if the receiver has been disposed
*- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*LEFT
,RIGHT
orCENTER
* unless the receiver is anARROW
button, in * which case, the alignment will indicate the direction of * the arrow (one ofLEFT
,RIGHT
, *UP
orDOWN
). * * @return the alignment * * @exception SWTException*
*/ public int getAlignment () { checkWidget (); if ((style & SWT.ARROW) != 0) { if ((style & SWT.UP) != 0) return SWT.UP; if ((style & SWT.DOWN) != 0) return SWT.DOWN; if ((style & SWT.LEFT) != 0) return SWT.LEFT; if ((style & SWT.RIGHT) != 0) return SWT.RIGHT; return SWT.UP; } 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; } /** * Returns- ERROR_WIDGET_DISPOSED - if the receiver has been disposed
*- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*true
if the receiver is grayed, * and false otherwise. When the widget does not have * theCHECK
style, return false. * * @return the grayed state of the checkbox * * @exception SWTException*
* * @since 3.4 */ public boolean getGrayed () { checkWidget(); if ((style & SWT.CHECK) == 0) return false; return grayed; } /** * Returns the receiver's image if it has one, or null * if it does not. * * @return the receiver's image * * @exception SWTException- ERROR_WIDGET_DISPOSED - if the receiver has been disposed
*- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
**
*/ public Image getImage () { checkWidget (); return image; } @Override String getNameText () { return getText (); } /** * Returns- ERROR_WIDGET_DISPOSED - if the receiver has been disposed
*- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*true
if the receiver is selected, * and false otherwise. ** When the receiver is of type
CHECK
orRADIO
, * it is selected when it is checked. When it is of typeTOGGLE
, * it is selected when it is pushed in. If the receiver is of any other type, * this method returns false. * * @return the selection state * * @exception SWTException*
*/ public boolean getSelection () { checkWidget (); if ((style & (SWT.CHECK | SWT.RADIO | SWT.TOGGLE)) == 0) return false; return GTK.gtk_toggle_button_get_active (handle); } /** * Returns the receiver's text, which will be an empty * string if it has never been set or if the receiver is * an- ERROR_WIDGET_DISPOSED - if the receiver has been disposed
*- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*ARROW
button. * * @return the receiver's text * * @exception SWTException*
*/ public String getText () { checkWidget(); if ((style & SWT.ARROW) != 0) return ""; return text; } @Override int /*long*/ gtk_button_press_event (int /*long*/ widget, int /*long*/ event) { int /*long*/ result = super.gtk_button_press_event (widget, event); if (result != 0) return result; if ((style & SWT.RADIO) != 0) selected = getSelection (); return result; } @Override int /*long*/ gtk_clicked (int /*long*/ widget) { if (containedInRegion(lastInput.x, lastInput.y)) return 0; if ((style & SWT.RADIO) != 0) { if ((parent.getStyle () & SWT.NO_RADIO_GROUP) != 0) { setSelection (!selected); } else { selectRadio (); } } else { if ((style & SWT.CHECK) != 0) { if (grayed) { if (GTK.gtk_toggle_button_get_active (handle)) { GTK.gtk_toggle_button_set_inconsistent (handle, true); } else { GTK.gtk_toggle_button_set_inconsistent (handle, false); } } } } sendSelectionEvent (SWT.Selection); return 0; } @Override int /*long*/ gtk_focus_in_event (int /*long*/ widget, int /*long*/ event) { int /*long*/ result = super.gtk_focus_in_event (widget, event); // widget could be disposed at this point if (handle == 0) return 0; if ((style & SWT.PUSH) != 0 && GTK.gtk_widget_has_default (handle)) { Decorations menuShell = menuShell (); menuShell.defaultButton = this; } return result; } @Override int /*long*/ gtk_focus_out_event (int /*long*/ widget, int /*long*/ event) { int /*long*/ result = super.gtk_focus_out_event (widget, event); // widget could be disposed at this point if (handle == 0) return 0; if ((style & SWT.PUSH) != 0) { Decorations menuShell = menuShell (); if (menuShell.defaultButton == this) { menuShell.defaultButton = null; } } return result; } @Override int /*long*/ gtk_key_press_event (int /*long*/ widget, int /*long*/ event) { int /*long*/ result = super.gtk_key_press_event (widget, event); if (result != 0) return result; if ((style & SWT.RADIO) != 0) selected = getSelection (); return result; } @Override void hookEvents () { super.hookEvents(); OS.g_signal_connect_closure (handle, OS.clicked, display.getClosure (CLICKED), false); if (labelHandle != 0) { OS.g_signal_connect_closure_by_id (labelHandle, display.signalIds [MNEMONIC_ACTIVATE], 0, display.getClosure (MNEMONIC_ACTIVATE), false); } } @Override boolean isDescribedByLabel () { return false; } @Override boolean mnemonicHit (char key) { if (labelHandle == 0) return false; boolean result = super.mnemonicHit (labelHandle, key); if (result) setFocus (); return result; } @Override boolean mnemonicMatch (char key) { if (labelHandle == 0) return false; return mnemonicMatch (labelHandle, key); } @Override void register () { super.register (); if (boxHandle != 0) display.addWidget (boxHandle, this); if (labelHandle != 0) display.addWidget (labelHandle, this); if (imageHandle != 0) display.addWidget (imageHandle, this); if (arrowHandle != 0) display.addWidget (arrowHandle, this); } @Override void releaseHandle () { super.releaseHandle (); boxHandle = imageHandle = labelHandle = arrowHandle = 0; } @Override void releaseWidget () { super.releaseWidget (); if (groupHandle != 0) OS.g_object_unref (groupHandle); groupHandle = 0; if (imageList != null) imageList.dispose (); imageList = null; image = null; text = null; } /** * Removes the listener from the collection of listeners who will * be notified when the control is selected by the user. * * @param listener the listener which should no longer be notified * * @exception IllegalArgumentException- ERROR_WIDGET_DISPOSED - if the receiver has been disposed
*- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
**
* @exception SWTException- ERROR_NULL_ARGUMENT - if the listener is null
**
* * @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); } @Override void resizeHandle (int width, int height) { if (GTK.GTK3) { if ((style & (SWT.CHECK | SWT.RADIO)) != 0 && (style & SWT.WRAP) == 0) { OS.swt_fixed_resize (GTK.gtk_widget_get_parent (topHandle()), topHandle(), width, height); } else { super.resizeHandle(width, height); } } else { super.resizeHandle (width, height); /* * Feature in GTK, GtkCheckButton and GtkRadioButton allocate * only the minimum size necessary for its child. This causes the child * alignment to fail. The fix is to set the child size to the size * of the button. */ if ((style & (SWT.CHECK | SWT.RADIO)) != 0) { GTK.gtk_widget_set_size_request (boxHandle, width, -1); } } } void selectRadio () { /* * This code is intentionally commented. When two groups * of radio buttons with the same parent are separated by * another control, the correct behavior should be that * the two groups act independently. This is consistent * with radio tool and menu items. The commented code * implements this behavior. */ // int index = 0; // Control [] children = parent._getChildren (); // while (index < children.length && children [index] != this) index++; // int i = index - 1; // while (i >= 0 && children [i].setRadioSelection (false)) --i; // int j = index + 1; // while (j < children.length && children [j].setRadioSelection (false)) j++; // setSelection (true); Control [] children = parent._getChildren (); for (int i=0; i- ERROR_WIDGET_DISPOSED - if the receiver has been disposed
*- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*LEFT RIGHT
orCENTER
* unless the receiver is anARROW
button, in * which case, the argument indicates the direction of * the arrow (one ofLEFT
,RIGHT
, *UP
orDOWN
). * * @param alignment the new alignment * * @exception SWTException
-
*
- ERROR_WIDGET_DISPOSED - if the receiver has been disposed *
- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver *
-
*
- ERROR_WIDGET_DISPOSED - if the receiver has been disposed *
- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver *
null
indicating that no image should be displayed.
* * Note that a Button can display an image and text simultaneously * on Windows (starting with XP), GTK+ and OSX. On other platforms, * a Button that has an image and text set into it will display the * image or text that was set most recently. *
* @param image the image to display on the receiver (may benull
)
*
* @exception IllegalArgumentException -
*
- ERROR_INVALID_ARGUMENT - if the image has been disposed *
-
*
- ERROR_WIDGET_DISPOSED - if the receiver has been disposed *
- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver *
CHECK
,
* RADIO
, or TOGGLE
.
*
*
* When the receiver is of type CHECK
or RADIO
,
* it is selected when it is checked. When it is of type TOGGLE
,
* it is selected when it is pushed in.
*
* @param selected the new selection state
*
* @exception SWTException
-
*
- ERROR_WIDGET_DISPOSED - if the receiver has been disposed *
- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver *
* This method sets the button label. The label may include * the mnemonic character but must not contain line delimiters. *
** Mnemonics are indicated by an '&' that causes the next * character to be the mnemonic. When the user presses a * key sequence that matches the mnemonic, a selection * event occurs. On most platforms, the mnemonic appears * underlined but may be emphasized in a platform specific * manner. The mnemonic indicator character '&' can be * escaped by doubling it in the string, causing a single * '&' to be displayed. *
* Note that a Button can display an image and text simultaneously * on Windows (starting with XP), GTK+ and OSX. On other platforms, * a Button that has an image and text set into it will display the * image or text that was set most recently. *
* Also note, if control characters like '\n', '\t' etc. are used * in the string, then the behavior is platform dependent. *
* @param string the new text * * @exception IllegalArgumentException-
*
- ERROR_NULL_ARGUMENT - if the text is null *
-
*
- ERROR_WIDGET_DISPOSED - if the receiver has been disposed *
- ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver *