All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.swt.widgets.Display Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2018 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 java.io.*;
import java.net.*;
import java.util.*;
import java.util.Map.*;
import java.util.function.*;
import java.util.regex.*;
import java.util.regex.Pattern;

import org.eclipse.swt.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.internal.*;
import org.eclipse.swt.internal.GDBus.*;
import org.eclipse.swt.internal.cairo.*;
import org.eclipse.swt.internal.gtk.*;

/**
 * Instances of this class are responsible for managing the
 * connection between SWT and the underlying operating
 * system. Their most important function is to implement
 * the SWT event loop in terms of the platform event model.
 * They also provide various methods for accessing information
 * about the operating system, and have overall control over
 * the operating system resources which SWT allocates.
 * 

* Applications which are built with SWT will almost always * require only a single display. In particular, some platforms * which SWT supports will not allow more than one active * display. In other words, some platforms do not support * creating a new display if one already exists that has not been * sent the dispose() message. *

* In SWT, the thread which creates a Display * instance is distinguished as the user-interface thread * for that display. *

* The user-interface thread for a particular display has the * following special attributes: *
    *
  • * The event loop for that display must be run from the thread. *
  • *
  • * Some SWT API methods (notably, most of the public methods in * Widget and its subclasses), may only be called * from the thread. (To support multi-threaded user-interface * applications, class Display provides inter-thread * communication methods which allow threads other than the * user-interface thread to request that it perform operations * on their behalf.) *
  • *
  • * The thread is not allowed to construct other * Displays until that display has been disposed. * (Note that, this is in addition to the restriction mentioned * above concerning platform support for multiple displays. Thus, * the only way to have multiple simultaneously active displays, * even on platforms which support it, is to have multiple threads.) *
  • *
* Enforcing these attributes allows SWT to be implemented directly * on the underlying operating system's event model. This has * numerous benefits including smaller footprint, better use of * resources, safer memory management, clearer program logic, * better performance, and fewer overall operating system threads * required. The down side however, is that care must be taken * (only) when constructing multi-threaded applications to use the * inter-thread communication mechanisms which this class provides * when required. *

* All SWT API methods which may only be called from the user-interface * thread are distinguished in their documentation by indicating that * they throw the "ERROR_THREAD_INVALID_ACCESS" * SWT exception. *

*
*
Styles:
*
(none)
*
Events:
*
Close, Dispose, OpenDocument, Settings, Skin
*
*

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

* @see #syncExec * @see #asyncExec * @see #wake * @see #readAndDispatch * @see #sleep * @see Device#dispose * @see Display snippets * @see Sample code and further information * @noextend This class is not intended to be subclassed by clients. */ public class Display extends Device { static boolean strictChecks = System.getProperty("org.eclipse.swt.internal.gtk.enableStrictChecks") != null; private static final int SLOT_IN_USE = -2; private static final int LAST_TABLE_INDEX = -1; /* Events Dispatching and Callback */ int gdkEventCount; int /*long*/ [] gdkEvents; Widget [] gdkEventWidgets; int [] dispatchEvents; Event [] eventQueue; int /*long*/ fds; int allocated_nfds; boolean wake; int [] max_priority = new int [1], timeout = new int [1]; Callback eventCallback, filterCallback; int /*long*/ eventProc, filterProc, windowProc2, windowProc3, windowProc4, windowProc5, windowProc6; Callback windowCallback2, windowCallback3, windowCallback4, windowCallback5, windowCallback6; EventTable eventTable, filterTable; static String APP_NAME = "SWT"; //$NON-NLS-1$ static String APP_VERSION = ""; //$NON-NLS-1$ static final String DISPATCH_EVENT_KEY = "org.eclipse.swt.internal.gtk.dispatchEvent"; //$NON-NLS-1$ static final String ADD_WIDGET_KEY = "org.eclipse.swt.internal.addWidget"; //$NON-NLS-1$ int /*long*/ [] closures, closuresProc; int [] closuresCount; int [] signalIds; int /*long*/ shellMapProcClosure; /* Widget Table */ int [] indexTable; int freeSlot; int /*long*/ lastHandle; Widget lastWidget; Widget [] widgetTable; final static int GROW_SIZE = 1024; static final int SWT_OBJECT_INDEX; static final int SWT_OBJECT_INDEX1; static final int SWT_OBJECT_INDEX2; static { byte [] buffer = Converter.wcsToMbcs ("SWT_OBJECT_INDEX", true); //$NON-NLS-1$ SWT_OBJECT_INDEX = OS.g_quark_from_string (buffer); buffer = Converter.wcsToMbcs ("SWT_OBJECT_INDEX1", true); //$NON-NLS-1$ SWT_OBJECT_INDEX1 = OS.g_quark_from_string (buffer); buffer = Converter.wcsToMbcs ("SWT_OBJECT_INDEX2", true); //$NON-NLS-1$ SWT_OBJECT_INDEX2 = OS.g_quark_from_string (buffer); } /* Modality */ Shell [] modalShells; Dialog modalDialog; static final String GET_MODAL_DIALOG = "org.eclipse.swt.internal.gtk.getModalDialog"; //$NON-NLS-1$ static final String SET_MODAL_DIALOG = "org.eclipse.swt.internal.gtk.setModalDialog"; //$NON-NLS-1$ /* Focus */ int focusEvent; Control focusControl; Shell activeShell; boolean activePending; boolean ignoreActivate, ignoreFocus; Tracker tracker; /* Input method resources */ Control imControl; int /*long*/ preeditWindow, preeditLabel; /* Sync/Async Widget Communication */ Synchronizer synchronizer = new Synchronizer (this); Consumer runtimeExceptionHandler = DefaultExceptionHandler.RUNTIME_EXCEPTION_HANDLER; Consumer errorHandler = DefaultExceptionHandler.RUNTIME_ERROR_HANDLER; Thread thread; /* Display Shutdown */ Runnable [] disposeList; /* Deferred Layout list */ Composite[] layoutDeferred; int layoutDeferredCount; /* System Tray */ Tray tray; TrayItem currentTrayItem; /* Timers */ int [] timerIds; Runnable [] timerList; Callback timerCallback; int /*long*/ timerProc; Callback windowTimerCallback; int /*long*/ windowTimerProc; /* Caret */ Caret currentCaret; Callback caretCallback; int caretId; int /*long*/ caretProc; /* Mnemonics */ Control mnemonicControl; /* Mouse hover */ int mouseHoverId; int /*long*/ mouseHoverHandle, mouseHoverProc; Callback mouseHoverCallback; /* Tooltip size allocate callback */ int /*long*/ sizeAllocateProc; Callback sizeAllocateCallback; int /*long*/ sizeRequestProc; Callback sizeRequestCallback; /* Shell map callback */ int /*long*/ shellMapProc; Callback shellMapCallback; /* Idle proc callback */ int /*long*/ idleProc; int idleHandle; Callback idleCallback; static final String ADD_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk.addIdleProc"; //$NON-NLS-1$ static final String REMOVE_IDLE_PROC_KEY = "org.eclipse.swt.internal.gtk.removeIdleProc"; //$NON-NLS-1$ Object idleLock = new Object(); boolean idleNeeded; /* GtkTreeView callbacks */ int /*long*/ cellDataProc; Callback cellDataCallback; /* Set direction callback */ int /*long*/ setDirectionProc; Callback setDirectionCallback; static final String GET_DIRECTION_PROC_KEY = "org.eclipse.swt.internal.gtk.getDirectionProc"; //$NON-NLS-1$ /* Set emissionProc callback */ int /*long*/ emissionProc; Callback emissionProcCallback; static final String GET_EMISSION_PROC_KEY = "org.eclipse.swt.internal.gtk.getEmissionProc"; //$NON-NLS-1$ /* Get all children callback */ int /*long*/ allChildrenProc, allChildren; Callback allChildrenCallback; /* Settings callbacks */ int /*long*/ signalProc; Callback signalCallback; int /*long*/ shellHandle; boolean settingsChanged, runSettings; static final int STYLE_SET = 1; static final int PROPERTY_NOTIFY = 2; /* Entry focus behaviour */ boolean entrySelectOnFocus; /* Enter/Exit events */ Control currentControl; /* Flush exposes */ int /*long*/ checkIfEventProc; Callback checkIfEventCallback; int /*long*/ flushWindow; boolean flushAll; GdkRectangle flushRect = new GdkRectangle (); XExposeEvent exposeEvent = new XExposeEvent (); int /*long*/ [] flushData = new int /*long*/ [1]; /* System Resources */ Image errorImage, infoImage, questionImage, warningImage; Cursor [] cursors = new Cursor [SWT.CURSOR_HAND + 1]; Resource [] resources; static final int RESOURCE_SIZE = 1 + 4 + SWT.CURSOR_HAND + 1; /* Colors, GTK2 */ GdkColor COLOR_WIDGET_DARK_SHADOW, COLOR_WIDGET_NORMAL_SHADOW, COLOR_WIDGET_LIGHT_SHADOW; GdkColor COLOR_WIDGET_HIGHLIGHT_SHADOW, COLOR_WIDGET_BACKGROUND, COLOR_WIDGET_FOREGROUND, COLOR_WIDGET_BORDER; GdkColor COLOR_LIST_FOREGROUND, COLOR_LIST_BACKGROUND, COLOR_LIST_SELECTION, COLOR_LIST_SELECTION_TEXT; GdkColor COLOR_LIST_SELECTION_INACTIVE, COLOR_LIST_SELECTION_TEXT_INACTIVE; GdkColor COLOR_INFO_BACKGROUND, COLOR_INFO_FOREGROUND, COLOR_LINK_FOREGROUND; GdkColor COLOR_TITLE_FOREGROUND, COLOR_TITLE_BACKGROUND, COLOR_TITLE_BACKGROUND_GRADIENT; GdkColor COLOR_TITLE_INACTIVE_FOREGROUND, COLOR_TITLE_INACTIVE_BACKGROUND, COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT; /* Colors, GTK3 */ GdkRGBA COLOR_WIDGET_DARK_SHADOW_RGBA, COLOR_WIDGET_NORMAL_SHADOW_RGBA, COLOR_WIDGET_LIGHT_SHADOW_RGBA; GdkRGBA COLOR_WIDGET_HIGHLIGHT_SHADOW_RGBA, COLOR_WIDGET_BACKGROUND_RGBA, COLOR_WIDGET_FOREGROUND_RGBA, COLOR_WIDGET_BORDER_RGBA; GdkRGBA COLOR_LIST_FOREGROUND_RGBA, COLOR_LIST_BACKGROUND_RGBA, COLOR_LIST_SELECTION_RGBA, COLOR_LIST_SELECTION_TEXT_RGBA; GdkRGBA COLOR_LIST_SELECTION_INACTIVE_RGBA, COLOR_LIST_SELECTION_TEXT_INACTIVE_RGBA; GdkRGBA COLOR_INFO_BACKGROUND_RGBA, COLOR_INFO_FOREGROUND_RGBA, COLOR_LINK_FOREGROUND_RGBA; GdkRGBA COLOR_TITLE_FOREGROUND_RGBA, COLOR_TITLE_BACKGROUND_RGBA, COLOR_TITLE_BACKGROUND_GRADIENT_RGBA; GdkRGBA COLOR_TITLE_INACTIVE_FOREGROUND_RGBA, COLOR_TITLE_INACTIVE_BACKGROUND_RGBA, COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT_RGBA; /* Initialize color list */ ArrayList colorList; /* Placeholder color ints since SWT system colors is missing them */ final int SWT_COLOR_LIST_SELECTION_TEXT_INACTIVE = 38; final int SWT_COLOR_LIST_SELECTION_INACTIVE = 39; /* Popup Menus */ Menu [] popups; /* Click count*/ int clickCount = 1; /* Entry inner border */ static final int INNER_BORDER = 2; /* Timestamp of the Last Received Events */ int lastEventTime, lastUserEventTime; /* Pango layout constructor */ int /*long*/ pangoLayoutNewProc; int /*long*/ pangoFontFamilyNewProc; int /*long*/ pangoFontFaceNewProc; /* IM Context constructor */ int /*long*/ imContextNewProc; /* GtkPrinterOptionWidget constructor */ int /*long*/ printerOptionWidgetNewProc; /* Custom Resize */ double resizeLocationX, resizeLocationY; int resizeBoundsX, resizeBoundsY, resizeBoundsWidth, resizeBoundsHeight; int resizeMode; /* Fixed Subclass */ static int /*long*/ fixed_type; static int /*long*/ fixed_info_ptr; static Callback fixedClassInitCallback, fixedMapCallback, fixedSizeAllocateCallback; static int /*long*/ fixedClassInitProc, fixedMapProc, fixedSizeAllocateProc, oldFixedSizeAllocateProc; /* Renderer Subclass */ static int /*long*/ text_renderer_type, pixbuf_renderer_type, toggle_renderer_type; static int /*long*/ text_renderer_info_ptr, pixbuf_renderer_info_ptr, toggle_renderer_info_ptr; static Callback rendererClassInitCallback, rendererRenderCallback, rendererGetSizeCallback; static Callback rendererGetPreferredWidthCallback; static int /*long*/ rendererClassInitProc, rendererRenderProc, rendererGetSizeProc; static int /*long*/ rendererGetPreferredWidthProc; /* Key Mappings */ static final int [] [] KeyTable = { /* Keyboard and Mouse Masks */ {GDK.GDK_Alt_L, SWT.ALT}, {GDK.GDK_Alt_R, SWT.ALT}, {GDK.GDK_Meta_L, SWT.ALT}, {GDK.GDK_Meta_R, SWT.ALT}, {GDK.GDK_Shift_L, SWT.SHIFT}, {GDK.GDK_Shift_R, SWT.SHIFT}, {GDK.GDK_Control_L, SWT.CONTROL}, {GDK.GDK_Control_R, SWT.CONTROL}, {GDK.GDK_ISO_Level3_Shift, SWT.ALT_GR}, // {OS.GDK_????, SWT.COMMAND}, // {OS.GDK_????, SWT.COMMAND}, /* Non-Numeric Keypad Keys */ {GDK.GDK_Up, SWT.ARROW_UP}, {GDK.GDK_KP_Up, SWT.ARROW_UP}, {GDK.GDK_Down, SWT.ARROW_DOWN}, {GDK.GDK_KP_Down, SWT.ARROW_DOWN}, {GDK.GDK_Left, SWT.ARROW_LEFT}, {GDK.GDK_KP_Left, SWT.ARROW_LEFT}, {GDK.GDK_Right, SWT.ARROW_RIGHT}, {GDK.GDK_KP_Right, SWT.ARROW_RIGHT}, {GDK.GDK_Page_Up, SWT.PAGE_UP}, {GDK.GDK_KP_Page_Up, SWT.PAGE_UP}, {GDK.GDK_Page_Down, SWT.PAGE_DOWN}, {GDK.GDK_KP_Page_Down, SWT.PAGE_DOWN}, {GDK.GDK_Home, SWT.HOME}, {GDK.GDK_KP_Home, SWT.HOME}, {GDK.GDK_End, SWT.END}, {GDK.GDK_KP_End, SWT.END}, {GDK.GDK_Insert, SWT.INSERT}, {GDK.GDK_KP_Insert, SWT.INSERT}, /* Virtual and Ascii Keys */ {GDK.GDK_BackSpace, SWT.BS}, {GDK.GDK_Return, SWT.CR}, {GDK.GDK_Delete, SWT.DEL}, {GDK.GDK_KP_Delete, SWT.DEL}, {GDK.GDK_Escape, SWT.ESC}, {GDK.GDK_Linefeed, SWT.LF}, {GDK.GDK_Tab, SWT.TAB}, {GDK.GDK_ISO_Left_Tab, SWT.TAB}, /* Functions Keys */ {GDK.GDK_F1, SWT.F1}, {GDK.GDK_F2, SWT.F2}, {GDK.GDK_F3, SWT.F3}, {GDK.GDK_F4, SWT.F4}, {GDK.GDK_F5, SWT.F5}, {GDK.GDK_F6, SWT.F6}, {GDK.GDK_F7, SWT.F7}, {GDK.GDK_F8, SWT.F8}, {GDK.GDK_F9, SWT.F9}, {GDK.GDK_F10, SWT.F10}, {GDK.GDK_F11, SWT.F11}, {GDK.GDK_F12, SWT.F12}, {GDK.GDK_F13, SWT.F13}, {GDK.GDK_F14, SWT.F14}, {GDK.GDK_F15, SWT.F15}, {GDK.GDK_F16, SWT.F16}, {GDK.GDK_F17, SWT.F17}, {GDK.GDK_F18, SWT.F18}, {GDK.GDK_F19, SWT.F19}, {GDK.GDK_F20, SWT.F20}, /* Numeric Keypad Keys */ {GDK.GDK_KP_Multiply, SWT.KEYPAD_MULTIPLY}, {GDK.GDK_KP_Add, SWT.KEYPAD_ADD}, {GDK.GDK_KP_Enter, SWT.KEYPAD_CR}, {GDK.GDK_KP_Subtract, SWT.KEYPAD_SUBTRACT}, {GDK.GDK_KP_Decimal, SWT.KEYPAD_DECIMAL}, {GDK.GDK_KP_Divide, SWT.KEYPAD_DIVIDE}, {GDK.GDK_KP_0, SWT.KEYPAD_0}, {GDK.GDK_KP_1, SWT.KEYPAD_1}, {GDK.GDK_KP_2, SWT.KEYPAD_2}, {GDK.GDK_KP_3, SWT.KEYPAD_3}, {GDK.GDK_KP_4, SWT.KEYPAD_4}, {GDK.GDK_KP_5, SWT.KEYPAD_5}, {GDK.GDK_KP_6, SWT.KEYPAD_6}, {GDK.GDK_KP_7, SWT.KEYPAD_7}, {GDK.GDK_KP_8, SWT.KEYPAD_8}, {GDK.GDK_KP_9, SWT.KEYPAD_9}, {GDK.GDK_KP_Equal, SWT.KEYPAD_EQUAL}, /* Other keys */ {GDK.GDK_Caps_Lock, SWT.CAPS_LOCK}, {GDK.GDK_Num_Lock, SWT.NUM_LOCK}, {GDK.GDK_Scroll_Lock, SWT.SCROLL_LOCK}, {GDK.GDK_Pause, SWT.PAUSE}, {GDK.GDK_Break, SWT.BREAK}, {GDK.GDK_Print, SWT.PRINT_SCREEN}, {GDK.GDK_Help, SWT.HELP}, }; /* Cache pressed modifier. See Bug 537025. */ int cachedModifier = 0; /* Latin layout key group */ private int latinKeyGroup; /* Keymap "keys-changed" callback */ int /*long*/ keysChangedProc; Callback keysChangedCallback; /* Multiple Displays. */ static Display Default; static Display [] Displays = new Display [4]; /* Skinning support */ Widget [] skinList = new Widget [GROW_SIZE]; int skinCount; /* Package name */ static final String PACKAGE_PREFIX = "org.eclipse.swt.widgets."; //$NON-NLS-1$ /* This code is intentionally commented. * ".class" can not be used on CLDC. */ // static { // String name = Display.class.getName (); // int index = name.lastIndexOf ('.'); // PACKAGE_NAME = name.substring (0, index + 1); // } /* GTK Version */ static final int GTK3_MAJOR = 3; static final int GTK3_MINOR = 0; static final int GTK3_MICRO = 0; static final int GTK2_MAJOR = 2; static final int GTK2_MINOR = 24; static final int GTK2_MICRO = 0; /* Display Data */ Object data; String [] keys; Object [] values; /* Initial Guesses for Shell Trimmings. */ static final int TRIM_NONE = 0; static final int TRIM_BORDER = 1; static final int TRIM_RESIZE = 2; static final int TRIM_TITLE_BORDER = 3; static final int TRIM_TITLE_RESIZE = 4; static final int TRIM_TITLE = 5; int [] trimWidths = new int [6]; int [] trimHeights = new int [6]; { trimWidths [TRIM_NONE] = 0; trimHeights [TRIM_NONE] = 0; trimWidths [TRIM_BORDER] = 4; trimHeights [TRIM_BORDER] = 4; trimWidths [TRIM_RESIZE] = 6; trimHeights [TRIM_RESIZE] = 6; trimWidths [TRIM_TITLE_BORDER] = 5; trimHeights [TRIM_TITLE_BORDER] = 28; trimWidths [TRIM_TITLE_RESIZE] = 6; trimHeights [TRIM_TITLE_RESIZE] = 29; trimWidths [TRIM_TITLE] = 0; trimHeights [TRIM_TITLE] = 23; String path = System.getProperty ("user.home"); //$NON-NLS-1$ if (path != null) { File file = new File (path, ".swt/trims.prefs"); if (file.exists () && file.isFile ()) { Properties props = new Properties (); try (FileInputStream fis = new FileInputStream (file)) { props.load (fis); String trimWidthsString = props.getProperty ("trimWidths"); String trimHeightsString = props.getProperty ("trimHeights"); if (trimWidthsString != null && trimHeightsString != null) { StringTokenizer tok = new StringTokenizer (trimWidthsString); for (int i = 0; i < trimWidths.length && tok.hasMoreTokens (); i++) { trimWidths [i] = Integer.parseInt (tok.nextToken ()); } tok = new StringTokenizer (trimHeightsString); for (int i = 0; i < trimHeights.length && tok.hasMoreTokens (); i++) { trimHeights [i] = Integer.parseInt (tok.nextToken ()); } } } catch (IOException | NumberFormatException e) { // use default values } } } } boolean ignoreTrim; /* Window Manager */ String windowManager; /* * TEMPORARY CODE. Install the runnable that * gets the current display. This code will * be removed in the future. */ static { DeviceFinder = () -> { Device device = getCurrent (); if (device == null) { device = getDefault (); } setDevice (device); }; } /* * TEMPORARY CODE. */ static void setDevice (Device device) { CurrentDevice = device; } /** * Constructs a new instance of this class. *

* Note: The resulting display is marked as the current * display. If this is the first display which has been * constructed since the application started, it is also * marked as the default display. *

* * @exception SWTException
    *
  • ERROR_THREAD_INVALID_ACCESS - if called from a thread that already created an existing display
  • *
  • ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass
  • *
* * @see #getCurrent * @see #getDefault * @see Widget#checkSubclass * @see Shell */ public Display () { this (null); } /** * Constructs a new instance of this class using the parameter. * * @param data the device data */ public Display (DeviceData data) { super (data); } /** * Adds the listener to the collection of listeners who will * be notified when an event of the given type occurs anywhere * in a widget. The event type is one of the event constants * defined in class SWT. When the event does occur, * the listener is notified by sending it the handleEvent() * message. *

* Setting the type of an event to SWT.None from * within the handleEvent() method can be used to * change the event type and stop subsequent Java listeners * from running. Because event filters run before other listeners, * event filters can both block other listeners and set arbitrary * fields within an event. For this reason, event filters are both * powerful and dangerous. They should generally be avoided for * performance, debugging and code maintenance reasons. *

* * @param eventType the type of event to listen for * @param listener the listener which should be notified when the event occurs * * @exception IllegalArgumentException
    *
  • ERROR_NULL_ARGUMENT - if the listener is null
  • *
* @exception SWTException
    *
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
  • *
  • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
  • *
* * @see Listener * @see SWT * @see #removeFilter * @see #removeListener * * @since 3.0 */ public void addFilter (int eventType, Listener listener) { checkDevice (); if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); if (filterTable == null) filterTable = new EventTable (); filterTable.hook (eventType, listener); } void addLayoutDeferred (Composite comp) { if (layoutDeferred == null) layoutDeferred = new Composite [64]; if (layoutDeferredCount == layoutDeferred.length) { Composite [] temp = new Composite [layoutDeferred.length + 64]; System.arraycopy (layoutDeferred, 0, temp, 0, layoutDeferred.length); layoutDeferred = temp; } layoutDeferred[layoutDeferredCount++] = comp; } void addGdkEvent (int /*long*/ event) { if (gdkEvents == null) { int length = GROW_SIZE; gdkEvents = new int /*long*/ [length]; gdkEventWidgets = new Widget [length]; gdkEventCount = 0; } if (gdkEventCount == gdkEvents.length) { int length = gdkEventCount + GROW_SIZE; int /*long*/ [] newEvents = new int /*long*/ [length]; System.arraycopy (gdkEvents, 0, newEvents, 0, gdkEventCount); gdkEvents = newEvents; Widget [] newWidgets = new Widget [length]; System.arraycopy (gdkEventWidgets, 0, newWidgets, 0, gdkEventCount); gdkEventWidgets = newWidgets; } Widget widget = null; int /*long*/ handle = GTK.gtk_get_event_widget (event); if (handle != 0) { do { widget = getWidget (handle); } while (widget == null && (handle = GTK.gtk_widget_get_parent (handle)) != 0); } gdkEvents [gdkEventCount] = event; gdkEventWidgets [gdkEventCount] = widget; gdkEventCount++; } void addIdleProc() { synchronized (idleLock){ this.idleNeeded = true; if (idleHandle == 0) { idleHandle = OS.g_idle_add (idleProc, 0); } } } /** * Adds the listener to the collection of listeners who will * be notified when an event of the given type occurs. The event * type is one of the event constants defined in class SWT. * When the event does occur in the display, the listener is notified by * sending it the handleEvent() message. * * @param eventType the type of event to listen for * @param listener the listener which should be notified when the event occurs * * @exception IllegalArgumentException
    *
  • ERROR_NULL_ARGUMENT - if the listener is null
  • *
* @exception SWTException
    *
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
  • *
  • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
  • *
* * @see Listener * @see SWT * @see #removeListener * * @since 2.0 */ public void addListener (int eventType, Listener listener) { checkDevice (); if (listener == null) error (SWT.ERROR_NULL_ARGUMENT); if (eventTable == null) eventTable = new EventTable (); if (eventType == SWT.OpenDocument || eventType == SWT.OpenUrl) { gdbus_init_methods(); } eventTable.hook (eventType, listener); } /** * Handle gdbus on 'org.eclipse.swt' DBus session. * E.g equinox launcher passes files/urls to SWT via gdbus. "./eclipse myFile" or "./eclipse http://www.google.com" * * Only one SWT instance can hold the unique and well-known name at one time, so we have to be mindful * of the case where an SWT app could steal the well-known name and make the equinox launcher confused. * * For equinox launcher, See eclipseGtk.c:gtkPlatformJavaSystemProperties */ private void gdbus_init_methods() { GDBusMethod[] methods = { new GDBusMethod( // FileOpen call can be reached via: // gdbus call --session --dest org.eclipse.swt --object-path /org/eclipse/swt --method org.eclipse.swt.FileOpen "['/tmp/hi','http://www.eclipse.org']" // See Bug525305_Browser_OpenUrl.java test snippet for testing/verification. // In a child eclipse, this will open the files in a new editor. // This is reached by equinox launcher from eclipseGtk.c. Look for "g_dbus_proxy_call_sync" "FileOpen", new String [][] {{OS.DBUS_TYPE_STRING_ARRAY,"A String array containing file paths or URLs for OpenDocument/OpenUrl signal"}}, new String [0][0], (args) -> { String[] fileNames = (String[]) args[0]; for (int i = 0; i < fileNames.length; i++) { Event event = new Event (); event.text = fileNames[i]; try { if (new URI (fileNames[i]).getScheme() != null) { // For specs, see: https://docs.oracle.com/javase/8/docs/api/java/net/URI.html // E.g: eclipse http://www.google.com sendEvent (SWT.OpenUrl, event); } else { throw new URISyntaxException(fileNames[i], "Not a valid Url. Probably file."); } } catch (URISyntaxException e) { // E.g eclipse /tmp/myfile (absolute) or eclipse myfile (relative) sendEvent (SWT.OpenDocument, event); } } return null; }) }; GDBus.init(methods); } int /*long*/ allChildrenProc (int /*long*/ widget, int /*long*/ recurse) { allChildren = OS.g_list_append (allChildren, widget); if (recurse != 0 && GTK.GTK_IS_CONTAINER (widget)) { GTK.gtk_container_forall (widget, allChildrenProc, recurse); } return 0; } void addMouseHoverTimeout (int /*long*/ handle) { if (mouseHoverId != 0) OS.g_source_remove (mouseHoverId); mouseHoverId = OS.g_timeout_add (400, mouseHoverProc, handle); mouseHoverHandle = handle; } void addPopup (Menu menu) { if (popups == null) popups = new Menu [4]; int length = popups.length; for (int i=0; i= skinList.length) { Widget[] newSkinWidgets = new Widget [skinList.length + GROW_SIZE]; System.arraycopy (skinList, 0, newSkinWidgets, 0, skinList.length); skinList = newSkinWidgets; } skinList [skinCount++] = widget; } void addWidget (int /*long*/ handle, Widget widget) { if (handle == 0) return; // Last element in the indexTable is -1, so if freeSlot == -1 we have no place anymore if (freeSlot == LAST_TABLE_INDEX) { int length = (freeSlot = indexTable.length) + GROW_SIZE; int[] newIndexTable = new int[length]; Widget[] newWidgetTable = new Widget [length]; System.arraycopy (indexTable, 0, newIndexTable, 0, freeSlot); System.arraycopy (widgetTable, 0, newWidgetTable, 0, freeSlot); for (int i = freeSlot; i < length - 1; i++) { newIndexTable[i] = i + 1; } // mark last slot as "need resize" newIndexTable[length - 1] = LAST_TABLE_INDEX; indexTable = newIndexTable; widgetTable = newWidgetTable; } int index = freeSlot + 1; if(strictChecks) { int /*long*/ data = OS.g_object_get_qdata (handle, SWT_OBJECT_INDEX); if(data > 0 && data != index) { SWT.error(SWT.ERROR_INVALID_ARGUMENT, null, ". Potential leak of " + widget + debugInfoForIndex(data - 1)); } } OS.g_object_set_qdata (handle, SWT_OBJECT_INDEX, index); int oldSlot = freeSlot; freeSlot = indexTable[oldSlot]; // Mark old index slot as used indexTable [oldSlot] = SLOT_IN_USE; if(widgetTable [oldSlot] != null) { SWT.error(SWT.ERROR_INVALID_ARGUMENT, null, ". Trying to override non empty slot with " + widget + debugInfoForIndex(oldSlot)); } widgetTable [oldSlot] = widget; } /** * Causes the run() method of the runnable to * be invoked by the user-interface thread at the next * reasonable opportunity. The caller of this method continues * to run in parallel, and is not notified when the * runnable has completed. Specifying null as the * runnable simply wakes the user-interface thread when run. *

* Note that at the time the runnable is invoked, widgets * that have the receiver as their display may have been * disposed. Therefore, it is necessary to check for this * case inside the runnable before accessing the widget. *

* * @param runnable code to run on the user-interface thread or null * * @exception SWTException
    *
  • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
  • *
* * @see #syncExec */ public void asyncExec (Runnable runnable) { synchronized (Device.class) { if (isDisposed ()) error (SWT.ERROR_DEVICE_DISPOSED); synchronized (idleLock) { if (idleNeeded && idleHandle == 0) { //NOTE: calling unlocked function in OS idleHandle = OS._g_idle_add (idleProc, 0); } } synchronizer.asyncExec (runnable); } } /** * Causes the system hardware to emit a short sound * (if it supports this capability). * * @exception SWTException
    *
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
  • *
  • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
  • *
*/ public void beep () { if (!isValidThread ()) error (SWT.ERROR_THREAD_INVALID_ACCESS); GDK.gdk_display_beep(GDK.gdk_display_get_default()); GDK.gdk_flush (); } int /*long*/ cellDataProc (int /*long*/ tree_column, int /*long*/ cell, int /*long*/ tree_model, int /*long*/ iter, int /*long*/ data) { Widget widget = getWidget (data); if (widget == null) return 0; return widget.cellDataProc (tree_column, cell, tree_model, iter, data); } @Override protected void checkDevice () { if (thread == null) error (SWT.ERROR_WIDGET_DISPOSED); if (thread != Thread.currentThread ()) error (SWT.ERROR_THREAD_INVALID_ACCESS); if (isDisposed ()) error (SWT.ERROR_DEVICE_DISPOSED); } static void checkDisplay (Thread thread, boolean multiple) { synchronized (Device.class) { for (int i=0; i * IMPORTANT: See the comment in Widget.checkSubclass(). *

* * @exception SWTException
    *
  • ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass
  • *
* * @see Widget#checkSubclass */ protected void checkSubclass () { if (!isValidClass (getClass ())) error (SWT.ERROR_INVALID_SUBCLASS); } void clearModal (Shell shell) { if (modalShells == null) return; int index = 0, length = modalShells.length; while (index < length) { if (modalShells [index] == shell) break; if (modalShells [index] == null) return; index++; } if (index == length) return; System.arraycopy (modalShells, index + 1, modalShells, index, --length - index); modalShells [length] = null; if (index == 0 && modalShells [0] == null) modalShells = null; Shell [] shells = getShells (); for (int i=0; i *
  • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
  • *
  • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
  • * * * @see Device#dispose * * @since 2.0 */ public void close () { checkDevice (); Event event = new Event (); sendEvent (SWT.Close, event); if (event.doit) dispose (); } /** * Creates the device in the operating system. If the device * does not have a handle, this method may do nothing depending * on the device. *

    * This method is called before init. *

    * * @param data the DeviceData which describes the receiver * * @see #init */ @Override protected void create (DeviceData data) { checkSubclass (); checkDisplay(thread = Thread.currentThread (), false); createDisplay (data); register (this); if (Default == null) Default = this; } void createDisplay (DeviceData data) { if (OS.GLIB_VERSION < OS.VERSION(2, 32, 0)) { /* Required for g_main_context_wakeup */ if (!OS.g_thread_supported()) { OS.g_thread_init(0); } } if (!GTK.gtk_init_check (new int /*long*/ [] {0}, null)) { SWT.error (SWT.ERROR_NO_HANDLES, null, " [gtk_init_check() failed]"); //$NON-NLS-1$ } //set GTK+ Theme name as property for introspection purposes System.setProperty("org.eclipse.swt.internal.gtk.theme", OS.getThemeName()); if (OS.isX11()) xDisplay = GDK.gdk_x11_get_default_xdisplay(); int major = GTK.gtk_major_version (); int /*long*/ ptr; if (major == GTK3_MAJOR) { ptr = GTK.gtk_check_version (GTK3_MAJOR, GTK3_MINOR, GTK3_MICRO); } else { ptr = GTK.gtk_check_version (GTK2_MAJOR, GTK2_MINOR, GTK2_MICRO); } if (ptr != 0) { int length = C.strlen (ptr); byte [] buffer = new byte [length]; C.memmove (buffer, ptr, length); System.out.println ("***WARNING: " + new String (Converter.mbcsToWcs (buffer))); //$NON-NLS-1$ System.out.println ("***WARNING: SWT requires GTK " + GTK2_MAJOR+ "." + GTK2_MINOR + "." + GTK2_MICRO); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ int minor = GTK.gtk_minor_version (), micro = GTK.gtk_micro_version (); System.out.println ("***WARNING: Detected: " + major + "." + minor + "." + micro); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ } if (Cairo.cairo_version() < Cairo.CAIRO_VERSION_ENCODE(1, 9, 4)) { System.out.println ("***WARNING: SWT requires Cairo 1.9.4 or newer"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ String version = Converter.cCharPtrToJavaString(Cairo.cairo_version_string(), false); System.out.println ("***WARNING: Detected: " + version); } if (GTK.GTK3) { fixed_type = OS.swt_fixed_get_type(); } if (fixed_type == 0) { byte [] type_name = Converter.wcsToMbcs ("SwtFixed", true); //$NON-NLS-1$ fixedClassInitCallback = new Callback (getClass (), "fixedClassInitProc", 2); //$NON-NLS-1$ fixedClassInitProc = fixedClassInitCallback.getAddress (); if (fixedClassInitProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); fixedMapCallback = new Callback (getClass (), "fixedMapProc", 1); //$NON-NLS-1$ fixedMapProc = fixedMapCallback.getAddress (); if (fixedMapProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); fixedSizeAllocateCallback = new Callback (getClass (), "fixedSizeAllocateProc", 2); //$NON-NLS-1$ fixedSizeAllocateProc = fixedSizeAllocateCallback.getAddress (); if (fixedSizeAllocateProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); int /*long*/ queryPtr = OS.g_malloc (GTypeQuery.sizeof); OS.g_type_query (GTK.GTK_TYPE_FIXED(), queryPtr); GTypeQuery query = new GTypeQuery (); OS.memmove (query, queryPtr, GTypeQuery.sizeof); OS.g_free (queryPtr); GTypeInfo fixed_info = new GTypeInfo (); fixed_info.class_size = (short) query.class_size; fixed_info.class_init = fixedClassInitProc; fixed_info.instance_size = (short) query.instance_size; fixed_info_ptr = OS.g_malloc (GTypeInfo.sizeof); OS.memmove (fixed_info_ptr, fixed_info, GTypeInfo.sizeof); fixed_type = OS.g_type_register_static (GTK.GTK_TYPE_FIXED (), type_name, fixed_info_ptr, 0); } if (rendererClassInitProc == 0) { rendererClassInitCallback = new Callback (getClass (), "rendererClassInitProc", 2); //$NON-NLS-1$ rendererClassInitProc = rendererClassInitCallback.getAddress (); if (rendererClassInitProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); } if (rendererRenderProc == 0) { rendererRenderCallback = new Callback (getClass (), "rendererRenderProc", GTK.GTK3 ? 6 : 7); //$NON-NLS-1$ rendererRenderProc = rendererRenderCallback.getAddress (); if (rendererRenderProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); } if (GTK.GTK3) { if (rendererGetPreferredWidthProc == 0) { rendererGetPreferredWidthCallback = new Callback (getClass (), "rendererGetPreferredWidthProc", 4); //$NON-NLS-1$ rendererGetPreferredWidthProc = rendererGetPreferredWidthCallback.getAddress (); if (rendererGetPreferredWidthProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); } } else { if (rendererGetSizeProc == 0) { rendererGetSizeCallback = new Callback (getClass (), "rendererGetSizeProc", 7); //$NON-NLS-1$ rendererGetSizeProc = rendererGetSizeCallback.getAddress (); if (rendererGetSizeProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); } } if (text_renderer_type == 0) { GTypeInfo renderer_info = new GTypeInfo (); renderer_info.class_size = (short) GTK.GtkCellRendererTextClass_sizeof (); renderer_info.class_init = rendererClassInitProc; renderer_info.instance_size = (short) GTK.GtkCellRendererText_sizeof (); text_renderer_info_ptr = OS.g_malloc (GTypeInfo.sizeof); OS.memmove (text_renderer_info_ptr, renderer_info, GTypeInfo.sizeof); byte [] type_name = Converter.wcsToMbcs ("SwtTextRenderer", true); //$NON-NLS-1$ text_renderer_type = OS.g_type_register_static (GTK.GTK_TYPE_CELL_RENDERER_TEXT (), type_name, text_renderer_info_ptr, 0); } if (pixbuf_renderer_type == 0) { GTypeInfo renderer_info = new GTypeInfo (); renderer_info.class_size = (short) GTK.GtkCellRendererPixbufClass_sizeof (); renderer_info.class_init = rendererClassInitProc; renderer_info.instance_size = (short) GTK.GtkCellRendererPixbuf_sizeof (); pixbuf_renderer_info_ptr = OS.g_malloc (GTypeInfo.sizeof); OS.memmove (pixbuf_renderer_info_ptr, renderer_info, GTypeInfo.sizeof); byte [] type_name = Converter.wcsToMbcs ("SwtPixbufRenderer", true); //$NON-NLS-1$ pixbuf_renderer_type = OS.g_type_register_static (GTK.GTK_TYPE_CELL_RENDERER_PIXBUF (), type_name, pixbuf_renderer_info_ptr, 0); } if (toggle_renderer_type == 0) { GTypeInfo renderer_info = new GTypeInfo (); renderer_info.class_size = (short) GTK.GtkCellRendererToggleClass_sizeof (); renderer_info.class_init = rendererClassInitProc; renderer_info.instance_size = (short) GTK.GtkCellRendererToggle_sizeof (); toggle_renderer_info_ptr = OS.g_malloc (GTypeInfo.sizeof); OS.memmove (toggle_renderer_info_ptr, renderer_info, GTypeInfo.sizeof); byte [] type_name = Converter.wcsToMbcs ("SwtToggleRenderer", true); //$NON-NLS-1$ toggle_renderer_type = OS.g_type_register_static (GTK.GTK_TYPE_CELL_RENDERER_TOGGLE (), type_name, toggle_renderer_info_ptr, 0); } GTK.gtk_widget_set_default_direction (GTK.GTK_TEXT_DIR_LTR); byte [] buffer = Converter.wcsToMbcs (APP_NAME, true); OS.g_set_prgname (buffer); GDK.gdk_set_program_class (buffer); if (!GTK.GTK3) { byte [] flatStyle = Converter.wcsToMbcs ("style \"swt-flat\" { GtkToolbar::shadow-type = none } widget \"*.swt-toolbar-flat\" style : highest \"swt-flat\"", true); //$NON-NLS-1$ GTK.gtk_rc_parse_string (flatStyle); } /* Initialize the hidden shell */ shellHandle = GTK.gtk_window_new (GTK.GTK_WINDOW_TOPLEVEL); if (shellHandle == 0) error (SWT.ERROR_NO_HANDLES); GTK.gtk_widget_realize (shellHandle); /* Initialize the filter and event callback */ eventCallback = new Callback (this, "eventProc", 2); //$NON-NLS-1$ eventProc = eventCallback.getAddress (); if (eventProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); GDK.gdk_event_handler_set (eventProc, 0, 0); filterCallback = new Callback (this, "filterProc", 3); //$NON-NLS-1$ filterProc = filterCallback.getAddress (); if (filterProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); GDK.gdk_window_add_filter (0, filterProc, 0); byte[] atomName = Converter.wcsToMbcs ("SWT_Window_" + APP_NAME, true); //$NON-NLS-1$ int /*long*/ atom = GDK.gdk_atom_intern(atomName, false); GDK.gdk_selection_owner_set(GTK.gtk_widget_get_window(shellHandle), atom, OS.CurrentTime, false); GDK.gdk_selection_owner_get(atom); signalCallback = new Callback (this, "signalProc", 3); //$NON-NLS-1$ signalProc = signalCallback.getAddress (); if (signalProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); GTK.gtk_widget_add_events (shellHandle, GDK.GDK_PROPERTY_CHANGE_MASK); OS.g_signal_connect (shellHandle, OS.property_notify_event, signalProc, PROPERTY_NOTIFY); latinKeyGroup = findLatinKeyGroup (); keysChangedCallback = new Callback (this, "keysChangedProc", 2); //$NON-NLS-1$ keysChangedProc = keysChangedCallback.getAddress (); if (keysChangedProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); OS.g_signal_connect (GDK.gdk_keymap_get_default (), OS.keys_changed, keysChangedProc, 0); } /** * Determine key group of Latin layout. * * @return the most Latin keyboard layout group */ private int findLatinKeyGroup () { int result = 0; Map groupKeysCount = new HashMap<> (); int /*long*/ keymap = GDK.gdk_keymap_get_default (); // count all key groups for Latin alphabet for (int keyval = GDK.GDK_KEY_a; keyval <= GDK.GDK_KEY_z; keyval++) { int /*long*/[] keys = new int /*long*/[1]; int [] n_keys = new int [1]; if (GDK.gdk_keymap_get_entries_for_keyval (keymap, keyval, keys, n_keys)) { GdkKeymapKey key_entry = new GdkKeymapKey (); for (int key = 0; key < n_keys [0]; key++) { OS.memmove (key_entry, keys [0] + key * GdkKeymapKey.sizeof, GdkKeymapKey.sizeof); Integer keys_count = (Integer) groupKeysCount.get (key_entry.group); if (keys_count != null) { keys_count++; } else { keys_count = 1; } groupKeysCount.put (key_entry.group, keys_count); } OS.g_free (keys [0]); } } // group with maximum keys count is Latin int max_keys_count = 0; for (Map.Entry entry : groupKeysCount.entrySet()) { Integer group = entry.getKey (); Integer keys_count = entry.getValue (); if (keys_count > max_keys_count) { result = group; max_keys_count = keys_count; } } return result; } /** * Return the most Latin keyboard layout group. */ int getLatinKeyGroup () { return latinKeyGroup; } /** * 'keys-changed' event handler. * Updates the most Latin keyboard layout group field. */ int /*long*/ keysChangedProc (int /*long*/ keymap, int /*long*/ user_data) { latinKeyGroup = findLatinKeyGroup (); return 0; } Image createImage (String name) { byte[] buffer = Converter.wcsToMbcs (name, true); int /*long*/ pixbuf = GTK.gtk_icon_theme_load_icon(GTK.gtk_icon_theme_get_default(), buffer, 48, GTK.GTK_ICON_LOOKUP_FORCE_SIZE, 0); if (pixbuf == 0) return null; int width = GDK.gdk_pixbuf_get_width (pixbuf); int height = GDK.gdk_pixbuf_get_height (pixbuf); int stride = GDK.gdk_pixbuf_get_rowstride (pixbuf); boolean hasAlpha = GDK.gdk_pixbuf_get_has_alpha (pixbuf); int /*long*/ pixels = GDK.gdk_pixbuf_get_pixels (pixbuf); byte [] data = new byte [stride * height]; C.memmove (data, pixels, data.length); OS.g_object_unref (pixbuf); ImageData imageData = null; if (hasAlpha) { PaletteData palette = new PaletteData (0xFF000000, 0xFF0000, 0xFF00); imageData = new ImageData (width, height, 32, palette); byte [] alpha = new byte [stride * height]; for (int y=0; y * This method is called after release. *

    * @see Device#dispose * @see #release */ @Override protected void destroy () { if (this == Default) Default = null; deregister (this); destroyDisplay (); } void destroyDisplay () { } int /*long*/ emissionProc (int /*long*/ ihint, int /*long*/ n_param_values, int /*long*/ param_values, int /*long*/ data) { if (GTK.gtk_widget_get_toplevel (OS.g_value_peek_pointer(param_values)) == data) { GTK.gtk_widget_set_direction (OS.g_value_peek_pointer(param_values), GTK.GTK_TEXT_DIR_RTL); } return 1; } /** * Returns the display which the given thread is the * user-interface thread for, or null if the given thread * is not a user-interface thread for any display. Specifying * null as the thread will return null * for the display. * * @param thread the user-interface thread * @return the display for the given thread */ public static Display findDisplay (Thread thread) { synchronized (Device.class) { for (int i=0; irun()
    method of the runnable to * be invoked by the user-interface thread just before the * receiver is disposed. Specifying a null runnable * is ignored. * * @param runnable code to run at dispose time. * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public void disposeExec (Runnable runnable) { checkDevice (); if (disposeList == null) disposeList = new Runnable [4]; for (int i=0; iSWTError.error to handle the error. * * @param code the descriptive error code * * @see SWTError#error */ void error (int code) { SWT.error (code); } int /*long*/ eventProc (int /*long*/ event, int /*long*/ data) { /* * Use gdk_event_get_time() rather than event.time or * gtk_get_current_event_time(). If the event does not * have a time stamp, then the field will contain garbage. * Note that calling gtk_get_current_event_time() from * outside of gtk_main_do_event() seems to always * return zero. */ int time = GDK.gdk_event_get_time (event); if (time != 0) lastEventTime = time; int eventType = GDK.GDK_EVENT_TYPE (event); switch (eventType) { case GDK.GDK_BUTTON_PRESS: case GDK.GDK_KEY_PRESS: lastUserEventTime = time; } boolean dispatch = true; if (dispatchEvents != null) { dispatch = false; for (int i = 0; i < dispatchEvents.length; i++) { if (eventType == dispatchEvents [i]) { dispatch = true; break; } } } if (!dispatch) { addGdkEvent (GDK.gdk_event_copy (event)); return 0; } dispatch = true; if (tracker != null) { dispatch = tracker.processEvent (event); } if (dispatch) GTK.gtk_main_do_event (event); if (dispatchEvents == null) putGdkEvents (); return 0; } /** * Given the operating system handle for a widget, returns * the instance of the Widget subclass which * represents it in the currently running application, if * such exists, or null if no matching widget can be found. *

    * IMPORTANT: This method should not be called from * application code. The arguments are platform-specific. *

    * * @param handle the handle for the widget * @return the SWT widget that the handle represents * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @noreference This method is not intended to be referenced by clients. */ public Widget findWidget (int /*long*/ handle) { checkDevice (); return getWidget (handle); } /** * Given the operating system handle for a widget, * and widget-specific id, returns the instance of * the Widget subclass which represents * the handle/id pair in the currently running application, * if such exists, or null if no matching widget can be found. *

    * IMPORTANT: This method should not be called from * application code. The arguments are platform-specific. *

    * * @param handle the handle for the widget * @param id the id for the subwidget (usually an item) * @return the SWT widget that the handle/id pair represents * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @noreference This method is not intended to be referenced by clients. * * @since 3.1 */ public Widget findWidget (int /*long*/ handle, int /*long*/ id) { checkDevice (); return null; } /** * Given a widget and a widget-specific id, returns the * instance of the Widget subclass which represents * the widget/id pair in the currently running application, * if such exists, or null if no matching widget can be found. * * @param widget the widget * @param id the id for the subwidget (usually an item) * @return the SWT subwidget (usually an item) that the widget/id pair represents * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @noreference This method is not intended to be referenced by clients. * * @since 3.3 */ public Widget findWidget (Widget widget, int /*long*/ id) { checkDevice (); return null; } static int /*long*/ fixedClassInitProc (int /*long*/ g_class, int /*long*/ class_data) { GtkWidgetClass klass = new GtkWidgetClass (); OS.memmove (klass, g_class); klass.map = fixedMapProc; oldFixedSizeAllocateProc = klass.size_allocate; klass.size_allocate = fixedSizeAllocateProc; OS.memmove (g_class, klass); return 0; } static int /*long*/ fixedMapProc (int /*long*/ handle) { Display display = getCurrent (); Widget widget = display.getWidget (handle); if (widget != null) return widget.fixedMapProc (handle); return 0; } static int /*long*/ fixedSizeAllocateProc (int /*long*/ handle, int /*long*/ allocation) { Display display = getCurrent (); Widget widget = display.getWidget (handle); if (widget != null) return widget.fixedSizeAllocateProc (handle, allocation); return OS.Call (oldFixedSizeAllocateProc, handle, allocation); } static int /*long*/ rendererClassInitProc (int /*long*/ g_class, int /*long*/ class_data) { GtkCellRendererClass klass = new GtkCellRendererClass (); OS.memmove (klass, g_class); klass.render = rendererRenderProc; if (GTK.GTK3) { klass.get_preferred_width = rendererGetPreferredWidthProc; } else { klass.get_size = rendererGetSizeProc; } OS.memmove (g_class, klass); return 0; } static int /*long*/ rendererGetPreferredWidthProc (int /*long*/ cell, int /*long*/ handle, int /*long*/ minimun_size, int /*long*/ natural_size) { Display display = getCurrent (); Widget widget = display.getWidget (handle); if (widget != null) return widget.rendererGetPreferredWidthProc (cell, handle, minimun_size, natural_size); return 0; } static int /*long*/ rendererGetSizeProc (int /*long*/ cell, int /*long*/ handle, int /*long*/ cell_area, int /*long*/ x_offset, int /*long*/ y_offset, int /*long*/ width, int /*long*/ height) { Display display = getCurrent (); Widget widget = display.getWidget (handle); if (widget != null) return widget.rendererGetSizeProc (cell, handle, cell_area, x_offset, y_offset, width, height); return 0; } static int /*long*/ rendererRenderProc (int /*long*/ cell, int /*long*/ cr, int /*long*/ handle, int /*long*/ background_area, int /*long*/ cell_area, int /*long*/ flags) { Display display = getCurrent (); Widget widget = display.getWidget (handle); if (widget != null) return widget.rendererRenderProc (cell, cr, handle, background_area, cell_area, flags); return 0; } static int /*long*/ rendererRenderProc (int /*long*/ cell, int /*long*/ window, int /*long*/ handle, int /*long*/ background_area, int /*long*/ cell_area, int /*long*/ expose_area, int /*long*/ flags) { Display display = getCurrent (); Widget widget = display.getWidget (handle); if (widget != null) return widget.rendererRenderProc (cell, window, handle, background_area, cell_area, expose_area, flags); return 0; } void flushExposes (int /*long*/ window, boolean all) { GDK.gdk_flush (); GDK.gdk_flush (); if (OS.isX11()) { this.flushWindow = window; this.flushAll = all; int /*long*/ xDisplay = GDK.gdk_x11_display_get_xdisplay(GDK.gdk_display_get_default()); int /*long*/ xEvent = OS.g_malloc (XEvent.sizeof); OS.XCheckIfEvent (xDisplay, xEvent, checkIfEventProc, 0); OS.g_free (xEvent); this.flushWindow = 0; } } /** * Returns the currently active Shell, or null * if no shell belonging to the currently running application * is active. * * @return the active shell or null * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public Shell getActiveShell () { checkDevice (); return activeShell; } /** * Returns a rectangle describing the receiver's size and location. Note that * on multi-monitor systems the origin can be negative. * * @return the bounding rectangle * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ @Override public Rectangle getBounds () { checkDevice (); return DPIUtil.autoScaleDown (getBoundsInPixels ()); } Rectangle getBoundsInPixels () { checkDevice (); return new Rectangle (0, 0, GDK.gdk_screen_width (), GDK.gdk_screen_height ()); } /** * Returns the display which the currently running thread is * the user-interface thread for, or null if the currently * running thread is not a user-interface thread for any display. * * @return the current display */ public static Display getCurrent () { return findDisplay (Thread.currentThread ()); } int getCaretBlinkTime () { // checkDevice (); int /*long*/ settings = GTK.gtk_settings_get_default (); if (settings == 0) return 500; int [] buffer = new int [1]; OS.g_object_get (settings, GTK.gtk_cursor_blink, buffer, 0); if (buffer [0] == 0) return 0; OS.g_object_get (settings, GTK.gtk_cursor_blink_time, buffer, 0); if (buffer [0] == 0) return 500; /* * By experimentation, GTK application don't use the whole * blink cycle time. Instead, they divide up the time, using * an effective blink rate of about 1/2 the total time. */ return buffer [0] / 2; } int /*long*/ getClosure (int id) { if (OS.GLIB_VERSION >= OS.VERSION(2, 36, 0) && ++closuresCount [id] >= 255) { if (closures [id] != 0) OS.g_closure_unref (closures [id]); closures [id] = OS.g_cclosure_new (closuresProc [id], id, 0); OS.g_closure_ref (closures [id]); OS.g_closure_sink (closures [id]); closuresCount [id] = 0; } return closures [id]; } /** * Returns the control which the on-screen pointer is currently * over top of, or null if it is not currently over one of the * controls built by the currently running application. * * @return the control under the cursor or null * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public Control getCursorControl () { checkDevice(); int[] x = new int[1], y = new int[1]; int /*long*/ handle = 0; int /*long*/ [] user_data = new int /*long*/ [1]; int /*long*/ window = gdk_device_get_window_at_position (x,y); if (window != 0) { GDK.gdk_window_get_user_data (window, user_data); handle = user_data [0]; } else { /* * Feature in GTK. gdk_window_at_pointer() will not return a window * if the pointer is over a foreign embedded window. The fix is to use * XQueryPointer to find the containing GDK window. */ if (!OS.isX11()) return null; int /*long*/ gdkDisplay = GDK.gdk_display_get_default(); if (GTK.GTK3) { if (OS.isX11()) { GDK.gdk_x11_display_error_trap_push(gdkDisplay); } } else { GDK.gdk_error_trap_push (); } int[] unusedInt = new int[1]; int /*long*/[] unusedPtr = new int /*long*/[1], buffer = new int /*long*/[1]; int /*long*/ xWindow, xParent = OS.XDefaultRootWindow (xDisplay); do { if (OS.XQueryPointer (xDisplay, xParent, unusedPtr, buffer, unusedInt, unusedInt, unusedInt, unusedInt, unusedInt) == 0) { handle = 0; break; } if ((xWindow = buffer [0]) != 0) { xParent = xWindow; int /*long*/ gdkWindow = GDK.gdk_x11_window_lookup_for_display(gdkDisplay, xWindow); if (gdkWindow != 0) { GDK.gdk_window_get_user_data (gdkWindow, user_data); if (user_data[0] != 0) handle = user_data[0]; } } } while (xWindow != 0); if (GTK.GTK3) { if (OS.isX11()) { GDK.gdk_x11_display_error_trap_pop_ignored(gdkDisplay); } } else { GDK.gdk_error_trap_pop (); } } if (handle == 0) return null; do { Widget widget = getWidget (handle); if (widget != null && widget instanceof Control) { Control control = (Control) widget; if (control.isEnabled ()) return control; } } while ((handle = GTK.gtk_widget_get_parent (handle)) != 0); return null; } static GtkBorder getEntryInnerBorder (int /*long*/ handle) { GtkBorder gtkBorder = new GtkBorder(); int /*long*/ border = GTK.gtk_entry_get_inner_border (handle); if (border != 0) { OS.memmove (gtkBorder, border, GtkBorder.sizeof); return gtkBorder; } int /*long*/ [] borderPtr = new int /*long*/ [1]; GTK.gtk_widget_style_get (handle, OS.inner_border, borderPtr,0); if (borderPtr[0] != 0) { OS.memmove (gtkBorder, borderPtr[0], GtkBorder.sizeof); GTK.gtk_border_free(borderPtr[0]); return gtkBorder; } gtkBorder.left = INNER_BORDER; gtkBorder.top = INNER_BORDER; gtkBorder.right = INNER_BORDER; gtkBorder.bottom = INNER_BORDER; return gtkBorder; } boolean filterEvent (Event event) { if (filterTable != null) { int type = event.type; sendPreEvent (type); try { filterTable.sendEvent (event); } finally { sendPostEvent (type); } } return false; } boolean filters (int eventType) { if (filterTable == null) return false; return filterTable.hooks (eventType); } int /*long*/ filterProc (int /*long*/ xEvent, int /*long*/ gdkEvent, int /*long*/ data) { Widget widget = getWidget (data); if (widget == null) return 0; return widget.filterProc (xEvent, gdkEvent, data); } /** * Returns the location of the on-screen pointer relative * to the top left corner of the screen. * * @return the cursor location * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public Point getCursorLocation () { return DPIUtil.autoScaleDown(getCursorLocationInPixels()); } Point getCursorLocationInPixels () { checkDevice (); int [] x = new int [1], y = new int [1]; gdk_window_get_device_position (0, x, y, null); /* * Wayland feature: There is no global x/y coordinates in Wayland for security measures, so they * all return relative coordinates dependant to the root window. If there is a popup window (type SWT.ON_TOP), * the return position is relative to the new popup window and not relative to the parent if its * active. Using that as an offset and adding all parent shell relative coordinates will give the * user the correct mouse position in Wayland. This only supports popups that are type * SWT.ON_TOP as any other type of window is not tied to the parent window through * a subsurface. There is currently no support for global coordinates * in Wayland. See Bug 514483. */ if (!OS.isX11() && activeShell != null) { Shell tempShell = activeShell; int [] offsetX = new int [1], offsetY = new int [1]; while (tempShell.getParent() != null) { GTK.gtk_window_get_position(tempShell.shellHandle, offsetX, offsetY); x[0]+= offsetX[0]; y[0]+= offsetY[0]; tempShell = tempShell.getParent().getShell(); } } return new Point (x [0], y [0]); } /** * Returns an array containing the recommended cursor sizes. * * @return the array of cursor sizes * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.0 */ public Point [] getCursorSizes () { checkDevice (); return new Point [] {new Point (16, 16), new Point (32, 32)}; } /** * Returns the application defined property of the receiver * with the specified name, or null if it has not been set. *

    * Applications may have associated arbitrary objects with the * receiver in this fashion. If the objects stored in the * properties need to be notified when the display is disposed * of, it is the application's responsibility to provide a * disposeExec() handler which does so. *

    * * @param key the name of the property * @return the value of the property or null if it has not been set * * @exception IllegalArgumentException
      *
    • ERROR_NULL_ARGUMENT - if the key is null
    • *
    * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @see #setData(String, Object) * @see #disposeExec(Runnable) */ public Object getData (String key) { checkDevice (); if (key == null) error (SWT.ERROR_NULL_ARGUMENT); if (key.equals (DISPATCH_EVENT_KEY)) { return dispatchEvents; } if (key.equals (GET_MODAL_DIALOG)) { return modalDialog; } if (key.equals (GET_DIRECTION_PROC_KEY)) { return new LONG (setDirectionProc); } if (key.equals (GET_EMISSION_PROC_KEY)) { return new LONG (emissionProc); } if (keys == null) return null; for (int i=0; idisplay specific data is a single, * unnamed field that is stored with every display. *

    * Applications may put arbitrary objects in this field. If * the object stored in the display specific data needs to * be notified when the display is disposed of, it is the * application's responsibility to provide a * disposeExec() handler which does so. *

    * * @return the display specific data * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @see #setData(Object) * @see #disposeExec(Runnable) */ public Object getData () { checkDevice (); return data; } int /*long*/ gtk_fixed_get_type () { return fixed_type; } int /*long*/ gtk_cell_renderer_text_get_type () { return text_renderer_type; } int /*long*/ gtk_cell_renderer_pixbuf_get_type () { return pixbuf_renderer_type; } int /*long*/ gtk_cell_renderer_toggle_get_type () { return toggle_renderer_type; } String gtk_css_create_css_color_string (String background, String foreground, int property) { switch (property) { case SWT.FOREGROUND: if (foreground != null && background != null) { return foreground + "\n" + background; } else if (foreground != null) { return foreground; } else { return ""; } case SWT.BACKGROUND: if (foreground != null && background != null) { return background + "\n" + foreground; } else if (background != null) { return background; } else { return ""; } default: return ""; } } /** * This method fetches GTK theme values/properties. This is accomplished * by determining the name of the current system theme loaded, giving that * name to GTK, and then parsing values from the returned theme contents. * * The idea here is that SWT variables that have corresponding GTK theme * elements can be fetched easily by supplying the SWT variable as an * parameter to this method. * * @param swt an Integer corresponding to the SWT color * @param cssOutput the gtk theme represented as css string. * * @return a String representation of the color parsed or "parsed" if the color was assigned * directly */ String gtk_css_default_theme_values (int swt, String cssOutput) { // Parse the theme values based on the corresponding SWT value // i.e. theme_selected_bg_color in GTK is SWT.COLOR_LIST_SELECTION in SWT int tSelected; int selected; /* * These strings are the GTK named colors we are looking for. Once they are * found they are sent to a parser which finds the actual values. */ String color = ""; switch (swt) { case SWT.COLOR_INFO_FOREGROUND: return gtk_css_default_theme_values_irregular(swt, cssOutput); case SWT.COLOR_INFO_BACKGROUND: return gtk_css_default_theme_values_irregular(swt, cssOutput); case SWT.COLOR_LINK_FOREGROUND: return gtk_css_default_theme_values_irregular(swt, cssOutput); case SWT.COLOR_LIST_BACKGROUND: tSelected = cssOutput.indexOf ("@define-color theme_base_color"); selected = cssOutput.indexOf ("@define-color base_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_base_color", tSelected); if (!color.isEmpty()) { break; } } else if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color base_color", selected); if (!color.isEmpty()) { break; } } break; case SWT.COLOR_LIST_FOREGROUND: tSelected = cssOutput.indexOf ("@define-color theme_text_color"); selected = cssOutput.indexOf ("@define-color text_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_text_color", tSelected); if (!color.isEmpty()) { break; } } else if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color text_color", selected); if (!color.isEmpty()) { break; } } break; case SWT.COLOR_LIST_SELECTION: tSelected = cssOutput.indexOf ("@define-color theme_selected_bg_color"); selected = cssOutput.indexOf ("@define-color selected_bg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_selected_bg_color", tSelected); if (!color.isEmpty()) { break; } } else if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color selected_bg_color", selected); if (!color.isEmpty()) { break; } } break; case SWT_COLOR_LIST_SELECTION_INACTIVE: tSelected = cssOutput.indexOf ("@define-color theme_unfocused_selected_bg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_unfocused_selected_bg_color", tSelected); if (!color.isEmpty()) { break; } } break; case SWT.COLOR_LIST_SELECTION_TEXT: tSelected = cssOutput.indexOf ("@define-color theme_selected_fg_color"); selected = cssOutput.indexOf ("@define-color selected_fg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_selected_fg_color", tSelected); if (!color.isEmpty()) { break; } } else if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color selected_fg_color", selected); if (!color.isEmpty()) { break; } } break; case SWT_COLOR_LIST_SELECTION_TEXT_INACTIVE: tSelected = cssOutput.indexOf ("@define-color theme_unfocused_selected_fg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_unfocused_selected_fg_color", tSelected); if (!color.isEmpty()) { break; } } break; case SWT.COLOR_TITLE_INACTIVE_FOREGROUND: tSelected = cssOutput.indexOf ("@define-color insensitive_fg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color insensitive_fg_color", tSelected); if (!color.isEmpty()) { break; } } break; case SWT.COLOR_TITLE_INACTIVE_BACKGROUND: tSelected = cssOutput.indexOf ("@define-color insensitive_bg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color insensitive_bg_color", tSelected); if (!color.isEmpty()) { break; } } break; case SWT.COLOR_WIDGET_BACKGROUND: tSelected = cssOutput.indexOf ("@define-color theme_bg_color"); selected = cssOutput.indexOf ("@define-color bg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_bg_color", tSelected); if (!color.isEmpty()) { break; } } else if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color bg_color", selected); if (!color.isEmpty()) { break; } } break; case SWT.COLOR_WIDGET_FOREGROUND: tSelected = cssOutput.indexOf ("@define-color theme_fg_color"); selected = cssOutput.indexOf ("@define-color fg_color"); if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_fg_color", tSelected); if (!color.isEmpty()) { break; } } else if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color fg_color", selected); if (!color.isEmpty()) { break; } } break; default: return ""; } return color; } /** * Certain colors don't match up nicely to a "@define-color" tag in certain GTK themes. * For example Adwaita is one of the few themes that does not use a "@define-color" * tag for tooltip colors. It is therefore necessary to parse a tooltip CSS class. * * Since this varies from theme to theme, we first check if a "@define-color" tag * exists, if it is: parse it. If not, check for the tooltip class definition. * * @param swt an Integer corresponding to the SWT color * @param cssOutput a String representation of the currently loaded CSS theme * currently loaded CSS theme * * @return a String representation of the color parsed or "parsed" if the color was assigned * directly */ String gtk_css_default_theme_values_irregular(int swt, String cssOutput) { int tSelected, selected, classDef; String color = ""; switch (swt) { case SWT.COLOR_INFO_FOREGROUND: selected = cssOutput.indexOf ("@define-color tooltip_fg_color"); tSelected = cssOutput.indexOf ("@define-color theme_tooltip_fg_color"); if (GTK.GTK_VERSION >= OS.VERSION(3, 20, 0)) { classDef = cssOutput.indexOf ("tooltip * {"); } else { classDef = cssOutput.indexOf (".tooltip {"); } if (selected != -1 || tSelected != -1) { if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color tooltip_fg_color", selected); } else if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_tooltip_fg_color", tSelected); } if (!color.isEmpty()) { break; } } else if (classDef != -1){ if (GTK.GTK_VERSION >= OS.VERSION(3, 20, 0)) { COLOR_INFO_FOREGROUND_RGBA = gtk_css_parse_foreground(cssOutput, "tooltip * {"); } else { COLOR_INFO_FOREGROUND_RGBA = gtk_css_parse_foreground(cssOutput, ".tooltip {"); } return "parsed"; } break; case SWT.COLOR_INFO_BACKGROUND: selected = cssOutput.indexOf ("@define-color tooltip_bg_color"); tSelected = cssOutput.indexOf ("@define-color theme_tooltip_bg_color"); classDef = cssOutput.indexOf ("tooltip.background {"); if (selected != -1 || tSelected != -1) { if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color tooltip_bg_color", selected); } else if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_tooltip_bg_color", tSelected); } if (!color.isEmpty()) { break; } } else if (classDef != -1) { COLOR_INFO_BACKGROUND_RGBA = gtk_css_parse_background(cssOutput, "tooltip.background {"); return "parsed"; } break; case SWT.COLOR_LINK_FOREGROUND: selected = cssOutput.indexOf("@define-color link_color"); tSelected = cssOutput.indexOf("@define-color theme_link_color"); classDef = cssOutput.indexOf ("*:link {"); // On Ubuntu and somenon-Adwaita themes, the link color is sometimes set to the // same as COLOR_LIST_SELECTION. int selectedBg = cssOutput.indexOf("@define-color link_color @selected_bg_color"); if (selected != -1 || tSelected != -1) { if (selected != -1) { color = simple_color_parser(cssOutput, "@define-color link_color", selected); } else if (tSelected != -1) { color = simple_color_parser(cssOutput, "@define-color theme_link_color", tSelected); } if (!color.isEmpty()) { break; } } else if (selectedBg != -1) { COLOR_LINK_FOREGROUND_RGBA = COLOR_LIST_SELECTION_RGBA; return "parsed"; } else if (classDef != -1) { COLOR_LINK_FOREGROUND_RGBA = gtk_css_parse_foreground(cssOutput, "*:link {"); return "parsed"; } break; } return color; } /** * This method allows for parsing of background colors from a GTK CSS string. * It allows for specific search input, such as a selector or tag, or for parsing * the first (and usually only) background color in a given GtkCssProvider. * * For example: given the string GtkWidget {background-color: rgba(255, 0, 0, 255);} * this method will return a GdkRGBA object with the color red. Supported formats * include "background-color" and just "background". * * @param css a CSS being parsed * @param precise a String representation of a selector to search for, or NULL if * the entire GtkCssProvider is to be parsed * * @return a GdkRGBA object representing the background color, or COLOR_WIDGET_BACKGROUND * if the background color could not be parsed or isn't set */ GdkRGBA gtk_css_parse_background (String css, String precise) { String shortOutput; int startIndex; GdkRGBA rgba = new GdkRGBA (); if (css.isEmpty()) return COLOR_WIDGET_BACKGROUND_RGBA; String searched = ""; /* * This section allows for finer searching: for example * specifying precise as null will cause the whole GtkCssProvider * to be searched and return the first background color value. * * Specifying a string for precise causes only the subset of the * GtkCssProvider to be searched, provided that precise is a subset * of the provider. */ if (precise != null) { if (css.contains(precise)) { searched = css.substring(css.indexOf(precise)); } } else { searched = css; } if (searched.isEmpty()) { return COLOR_WIDGET_BACKGROUND_RGBA; } /* Although we only set the property "background-color", we can handle * the "background" property as well. We check for either of these cases * and extract a GdkRGBA object from the parsed CSS string. */ if (searched.contains ("background-color:")) { startIndex = searched.indexOf ("background-color:"); shortOutput = searched.substring (startIndex + 18); rgba = gtk_css_property_to_rgba (shortOutput); } else if (searched.contains ("background:")) { startIndex = searched.indexOf ("background:"); shortOutput = searched.substring (startIndex + 13); rgba = gtk_css_property_to_rgba (shortOutput); } return rgba; } String gtk_css_provider_to_string (int /*long*/ provider) { // Fetch the CSS in char/string format from the provider. if (provider == 0) { return ""; } int /*long*/ str = GTK.gtk_css_provider_to_string(provider); if (str == 0) return ""; int length = C.strlen (str); byte [] buffer = new byte [length]; C.memmove (buffer, str, length); OS.g_free(str); return new String (Converter.mbcsToWcs (buffer)); } /** * This method allows for parsing of foreground colors from a GTK CSS string. * It allows for specific search input, such as a selector or tag, or for parsing * the first (and usually only) foreground color in a given GtkCssProvider. * * For example: given the string GtkWidget {color: rgba(255, 0, 0, 255);} * this method will return a GdkRGBA object with the color red. * * @param css a CSS representation of the gtk theme * @param precise a String representation of a selector to search for, or NULL if * the entire GtkCssProvider is to be parsed * * @return a GdkRGBA object representing the foreground color or COLOR_WIDGET_FOREGROUND * if the foreground color could not be parsed or isn't set */ GdkRGBA gtk_css_parse_foreground (String css, String precise) { if (css.isEmpty()) return COLOR_WIDGET_FOREGROUND_RGBA; String shortOutput; int startIndex; GdkRGBA rgba = new GdkRGBA (); String searched = ""; /* * This section allows for finer searching: for example * specifying precise as null will cause the whole GtkCssProvider * to be searched and return the first foreground color value. * * Specifying a string for precise causes only the subset of the * GtkCssProvider to be searched, provided that precise is a subset * of the provider. */ if (precise != null) { if (css.contains(precise)) { searched = css.substring(css.indexOf(precise)); } } else { searched = css; } if (searched.isEmpty()) { return COLOR_WIDGET_FOREGROUND_RGBA; } /* * Because background-color and color have overlapping characters, * a simple String.contains() check will not suffice. This means * that a more encompassing regex is needed to capture "pure" color * properties and filter out things like background-color, border-color, * etc. */ String pattern = "[^-]color: rgba?\\((\\d+(,\\s?)?){3,4}\\)"; Pattern r = Pattern.compile(pattern); Matcher m = r.matcher(searched); if (m.find()) { String match = m.group(0); if (match.contains("color:")) { startIndex = match.indexOf("color:"); shortOutput = match.substring(startIndex + 7); rgba = gtk_css_property_to_rgba(shortOutput); } } else { return COLOR_WIDGET_FOREGROUND_RGBA; } return rgba; } /** * This method parses a string representation of a color * and returns a GdkRGBA object of that color. * * Supported formats: * -a standard X11 color * -a hex value in the form "#rgb", "#rrggbb", "#rrrgggbbb" or "rrrrggggbbbb" * -an RGB color in the for "rgb(r,g,b)" * -an RGBA color in the form "rgba(r,g,b,a)" * * @param property a String representation of the color * * @return a GdkRGBA object representing the color, or transparent (empty GdkRGBA) * if the color could not be parsed */ GdkRGBA gtk_css_property_to_rgba(String property) { GdkRGBA rgba = new GdkRGBA (); String [] propertyParsed = new String [1]; //Note that we still need to remove the ";" character from the input string propertyParsed = property.split (";"); GDK.gdk_rgba_parse (rgba, Converter.wcsToMbcs (propertyParsed[0], true)); return rgba; } /** * In GdkRGBA, values are a double between 0-1. In CSS, * values are integers between 0-255 for r, g, and b. * Alpha is still a double between 0-1. * * The final CSS format is: rgba(int, int, int, double) * Due to this, there is a slight loss of precision. * Setting/getting with CSS *might* yield slight differences. * * @param rgba a GdkRGBA object containing the color to be parsed * or NULL * * @return a String representation of the color or COLOR_WIDGET_BACKGROUND * if NULL is specified as a parameter */ String gtk_rgba_to_css_string (GdkRGBA rgba) { /* * In GdkRGBA, values are a double between 0-1. * In CSS, values are integers between 0-255 for r, g, and b. * Alpha is still a double between 0-1. * The final CSS format is: rgba(int, int, int, double) * Due to this, there is a slight loss of precision. * Setting/getting with CSS *might* yield slight differences. */ GdkRGBA toConvert; if (rgba != null) { toConvert = rgba; } else { // If we have a null RGBA, set it to the default COLOR_WIDGET_BACKGROUND. toConvert = COLOR_WIDGET_BACKGROUND_RGBA; } int /*long*/ str = GDK.gdk_rgba_to_string (toConvert); int length = C.strlen (str); byte [] buffer = new byte [length]; C.memmove (buffer, str, length); OS.g_free(str); return new String (Converter.mbcsToWcs (buffer)); } /** * Gets the name of the widget in String format. * * @param handle a pointer to the GtkWidget resource * * @return a String representation of the widget's name */ String gtk_widget_get_name(int /*long*/ handle) { int /*long*/ str = GTK.gtk_widget_get_name (handle); String name; if (str == 0) { name = "*"; } else { int length = C.strlen (str); byte [] buffer = new byte [length]; C.memmove (buffer, str, length); name = new String (Converter.mbcsToWcs (buffer)); } return name; } /** * Gets the CSS name of the widget provided. This * only works on GTK3.20+. * * @param handle a pointer to the GtkWidget resource * * @return a String representation of the widget's CSS name */ String gtk_widget_class_get_css_name(int /*long*/ handle) { int /*long*/ str = GTK.gtk_widget_class_get_css_name (GTK.GTK_WIDGET_GET_CLASS(handle)); String name; if (str == 0) { name = "*"; } else { int length = C.strlen (str); byte [] buffer = new byte [length]; C.memmove (buffer, str, length); name = new String (Converter.mbcsToWcs (buffer)); } return name; } /** * Returns the default display. One is created (making the * thread that invokes this method its user-interface thread) * if it did not already exist. * * @return the default display */ public static Display getDefault () { synchronized (Device.class) { if (Default == null) Default = new Display (); return Default; } } static boolean isValidClass (Class clazz) { String name = clazz.getName (); int index = name.lastIndexOf ('.'); return name.substring (0, index + 1).equals (PACKAGE_PREFIX); } /** * Returns the single instance of the application menu bar, or * null if there is no application menu bar for the platform. * * @return the application menu bar, or null * * @exception SWTException
      *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.7 */ public Menu getMenuBar () { checkDevice (); return null; } /** * Returns the button dismissal alignment, one of LEFT or RIGHT. * The button dismissal alignment is the ordering that should be used when positioning the * default dismissal button for a dialog. For example, in a dialog that contains an OK and * CANCEL button, on platforms where the button dismissal alignment is LEFT, the * button ordering should be OK/CANCEL. When button dismissal alignment is RIGHT, * the button ordering should be CANCEL/OK. * * @return the button dismissal order * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 2.1 */ public int getDismissalAlignment () { checkDevice (); int [] buffer = new int [1]; int /*long*/ settings = GTK.gtk_settings_get_default (); OS.g_object_get (settings, GTK.gtk_alternative_button_order, buffer, 0); return buffer [0] == 1 ? SWT.LEFT : SWT.RIGHT; } /** * Returns the longest duration, in milliseconds, between * two mouse button clicks that will be considered a * double click by the underlying operating system. * * @return the double click time * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public int getDoubleClickTime () { checkDevice (); int /*long*/ settings = GTK.gtk_settings_get_default (); int [] buffer = new int [1]; OS.g_object_get (settings, GTK.gtk_double_click_time, buffer, 0); return buffer [0]; } /** * Returns the control which currently has keyboard focus, * or null if keyboard events are not currently going to * any of the controls built by the currently running * application. * * @return the focus control or null * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public Control getFocusControl () { checkDevice (); if (focusControl != null && !focusControl.isDisposed ()) { return focusControl; } if (activeShell == null) return null; int /*long*/ shellHandle = activeShell.shellHandle; int /*long*/ handle = GTK.gtk_window_get_focus (shellHandle); if (handle == 0) return null; do { Widget widget = getWidget (handle); if (widget != null && widget instanceof Control) { Control control = (Control) widget; return control.isEnabled () ? control : null; } } while ((handle = GTK.gtk_widget_get_parent (handle)) != 0); return null; } /** * Returns true when the high contrast mode is enabled. * Otherwise, false is returned. *

    * Note: This operation is a hint and is not supported on * platforms that do not have this concept. *

    * * @return the high contrast mode * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.0 */ public boolean getHighContrast () { checkDevice (); return false; } @Override public int getDepth () { checkDevice (); return GDK.gdk_visual_get_depth(GDK.gdk_visual_get_system()); } /** * Returns the maximum allowed depth of icons on this display, in bits per pixel. * On some platforms, this may be different than the actual depth of the display. * * @return the maximum icon depth * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @see Device#getDepth */ public int getIconDepth () { checkDevice (); return getDepth (); } /** * Returns an array containing the recommended icon sizes. * * @return the array of icon sizes * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @see Decorations#setImages(Image[]) * * @since 3.0 */ public Point [] getIconSizes () { checkDevice (); return new Point [] {new Point (16, 16), new Point (32, 32)}; } int getLastEventTime () { return lastEventTime; } int getMessageCount () { return synchronizer.getMessageCount (); } Dialog getModalDialog () { return modalDialog; } /** * Returns the work area, an EWMH property to store the size * and position of the screen not covered by dock and panel * windows. See http://freedesktop.org/Standards/wm-spec. */ Rectangle getWorkArea() { if (OS.IsWin32) { return null; } byte[] name = Converter.wcsToMbcs ("_NET_WORKAREA", true); //$NON-NLS-1$ int /*long*/ atom = GDK.gdk_atom_intern (name, true); if (atom == GDK.GDK_NONE) return null; int /*long*/[] actualType = new int /*long*/[1]; int[] actualFormat = new int[1]; int[] actualLength = new int[1]; int /*long*/[] data = new int /*long*/[1]; if (!GDK.gdk_property_get (GDK.gdk_get_default_root_window(), atom, GDK.GDK_NONE, 0, 16, 0, actualType, actualFormat, actualLength, data)) { return null; } Rectangle result = null; if (data [0] != 0) { if (actualLength [0] == 16) { int values [] = new int [4]; C.memmove (values, data[0], 16); result = new Rectangle (values [0],values [1],values [2],values [3]); } else if (actualLength [0] == 32) { long values [] = new long [4]; C.memmove (values, data[0], 32); result = new Rectangle ((int)values [0],(int)values [1],(int)values [2],(int)values [3]); } OS.g_free (data [0]); } return result; } /** * Returns an array of monitors attached to the device. * * @return the array of monitors * * @since 3.0 */ public Monitor [] getMonitors () { checkDevice (); Monitor [] monitors = null; Rectangle workArea = DPIUtil.autoScaleDown (getWorkArea ()); int /*long*/ screen = GDK.gdk_screen_get_default (); if (screen != 0) { int monitorCount = GDK.gdk_screen_get_n_monitors (screen); if (monitorCount > 0) { monitors = new Monitor [monitorCount]; GdkRectangle dest = new GdkRectangle (); for (int i = 0; i < monitorCount; i++) { GDK.gdk_screen_get_monitor_geometry (screen, i, dest); Monitor monitor = new Monitor (); monitor.handle = i; monitor.x = DPIUtil.autoScaleDown (dest.x); monitor.y = DPIUtil.autoScaleDown (dest.y); monitor.width = DPIUtil.autoScaleDown (dest.width); monitor.height = DPIUtil.autoScaleDown (dest.height); if (GTK.GTK_VERSION >= OS.VERSION (3, 22, 0) && !OS.isX11()) { int scale_factor = (int) GDK.gdk_monitor_get_scale_factor ( GDK.gdk_display_get_monitor (GDK.gdk_display_get_default (), (int) monitor.handle)); monitor.zoom = scale_factor * 100; } else { monitor.zoom = Display._getDeviceZoom(monitor.handle); } if (GTK.GTK_VERSION >= OS.VERSION (3, 4, 0)) { // workarea was defined in GTK 3.4. If present, it will return the best results // since it takes into account per-monitor trim GDK.gdk_screen_get_monitor_workarea (screen, i, dest); monitor.clientX = DPIUtil.autoScaleDown (dest.x); monitor.clientY = DPIUtil.autoScaleDown (dest.y); monitor.clientWidth = DPIUtil.autoScaleDown (dest.width); monitor.clientHeight = DPIUtil.autoScaleDown (dest.height); } else { // If we're on an older version of gtk without the workarea function, see if we can use // the getWorkArea function. In the case of multi-monitors, this will return something that // is approximately a bounding rectangle for the work areas of all the monitors, so intersecting // that rectangle with the monitor boundaries will provide an approximation of the per-monitor // work area. if (workArea != null) { monitor.clientX = Math.max (monitor.x, workArea.x); monitor.clientY = Math.max (monitor.y, workArea.y); monitor.clientHeight = Math .max(Math.min (monitor.y + monitor.height, workArea.y + workArea.height) - monitor.clientY, 0); monitor.clientWidth = Math.max ( Math.min (monitor.x + monitor.width, workArea.x + workArea.width) - monitor.clientX, 0); } // If getWorkArea is not available or it did not return a rectangle that intersects the monitor // bounds, then use the monitor bounds itself as the work area. if (workArea == null || monitor.clientWidth == 0 || monitor.clientHeight == 0) { monitor.clientX = monitor.x; monitor.clientY = monitor.y; monitor.clientHeight = monitor.height; monitor.clientWidth = monitor.width; } } monitors [i] = monitor; } } } if (monitors == null) { /* No multimonitor support detected, default to one monitor */ Monitor monitor = new Monitor (); Rectangle bounds = getBounds (); monitor.x = bounds.x; monitor.y = bounds.y; monitor.width = bounds.width; monitor.height = bounds.height; if (workArea != null) { monitor.clientX = workArea.x; monitor.clientY = workArea.y; monitor.clientWidth = workArea.width; monitor.clientHeight = workArea.height; } else { monitor.clientX = monitor.x; monitor.clientY = monitor.y; monitor.clientWidth = monitor.width; monitor.clientHeight = monitor.height; } monitors = new Monitor [] { monitor }; } return monitors; } /** * Returns the primary monitor for that device. * * @return the primary monitor * * @since 3.0 */ public Monitor getPrimaryMonitor () { //Developer note, for testing see: //org.eclipse.swt.tests.junit.Test_org_eclipse_swt_widgets_Display.test_getPrimaryMonitor() checkDevice (); Monitor [] monitors = getMonitors (); int primaryMonitorIndex = 0; //attempt to find actual primary monitor if one is configured: int /*long*/ screen = GDK.gdk_screen_get_default (); if (screen != 0) { //if no primary monitor is configured by the user, this returns 0. primaryMonitorIndex = GDK.gdk_screen_get_primary_monitor (screen); } return monitors [primaryMonitorIndex]; } /** * Returns a (possibly empty) array containing all shells which have * not been disposed and have the receiver as their display. * * @return the receiver's shells * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public Shell [] getShells () { checkDevice (); int index = 0; Shell [] result = new Shell [16]; for (int i = 0; i < widgetTable.length; i++) { Widget widget = widgetTable [i]; if (!(widget instanceof Shell)) { continue; } if (!widget.isDisposed()) { int j = 0; while (j < index) { if (result [j] == widget) break; j++; } if (j == index) { if (index == result.length) { Shell [] newResult = new Shell [index + 16]; System.arraycopy (result, 0, newResult, 0, index); result = newResult; } result [index++] = (Shell) widget; } } else { // bug 532632: somehow widgetTable got corrupted and we have disposed // shell entries in the table (at least one). // We don't throw an error here because it was not broken here, but // we at least try to report an error (we have no logging context). System.err.println ("SWT ERROR: disposed shell detected in the table" + debugInfoForIndex(i)); // As of today widgetTable contains *four* entries for the *same* // Shell instance. If we found one broken, there can be others... // So we clean here all the occurencies of the leaked shell. for (int j = i; j < widgetTable.length; j++) { if(widgetTable[j] == widget) { widgetTable[j] = null; } } } } if (index == result.length) return result; Shell [] newResult = new Shell [index]; System.arraycopy (result, 0, newResult, 0, index); return newResult; } /** * Gets the synchronizer used by the display. * * @return the receiver's synchronizer * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.4 */ public Synchronizer getSynchronizer () { checkDevice (); return synchronizer; } /** * Returns the thread that has invoked syncExec * or null if no such runnable is currently being invoked by * the user-interface thread. *

    * Note: If a runnable invoked by asyncExec is currently * running, this method will return null. *

    * * @return the receiver's sync-interface thread * * @exception SWTException
      *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public Thread getSyncThread () { synchronized (Device.class) { if (isDisposed ()) error (SWT.ERROR_DEVICE_DISPOSED); return synchronizer.syncThread; } } /** * Returns the matching standard color for the given * constant, which should be one of the color constants * specified in class SWT. Any value other * than one of the SWT color constants which is passed * in will result in the color black. This color should * not be free'd because it was allocated by the system, * not the application. * * @param id the color constant * @return the matching color * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @see SWT */ @Override public Color getSystemColor (int id) { checkDevice (); if (GTK.GTK3) { GdkRGBA gdkRGBA = null; switch (id) { case SWT.COLOR_LINK_FOREGROUND: gdkRGBA = copyRGBA(COLOR_LINK_FOREGROUND_RGBA); break; case SWT.COLOR_INFO_FOREGROUND: gdkRGBA = copyRGBA(COLOR_INFO_FOREGROUND_RGBA); break; case SWT.COLOR_INFO_BACKGROUND: gdkRGBA = copyRGBA(COLOR_INFO_BACKGROUND_RGBA); break; case SWT.COLOR_TITLE_FOREGROUND: gdkRGBA = copyRGBA(COLOR_TITLE_FOREGROUND_RGBA); break; case SWT.COLOR_TITLE_BACKGROUND: gdkRGBA = copyRGBA(COLOR_TITLE_BACKGROUND_RGBA); break; case SWT.COLOR_TITLE_BACKGROUND_GRADIENT: gdkRGBA = copyRGBA(COLOR_TITLE_BACKGROUND_GRADIENT_RGBA); break; case SWT.COLOR_TITLE_INACTIVE_FOREGROUND: gdkRGBA = copyRGBA(COLOR_TITLE_INACTIVE_FOREGROUND_RGBA); break; case SWT.COLOR_TITLE_INACTIVE_BACKGROUND: gdkRGBA = copyRGBA(COLOR_TITLE_INACTIVE_BACKGROUND_RGBA); break; case SWT.COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT: gdkRGBA = copyRGBA(COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT_RGBA); break; case SWT.COLOR_WIDGET_DARK_SHADOW: gdkRGBA = copyRGBA(COLOR_WIDGET_DARK_SHADOW_RGBA); break; case SWT.COLOR_WIDGET_NORMAL_SHADOW: gdkRGBA = copyRGBA(COLOR_WIDGET_NORMAL_SHADOW_RGBA); break; case SWT.COLOR_WIDGET_LIGHT_SHADOW: gdkRGBA = copyRGBA(COLOR_WIDGET_LIGHT_SHADOW_RGBA); break; case SWT.COLOR_WIDGET_HIGHLIGHT_SHADOW: gdkRGBA = copyRGBA(COLOR_WIDGET_HIGHLIGHT_SHADOW_RGBA); break; case SWT.COLOR_WIDGET_BACKGROUND: gdkRGBA = copyRGBA(COLOR_WIDGET_BACKGROUND_RGBA); break; case SWT.COLOR_WIDGET_FOREGROUND: gdkRGBA = copyRGBA(COLOR_WIDGET_FOREGROUND_RGBA); break; case SWT.COLOR_WIDGET_BORDER: gdkRGBA = copyRGBA(COLOR_WIDGET_BORDER_RGBA); break; case SWT.COLOR_LIST_FOREGROUND: gdkRGBA = copyRGBA(COLOR_LIST_FOREGROUND_RGBA); break; case SWT.COLOR_LIST_BACKGROUND: gdkRGBA = copyRGBA(COLOR_LIST_BACKGROUND_RGBA); break; case SWT.COLOR_LIST_SELECTION: gdkRGBA = copyRGBA(COLOR_LIST_SELECTION_RGBA); break; case SWT.COLOR_LIST_SELECTION_TEXT: gdkRGBA = copyRGBA(COLOR_LIST_SELECTION_TEXT_RGBA); break; default: return super.getSystemColor (id); } if (gdkRGBA == null) return super.getSystemColor (SWT.COLOR_BLACK); return Color.gtk_new (this, gdkRGBA); } else { GdkColor gdkColor = null; switch (id) { case SWT.COLOR_LINK_FOREGROUND: gdkColor = COLOR_LINK_FOREGROUND; break; case SWT.COLOR_INFO_FOREGROUND: gdkColor = COLOR_INFO_FOREGROUND; break; case SWT.COLOR_INFO_BACKGROUND: gdkColor = COLOR_INFO_BACKGROUND; break; case SWT.COLOR_TITLE_FOREGROUND: gdkColor = COLOR_TITLE_FOREGROUND; break; case SWT.COLOR_TITLE_BACKGROUND: gdkColor = COLOR_TITLE_BACKGROUND; break; case SWT.COLOR_TITLE_BACKGROUND_GRADIENT: gdkColor = COLOR_TITLE_BACKGROUND_GRADIENT; break; case SWT.COLOR_TITLE_INACTIVE_FOREGROUND: gdkColor = COLOR_TITLE_INACTIVE_FOREGROUND; break; case SWT.COLOR_TITLE_INACTIVE_BACKGROUND: gdkColor = COLOR_TITLE_INACTIVE_BACKGROUND; break; case SWT.COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT: gdkColor = COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT; break; case SWT.COLOR_WIDGET_DARK_SHADOW: gdkColor = COLOR_WIDGET_DARK_SHADOW; break; case SWT.COLOR_WIDGET_NORMAL_SHADOW: gdkColor = COLOR_WIDGET_NORMAL_SHADOW; break; case SWT.COLOR_WIDGET_LIGHT_SHADOW: gdkColor = COLOR_WIDGET_LIGHT_SHADOW; break; case SWT.COLOR_WIDGET_HIGHLIGHT_SHADOW: gdkColor = COLOR_WIDGET_HIGHLIGHT_SHADOW; break; case SWT.COLOR_WIDGET_BACKGROUND: gdkColor = COLOR_WIDGET_BACKGROUND; break; case SWT.COLOR_WIDGET_FOREGROUND: gdkColor = COLOR_WIDGET_FOREGROUND; break; case SWT.COLOR_WIDGET_BORDER: gdkColor = COLOR_WIDGET_BORDER; break; case SWT.COLOR_LIST_FOREGROUND: gdkColor = COLOR_LIST_FOREGROUND; break; case SWT.COLOR_LIST_BACKGROUND: gdkColor = COLOR_LIST_BACKGROUND; break; case SWT.COLOR_LIST_SELECTION: gdkColor = COLOR_LIST_SELECTION; break; case SWT.COLOR_LIST_SELECTION_TEXT: gdkColor = COLOR_LIST_SELECTION_TEXT; break; default: return super.getSystemColor (id); } if (gdkColor == null) return super.getSystemColor (SWT.COLOR_BLACK); return Color.gtk_new (this, gdkColor); } } /** * Returns the matching standard platform cursor for the given * constant, which should be one of the cursor constants * specified in class SWT. This cursor should * not be free'd because it was allocated by the system, * not the application. A value of null will * be returned if the supplied constant is not an SWT cursor * constant. * * @param id the SWT cursor constant * @return the corresponding cursor or null * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @see SWT#CURSOR_ARROW * @see SWT#CURSOR_WAIT * @see SWT#CURSOR_CROSS * @see SWT#CURSOR_APPSTARTING * @see SWT#CURSOR_HELP * @see SWT#CURSOR_SIZEALL * @see SWT#CURSOR_SIZENESW * @see SWT#CURSOR_SIZENS * @see SWT#CURSOR_SIZENWSE * @see SWT#CURSOR_SIZEWE * @see SWT#CURSOR_SIZEN * @see SWT#CURSOR_SIZES * @see SWT#CURSOR_SIZEE * @see SWT#CURSOR_SIZEW * @see SWT#CURSOR_SIZENE * @see SWT#CURSOR_SIZESE * @see SWT#CURSOR_SIZESW * @see SWT#CURSOR_SIZENW * @see SWT#CURSOR_UPARROW * @see SWT#CURSOR_IBEAM * @see SWT#CURSOR_NO * @see SWT#CURSOR_HAND * * @since 3.0 */ public Cursor getSystemCursor (int id) { checkDevice (); if (!(0 <= id && id < cursors.length)) return null; if (cursors [id] == null) { cursors [id] = new Cursor (this, id); } return cursors [id]; } /** * Returns the matching standard platform image for the given * constant, which should be one of the icon constants * specified in class SWT. This image should * not be free'd because it was allocated by the system, * not the application. A value of null will * be returned either if the supplied constant is not an * SWT icon constant or if the platform does not define an * image that corresponds to the constant. * * @param id the SWT icon constant * @return the corresponding image or null * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @see SWT#ICON_ERROR * @see SWT#ICON_INFORMATION * @see SWT#ICON_QUESTION * @see SWT#ICON_WARNING * @see SWT#ICON_WORKING * * @since 3.0 */ public Image getSystemImage (int id) { checkDevice (); switch (id) { case SWT.ICON_ERROR: if (errorImage == null) { errorImage = createImage ("dialog-error"); //$NON-NLS-1$ } return errorImage; case SWT.ICON_INFORMATION: case SWT.ICON_WORKING: if (infoImage == null) { infoImage = createImage ("dialog-information"); //$NON-NLS-1$ } return infoImage; case SWT.ICON_QUESTION: if (questionImage == null) { questionImage = createImage ("dialog-question"); //$NON-NLS-1$ } return questionImage; case SWT.ICON_WARNING: if (warningImage == null) { warningImage = createImage ("dialog-warning"); //$NON-NLS-1$ } return warningImage; } return null; } /** * Returns the single instance of the system-provided menu for the application, or * null on platforms where no menu is provided for the application. * * @return the system menu, or null * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.7 */ public Menu getSystemMenu () { checkDevice(); return null; } /** * This method converts from RGB to HSV, from HSV * to HSL (including brightness), from HSL back to HSV * and from HSV back to RGB. In short (ordered 1 - 5): * * 1. RGB -> HSV * 2. HSV -> HSL * 3. HSL -> HSL (with brightness) * 4. HSL -> HSV * 5. HSV -> RGB * * NOTE: hue, saturation, and luminosity are values * from 0 to 1. Brightness can be any number from * 0 to Double.MAX_VALUE, but is only practical * when luminosity and saturation are <= 1. * * The higher the brightness, the lighter a color gets. * Lighter here means "more white", i.e. saturation * and luminosity values of 1.0 means the color is pure white. * * More info on the conversion can be found here: * * https://en.wikipedia.org/wiki/HSL_and_HSV * http://codeitdown.com/hsl-hsb-hsv-color/ * * @param rgba the source GdkRGBA from which RGB values are copied from * @param brightness a value between 0 and Double.MAX_VALUE which modifies the brightness of saturation and luminosity * @return GdkRGBA object with calculated RGB values */ GdkRGBA toGdkRGBA (GdkRGBA rgba, double brightness) { // Copy RGB values into a new object GdkRGBA newRGBA = new GdkRGBA (); newRGBA.red = rgba.red; newRGBA.green = rgba.green; newRGBA.blue = rgba.blue; newRGBA.alpha = rgba.alpha; // Instantiate hue, saturation, and value doubles for HSV. // Perform the RGB to HSV conversion. double[] hue = new double[1]; double[] saturationHSV = new double[1]; double[] value = new double[1]; GTK.gtk_rgb_to_hsv(newRGBA.red, newRGBA.green, newRGBA.blue, hue, saturationHSV, value); // Calculate luminosity double luminosity = ((2 - saturationHSV[0]) * value[0]) / 2; // Calculate saturation double saturationHSL = saturationHSV[0] * value[0]; saturationHSL /= (luminosity <= 1) ? luminosity : 2 - luminosity; // Calculate saturation and luminosity with brightness. saturationHSL = Math.max(0f, Math.min(1f, saturationHSL * brightness)); luminosity = Math.max(0f, Math.min(1f, luminosity * brightness)); // Convert from HSL (with brightness) back to HSV luminosity *= 2; saturationHSL *= luminosity <= 1 ? luminosity : 2 - luminosity; value[0] = (luminosity + saturationHSL) / 2; saturationHSV[0] = (2 * saturationHSL) / (luminosity + saturationHSL); // Convert from HSV back to RGB and return the GdkRGBA object GTK.gtk_hsv_to_rgb(hue[0], saturationHSV[0], value[0], hue, saturationHSV, value); newRGBA.red = hue[0]; newRGBA.green = saturationHSV[0]; newRGBA.blue = value[0]; return newRGBA; } GdkRGBA getBackgroundColor (int /*long*/ context, int state) { assert GTK.GTK3 : "GTK3 code was run by GTK2"; /* * Draw the context background to an offset screen surface and get the color * in the middle of the surface. */ GdkRGBA rgba = new GdkRGBA (); GTK.gtk_style_context_save (context); GTK.gtk_style_context_set_state (context, state); int /*long*/ surface = Cairo.cairo_image_surface_create (Cairo.CAIRO_FORMAT_RGB24, 1, 1); int /*long*/ cairo = Cairo.cairo_create (surface); GTK.gtk_render_background (context, cairo, -50, -50, 100, 100); Cairo.cairo_fill (cairo); Cairo.cairo_surface_flush (surface); byte[] buffer = new byte[3]; C.memmove (buffer, Cairo.cairo_image_surface_get_data(surface), buffer.length); rgba.red = buffer[2] / 255f; rgba.green = buffer[1] / 255f; rgba.blue = buffer[0] / 255f; rgba.alpha = 1.0; Cairo.cairo_surface_destroy (surface); Cairo.cairo_destroy (cairo); GTK.gtk_style_context_restore (context); return rgba; } GdkRGBA copyRGBA (GdkRGBA source) { GdkRGBA retRGBA = new GdkRGBA (); if (source != null) { retRGBA.alpha = source.alpha; retRGBA.red = source.red; retRGBA.green = source.green; retRGBA.blue = source.blue; } return retRGBA; } void initializeSystemColors () { int /*long*/ tooltipShellHandle = GTK.gtk_window_new (GTK.GTK_WINDOW_POPUP); if (tooltipShellHandle == 0) error (SWT.ERROR_NO_HANDLES); byte[] gtk_tooltip = Converter.wcsToMbcs (GTK.GTK3 ? "gtk-tooltip" : "gtk-tooltips", true); //$NON-NLS-1$ GTK.gtk_widget_set_name (tooltipShellHandle, gtk_tooltip); GTK.gtk_widget_realize (tooltipShellHandle); if (GTK.GTK3) { COLOR_WIDGET_DARK_SHADOW_RGBA = new GdkRGBA (); COLOR_WIDGET_DARK_SHADOW_RGBA.alpha = 1.0; /* * Feature in GTK: previously SWT fetched system colors using * GtkStyleContext machinery. This machinery is largely deprecated * and will all together stop functioning eventually. Instead, we * can parse the GTK system theme and use the values stored there to * generate SWT's system colors. * * The functionality works for GTK3.14 and above as follows: * * 1) load and parse the system theme * 2) check to see if the value needed exists in the theme * 3a) if the value exists, parse it and convert it to a GdkColor object * 3b) if the value doesn't exist, use the old GtkStyleContext machinery * to fetch and return it as a GdkColor object * * Some colors have multiple different theme values that correspond to * them, while some colors only have one potential match. Therefore * some colors will have better theme coverage than others. */ int /*long*/ context = GTK.gtk_widget_get_style_context (tooltipShellHandle); GTK.gtk_style_context_add_class (context, GTK.GTK_STYLE_CLASS_TOOLTIP); GTK.gtk_style_context_invalidate(context); GdkRGBA rgba = new GdkRGBA(); // Initialize and create a list of X11 named colors initializeColorList(); /* * Find current GTK theme: either use the system theme, * or one provided using the GTK_THEME environment variable. * See bug 534007. */ byte [] buffer = OS.GTK_THEME_SET ? Converter.wcsToMbcs (OS.GTK_THEME_NAME, true) : OS.getThemeNameBytes(); // Load the dark variant if specified byte [] darkBuffer = OS.GTK_THEME_DARK ? darkBuffer = Converter.wcsToMbcs ("dark", true) : null; // Fetch the actual theme in char/string format int /*long*/ themeProvider = GTK.gtk_css_provider_get_named(buffer, darkBuffer); String cssOutput = gtk_css_provider_to_string(themeProvider); if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorInfoForeground = gtk_css_default_theme_values(SWT.COLOR_INFO_FOREGROUND, cssOutput); if (!colorInfoForeground.isEmpty()) { if (colorInfoForeground != "parsed") { COLOR_INFO_FOREGROUND_RGBA = gtk_css_property_to_rgba (colorInfoForeground); } } else { COLOR_INFO_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_NORMAL); } } else { COLOR_INFO_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_NORMAL); } if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorInfoBackground = gtk_css_default_theme_values(SWT.COLOR_INFO_BACKGROUND, cssOutput); if (!colorInfoBackground.isEmpty()) { if (colorInfoBackground != "parsed") { COLOR_INFO_BACKGROUND_RGBA = gtk_css_property_to_rgba (colorInfoBackground); } } else { COLOR_INFO_BACKGROUND_RGBA = getBackgroundColor (context, GTK.GTK_STATE_FLAG_NORMAL); } } else { COLOR_INFO_BACKGROUND_RGBA = getBackgroundColor (context, GTK.GTK_STATE_FLAG_NORMAL); } GTK.gtk_widget_destroy (tooltipShellHandle); context = GTK.gtk_widget_get_style_context (shellHandle); if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorWidgetForeground = gtk_css_default_theme_values(SWT.COLOR_WIDGET_FOREGROUND, cssOutput); if (!colorWidgetForeground.isEmpty()) { COLOR_WIDGET_FOREGROUND_RGBA = gtk_css_property_to_rgba (colorWidgetForeground); } else { COLOR_WIDGET_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_NORMAL); } } else { COLOR_WIDGET_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_NORMAL); } if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorWidgetBackground = gtk_css_default_theme_values(SWT.COLOR_WIDGET_BACKGROUND, cssOutput); if (!colorWidgetBackground.isEmpty()) { COLOR_WIDGET_BACKGROUND_RGBA = gtk_css_property_to_rgba (colorWidgetBackground); } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_NORMAL, rgba); COLOR_WIDGET_BACKGROUND_RGBA = copyRGBA (rgba); } } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_NORMAL, rgba); COLOR_WIDGET_BACKGROUND_RGBA = copyRGBA (rgba); } COLOR_WIDGET_LIGHT_SHADOW_RGBA = COLOR_WIDGET_BACKGROUND_RGBA; COLOR_WIDGET_NORMAL_SHADOW_RGBA = toGdkRGBA (COLOR_WIDGET_BACKGROUND_RGBA, 0.7); COLOR_WIDGET_HIGHLIGHT_SHADOW_RGBA = toGdkRGBA (COLOR_WIDGET_BACKGROUND_RGBA, 1.3); GTK.gtk_style_context_save (context); GTK.gtk_style_context_add_class(context, GTK.GTK_STYLE_CLASS_VIEW); GTK.gtk_style_context_add_class(context, GTK.GTK_STYLE_CLASS_CELL); GTK.gtk_style_context_invalidate(context); if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorListForeground = gtk_css_default_theme_values(SWT.COLOR_LIST_FOREGROUND, cssOutput); if (!colorListForeground.isEmpty()) { COLOR_LIST_FOREGROUND_RGBA = gtk_css_property_to_rgba (colorListForeground); } else { COLOR_LIST_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_NORMAL); } } else { COLOR_LIST_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_NORMAL); } if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorListBackground = gtk_css_default_theme_values(SWT.COLOR_LIST_BACKGROUND, cssOutput); if (!colorListBackground.isEmpty()) { COLOR_LIST_BACKGROUND_RGBA = gtk_css_property_to_rgba (colorListBackground); } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_NORMAL, rgba); COLOR_LIST_BACKGROUND_RGBA = copyRGBA(rgba); } } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_NORMAL, rgba); COLOR_LIST_BACKGROUND_RGBA = copyRGBA(rgba); } GTK.gtk_style_context_restore (context); if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorListSelectionText = gtk_css_default_theme_values(SWT.COLOR_LIST_SELECTION_TEXT, cssOutput); if (!colorListSelectionText.isEmpty()) { COLOR_LIST_SELECTION_TEXT_RGBA = gtk_css_property_to_rgba (colorListSelectionText); } else { COLOR_LIST_SELECTION_TEXT_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_SELECTED); } } else { COLOR_LIST_SELECTION_TEXT_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_SELECTED); } COLOR_TITLE_FOREGROUND_RGBA = COLOR_LIST_SELECTION_TEXT_RGBA; if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorListSelection = gtk_css_default_theme_values(SWT.COLOR_LIST_SELECTION, cssOutput); if (!colorListSelection.isEmpty()) { COLOR_LIST_SELECTION_RGBA = gtk_css_property_to_rgba (colorListSelection); } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_SELECTED, rgba); COLOR_LIST_SELECTION_RGBA = copyRGBA (rgba); } } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_SELECTED, rgba); COLOR_LIST_SELECTION_RGBA = copyRGBA (rgba); } COLOR_TITLE_BACKGROUND_RGBA = COLOR_LIST_SELECTION_RGBA; COLOR_TITLE_BACKGROUND_GRADIENT_RGBA = toGdkRGBA (COLOR_LIST_SELECTION_RGBA, 1.3); if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorListSelectionTextInactive = gtk_css_default_theme_values(SWT_COLOR_LIST_SELECTION_TEXT_INACTIVE, cssOutput); if (!colorListSelectionTextInactive.isEmpty()) { COLOR_LIST_SELECTION_TEXT_INACTIVE_RGBA = gtk_css_property_to_rgba (colorListSelectionTextInactive); } else { COLOR_LIST_SELECTION_TEXT_INACTIVE_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_ACTIVE); } } else { COLOR_LIST_SELECTION_TEXT_INACTIVE_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_ACTIVE); } if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorListSelectionInactive = gtk_css_default_theme_values(SWT_COLOR_LIST_SELECTION_INACTIVE, cssOutput); if (!colorListSelectionInactive.isEmpty()) { COLOR_LIST_SELECTION_INACTIVE_RGBA = gtk_css_property_to_rgba (colorListSelectionInactive); } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_ACTIVE, rgba); COLOR_LIST_SELECTION_INACTIVE_RGBA = copyRGBA (rgba); } } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_ACTIVE, rgba); COLOR_LIST_SELECTION_INACTIVE_RGBA = copyRGBA (rgba); } if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorTitleInactiveForeground = gtk_css_default_theme_values(SWT.COLOR_TITLE_INACTIVE_FOREGROUND, cssOutput); if (!colorTitleInactiveForeground.isEmpty()) { COLOR_TITLE_INACTIVE_FOREGROUND_RGBA = gtk_css_property_to_rgba (colorTitleInactiveForeground); } else { COLOR_TITLE_INACTIVE_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_INSENSITIVE); } } else { COLOR_TITLE_INACTIVE_FOREGROUND_RGBA = styleContextGetColor (context, GTK.GTK_STATE_FLAG_INSENSITIVE); } COLOR_TITLE_INACTIVE_BACKGROUND_RGBA = rgba; if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorTitleInactiveBackground = gtk_css_default_theme_values(SWT.COLOR_TITLE_INACTIVE_BACKGROUND, cssOutput); if (!colorTitleInactiveBackground.isEmpty()) { COLOR_TITLE_INACTIVE_BACKGROUND_RGBA = gtk_css_property_to_rgba (colorTitleInactiveBackground); } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_INSENSITIVE, rgba); COLOR_TITLE_INACTIVE_BACKGROUND_RGBA = copyRGBA (rgba); } } else { GTK.gtk_style_context_get_background_color (context, GTK.GTK_STATE_FLAG_INSENSITIVE, rgba); COLOR_TITLE_INACTIVE_BACKGROUND_RGBA = copyRGBA (rgba); } COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT_RGBA = toGdkRGBA (COLOR_TITLE_INACTIVE_BACKGROUND_RGBA, 1.3); // NOTE: If COLOR_LINK_FOREGROUND cannot be found from the GTK CSS theme then there is no reliable // way to find it on GTK3 using GtkStyleContext machinery. Use COLOR_LIST_SELECTION instead // as they are often the same. if (GTK.GTK_VERSION >= OS.VERSION(3, 14, 0)) { String colorLinkForeground = gtk_css_default_theme_values(SWT.COLOR_LINK_FOREGROUND, cssOutput); if (!colorLinkForeground.isEmpty()) { if (colorLinkForeground != "parsed") { COLOR_LINK_FOREGROUND_RGBA = gtk_css_property_to_rgba (colorLinkForeground); } } else { COLOR_LINK_FOREGROUND_RGBA = COLOR_LIST_SELECTION_RGBA; } } else { COLOR_LINK_FOREGROUND_RGBA = COLOR_LIST_SELECTION_RGBA; } return; } else { COLOR_LINK_FOREGROUND = initializeColorLinkForeground(tooltipShellHandle); int /*long*/ colormap = GDK.gdk_colormap_get_system(); GDK.gdk_colormap_alloc_color(colormap, COLOR_LINK_FOREGROUND, true, true); /* Get Tooltip resources */ int /*long*/ tooltipStyle = GTK.gtk_widget_get_style (tooltipShellHandle); GdkColor gdkColor = new GdkColor(); GTK.gtk_style_get_fg (tooltipStyle, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_INFO_FOREGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_bg (tooltipStyle, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_INFO_BACKGROUND = gdkColor; GTK.gtk_widget_destroy (tooltipShellHandle); /* Get Shell resources */ int /*long*/ style = GTK.gtk_widget_get_style (shellHandle); gdkColor = new GdkColor(); GTK.gtk_style_get_black (style, gdkColor); COLOR_WIDGET_DARK_SHADOW = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_dark (style, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_WIDGET_NORMAL_SHADOW = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_bg (style, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_WIDGET_LIGHT_SHADOW = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_light (style, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_WIDGET_HIGHLIGHT_SHADOW = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_fg (style, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_WIDGET_FOREGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_bg (style, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_WIDGET_BACKGROUND = gdkColor; //gdkColor = new GdkColor(); //OS.gtk_style_get_text (style, OS.GTK_STATE_NORMAL, gdkColor); //COLOR_TEXT_FOREGROUND = gdkColor; //gdkColor = new GdkColor(); //OS.gtk_style_get_base (style, OS.GTK_STATE_NORMAL, gdkColor); //COLOR_TEXT_BACKGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_text (style, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_LIST_FOREGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_base (style, GTK.GTK_STATE_NORMAL, gdkColor); COLOR_LIST_BACKGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_text (style, GTK.GTK_STATE_SELECTED, gdkColor); COLOR_LIST_SELECTION_TEXT = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_base (style, GTK.GTK_STATE_SELECTED, gdkColor); COLOR_LIST_SELECTION = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_text (style, GTK.GTK_STATE_ACTIVE, gdkColor); COLOR_LIST_SELECTION_TEXT_INACTIVE = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_base (style, GTK.GTK_STATE_ACTIVE, gdkColor); COLOR_LIST_SELECTION_INACTIVE = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_bg (style, GTK.GTK_STATE_SELECTED, gdkColor); COLOR_TITLE_BACKGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_fg (style, GTK.GTK_STATE_SELECTED, gdkColor); COLOR_TITLE_FOREGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_light (style, GTK.GTK_STATE_SELECTED, gdkColor); COLOR_TITLE_BACKGROUND_GRADIENT = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_bg (style, GTK.GTK_STATE_INSENSITIVE, gdkColor); COLOR_TITLE_INACTIVE_BACKGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_fg (style, GTK.GTK_STATE_INSENSITIVE, gdkColor); COLOR_TITLE_INACTIVE_FOREGROUND = gdkColor; gdkColor = new GdkColor(); GTK.gtk_style_get_light (style, GTK.GTK_STATE_INSENSITIVE, gdkColor); COLOR_TITLE_INACTIVE_BACKGROUND_GRADIENT = gdkColor; } } /* * Initialize COLOR_LINK_FOREGROUND in a helper method to allow for calling on GTK2. */ GdkColor initializeColorLinkForeground (int /*long*/ tooltipShellHandle) { int /*long*/ linkWidget = GTK.gtk_label_new (new byte[1]); if (linkWidget == 0) error (SWT.ERROR_NO_HANDLES); GTK.gtk_container_add (tooltipShellHandle, linkWidget); int /*long*/ [] linkColor = new int /*long*/ [1]; GTK.gtk_widget_style_get (linkWidget, OS.link_color, linkColor, 0); GdkColor gdkColor = new GdkColor(); if (linkColor [0] != 0) { OS.memmove (gdkColor, linkColor[0], GdkColor.sizeof); GDK.gdk_color_free (linkColor [0]); } else { gdkColor.blue = (short)0xeeee; } return gdkColor; } GdkRGBA styleContextGetColor(int /*long*/ context, int flag) { assert GTK.GTK3 : "GTK3 code was run by GTK2"; /* * Feature in GTK: we need to handle calls to gtk_style_context_get_color() * differently due to changes in GTK3.18+. This solves failing test cases * which started failing after GTK3.16. See Bug 481122 for more info. * Reference: https://blogs.gnome.org/mclasen/2015/11/20/a-gtk-update/ */ GdkRGBA rgba = new GdkRGBA (); if (GTK.GTK_VERSION >= OS.VERSION(3, 18, 0)) { GTK.gtk_style_context_save(context); GTK.gtk_style_context_set_state(context, flag); GTK.gtk_style_context_get_color (context, flag, rgba); GTK.gtk_style_context_restore(context); } else { GTK.gtk_style_context_get_color (context, flag, rgba); } return rgba; } /** * Returns the single instance of the system taskBar or null * when there is no system taskBar available for the platform. * * @return the system taskBar or null * * @exception SWTException
      *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.6 */ public TaskBar getSystemTaskBar () { checkDevice (); return null; } /** * Returns the single instance of the system tray or null * when there is no system tray available for the platform. * * @return the system tray or null * * @exception SWTException
      *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.0 */ public Tray getSystemTray () { checkDevice (); if (tray != null) return tray; return tray = new Tray (this, SWT.NONE); } /** * Returns the user-interface thread for the receiver. * * @return the receiver's user-interface thread * * @exception SWTException
      *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    */ public Thread getThread () { synchronized (Device.class) { if (isDisposed ()) error (SWT.ERROR_DEVICE_DISPOSED); return thread; } } /** * Returns a boolean indicating whether a touch-aware input device is * attached to the system and is ready for use. * * @return true if a touch-aware input device is detected, or false otherwise * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.7 */ public boolean getTouchEnabled() { checkDevice(); return false; } Widget getWidget (int /*long*/ handle) { if (handle == 0) return null; if (lastWidget != null && lastHandle == handle) return lastWidget; int /*long*/ index = OS.g_object_get_qdata (handle, SWT_OBJECT_INDEX) - 1; if (0 <= index && index < widgetTable.length) { lastHandle = handle; return lastWidget = widgetTable [(int)/*64*/index]; } return null; } int /*long*/ idleProc (int /*long*/ data) { boolean result = runAsyncMessages (false); if (!result) { synchronized (idleLock) { idleHandle = 0; } } return result ? 1 : 0; } /** * Initializes any internal resources needed by the * device. *

    * This method is called after create. *

    * * @see #create */ @Override protected void init () { super.init (); initializeCallbacks (); initializeSubclasses (); initializeSystemColors (); initializeSystemSettings (); initializeWidgetTable (); initializeWindowManager (); } void initializeCallbacks () { closures = new int /*long*/ [Widget.LAST_SIGNAL]; closuresCount = new int[Widget.LAST_SIGNAL]; closuresProc = new int /*long*/ [Widget.LAST_SIGNAL]; signalIds = new int [Widget.LAST_SIGNAL]; /* Cache signals for GtkWidget */ signalIds [Widget.BUTTON_PRESS_EVENT] = OS.g_signal_lookup (OS.button_press_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.BUTTON_RELEASE_EVENT] = OS.g_signal_lookup (OS.button_release_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.CONFIGURE_EVENT] = OS.g_signal_lookup (OS.configure_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.DELETE_EVENT] = OS.g_signal_lookup (OS.delete_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.ENTER_NOTIFY_EVENT] = OS.g_signal_lookup (OS.enter_notify_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.EVENT] = OS.g_signal_lookup (OS.event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.EVENT_AFTER] = OS.g_signal_lookup (OS.event_after, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.EXPOSE_EVENT] = OS.g_signal_lookup (GTK.GTK3 ? OS.draw : OS.expose_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.EXPOSE_EVENT_INVERSE] = OS.g_signal_lookup (GTK.GTK3 ? OS.draw : OS.expose_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.FOCUS] = OS.g_signal_lookup (OS.focus, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.FOCUS_IN_EVENT] = OS.g_signal_lookup (OS.focus_in_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.FOCUS_OUT_EVENT] = OS.g_signal_lookup (OS.focus_out_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.GRAB_FOCUS] = OS.g_signal_lookup (OS.grab_focus, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.HIDE] = OS.g_signal_lookup (OS.hide, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.KEY_PRESS_EVENT] = OS.g_signal_lookup (OS.key_press_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.KEY_RELEASE_EVENT] = OS.g_signal_lookup (OS.key_release_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.LEAVE_NOTIFY_EVENT] = OS.g_signal_lookup (OS.leave_notify_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.MAP] = OS.g_signal_lookup (OS.map, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.MAP_EVENT] = OS.g_signal_lookup (OS.map_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.MNEMONIC_ACTIVATE] = OS.g_signal_lookup (OS.mnemonic_activate, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.MOTION_NOTIFY_EVENT] = OS.g_signal_lookup (OS.motion_notify_event, GTK.GTK_TYPE_WIDGET ()); /* * Connect to the "popped-up" signal on GTK3.22+ if the user has specified the * SWT_MENU_LOCATION_DEBUGGING environment variable. */ if (GTK.GTK_VERSION >= OS.VERSION(3, 22, 0) && OS.SWT_MENU_LOCATION_DEBUGGING) { int /*long*/ menuType = GTK.GTK_TYPE_MENU (); OS.g_type_class_ref (menuType); signalIds [Widget.POPPED_UP] = OS.g_signal_lookup (OS.popped_up, menuType); } else { signalIds [Widget.POPPED_UP] = 0; } signalIds [Widget.POPUP_MENU] = OS.g_signal_lookup (OS.popup_menu, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.REALIZE] = OS.g_signal_lookup (OS.realize, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.SCROLL_EVENT] = OS.g_signal_lookup (OS.scroll_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.SHOW] = OS.g_signal_lookup (OS.show, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.SHOW_HELP] = OS.g_signal_lookup (OS.show_help, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.SIZE_ALLOCATE] = OS.g_signal_lookup (OS.size_allocate, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.STYLE_SET] = OS.g_signal_lookup (OS.style_set, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.UNMAP] = OS.g_signal_lookup (OS.unmap, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.UNMAP_EVENT] = OS.g_signal_lookup (OS.unmap_event, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.UNREALIZE] = OS.g_signal_lookup (OS.realize, GTK.GTK_TYPE_WIDGET ()); signalIds [Widget.WINDOW_STATE_EVENT] = OS.g_signal_lookup (OS.window_state_event, GTK.GTK_TYPE_WIDGET ()); windowCallback2 = new Callback (this, "windowProc", 2); //$NON-NLS-1$ windowProc2 = windowCallback2.getAddress (); if (windowProc2 == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); closuresProc [Widget.ACTIVATE] = windowProc2; closuresProc [Widget.ACTIVATE_INVERSE] = windowProc2; closuresProc [Widget.CHANGED] = windowProc2; closuresProc [Widget.CLICKED] = windowProc2; closuresProc [Widget.CREATE_MENU_PROXY] = windowProc2; closuresProc [Widget.DAY_SELECTED] = windowProc2; closuresProc [Widget.DAY_SELECTED_DOUBLE_CLICK] = windowProc2; closuresProc [Widget.HIDE] = windowProc2; closuresProc [Widget.GRAB_FOCUS] = windowProc2; closuresProc [Widget.MAP] = windowProc2; closuresProc [Widget.MONTH_CHANGED] = windowProc2; closuresProc [Widget.OUTPUT] = windowProc2; closuresProc [Widget.POPUP_MENU] = windowProc2; closuresProc [Widget.PREEDIT_CHANGED] = windowProc2; closuresProc [Widget.REALIZE] = windowProc2; closuresProc [Widget.SELECT] = windowProc2; closuresProc [Widget.SELECTION_DONE] = windowProc2; closuresProc [Widget.SHOW] = windowProc2; closuresProc [Widget.START_INTERACTIVE_SEARCH] = windowProc2; closuresProc [Widget.VALUE_CHANGED] = windowProc2; closuresProc [Widget.UNMAP] = windowProc2; closuresProc [Widget.UNREALIZE] = windowProc2; closuresProc [Widget.BACKSPACE] = windowProc2; closuresProc [Widget.BACKSPACE_INVERSE] = windowProc2; closuresProc [Widget.COPY_CLIPBOARD] = windowProc2; closuresProc [Widget.COPY_CLIPBOARD_INVERSE] = windowProc2; closuresProc [Widget.CUT_CLIPBOARD] = windowProc2; closuresProc [Widget.CUT_CLIPBOARD_INVERSE] = windowProc2; closuresProc [Widget.PASTE_CLIPBOARD] = windowProc2; closuresProc [Widget.PASTE_CLIPBOARD_INVERSE] = windowProc2; windowCallback3 = new Callback (this, "windowProc", 3); //$NON-NLS-1$ windowProc3 = windowCallback3.getAddress (); if (windowProc3 == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); closuresProc [Widget.BUTTON_PRESS_EVENT] = windowProc3; closuresProc [Widget.BUTTON_PRESS_EVENT_INVERSE] = windowProc3; closuresProc [Widget.BUTTON_RELEASE_EVENT] = windowProc3; closuresProc [Widget.BUTTON_RELEASE_EVENT_INVERSE] = windowProc3; closuresProc [Widget.COMMIT] = windowProc3; closuresProc [Widget.CONFIGURE_EVENT] = windowProc3; closuresProc [Widget.DELETE_EVENT] = windowProc3; closuresProc [Widget.ENTER_NOTIFY_EVENT] = windowProc3; closuresProc [Widget.EVENT] = windowProc3; closuresProc [Widget.EVENT_AFTER] = windowProc3; closuresProc [Widget.EXPOSE_EVENT] = windowProc3; closuresProc [Widget.EXPOSE_EVENT_INVERSE] = windowProc3; closuresProc [Widget.FOCUS] = windowProc3; closuresProc [Widget.FOCUS_IN_EVENT] = windowProc3; closuresProc [Widget.FOCUS_OUT_EVENT] = windowProc3; closuresProc [Widget.KEY_PRESS_EVENT] = windowProc3; closuresProc [Widget.KEY_RELEASE_EVENT] = windowProc3; closuresProc [Widget.INPUT] = windowProc3; closuresProc [Widget.LEAVE_NOTIFY_EVENT] = windowProc3; closuresProc [Widget.MAP_EVENT] = windowProc3; closuresProc [Widget.MNEMONIC_ACTIVATE] = windowProc3; closuresProc [Widget.MOTION_NOTIFY_EVENT] = windowProc3; closuresProc [Widget.MOTION_NOTIFY_EVENT_INVERSE] = windowProc3; closuresProc [Widget.MOVE_FOCUS] = windowProc3; closuresProc [Widget.POPULATE_POPUP] = windowProc3; closuresProc [Widget.SCROLL_EVENT] = windowProc3; closuresProc [Widget.SHOW_HELP] = windowProc3; closuresProc [Widget.SIZE_ALLOCATE] = windowProc3; closuresProc [Widget.STYLE_SET] = windowProc3; closuresProc [Widget.TOGGLED] = windowProc3; closuresProc [Widget.UNMAP_EVENT] = windowProc3; closuresProc [Widget.WINDOW_STATE_EVENT] = windowProc3; closuresProc [Widget.ROW_DELETED] = windowProc3; closuresProc [Widget.DIRECTION_CHANGED] = windowProc3; windowCallback4 = new Callback (this, "windowProc", 4); //$NON-NLS-1$ windowProc4 = windowCallback4.getAddress (); if (windowProc4 == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); closuresProc [Widget.DELETE_RANGE] = windowProc4; closuresProc [Widget.DELETE_TEXT] = windowProc4; closuresProc [Widget.ICON_RELEASE] = windowProc4; closuresProc [Widget.ROW_ACTIVATED] = windowProc4; closuresProc [Widget.SCROLL_CHILD] = windowProc4; closuresProc [Widget.STATUS_ICON_POPUP_MENU] = windowProc4; closuresProc [Widget.SWITCH_PAGE] = windowProc4; closuresProc [Widget.TEST_COLLAPSE_ROW] = windowProc4; closuresProc [Widget.TEST_EXPAND_ROW] = windowProc4; closuresProc [Widget.ROW_INSERTED] = windowProc4; closuresProc [Widget.ROW_HAS_CHILD_TOGGLED] = windowProc4; closuresProc [Widget.DELETE_FROM_CURSOR] = windowProc4; closuresProc [Widget.DELETE_FROM_CURSOR_INVERSE] = windowProc4; windowCallback5 = new Callback (this, "windowProc", 5); //$NON-NLS-1$ windowProc5 = windowCallback5.getAddress (); if (windowProc5 == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); closuresProc [Widget.CHANGE_VALUE] = windowProc5; closuresProc [Widget.EXPAND_COLLAPSE_CURSOR_ROW] = windowProc5; closuresProc [Widget.INSERT_TEXT] = windowProc5; closuresProc [Widget.TEXT_BUFFER_INSERT_TEXT] = windowProc5; closuresProc [Widget.MOVE_CURSOR] = windowProc5; closuresProc [Widget.MOVE_CURSOR_INVERSE] = windowProc5; if (signalIds [Widget.POPPED_UP] != 0) { windowCallback6 = new Callback (this, "windowProc", 6); //$NON-NLS-1$ windowProc6 = windowCallback6.getAddress (); if (windowProc6 == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); closuresProc [Widget.POPPED_UP] = windowProc6; } for (int i = 0; i < Widget.LAST_SIGNAL; i++) { if (closuresProc[i] != 0) { closures [i] = OS.g_cclosure_new(closuresProc [i], i, 0); } if (closures [i] != 0) { OS.g_closure_ref (closures [i]); OS.g_closure_sink (closures [i]); } } timerCallback = new Callback (this, "timerProc", 1); //$NON-NLS-1$ timerProc = timerCallback.getAddress (); if (timerProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); windowTimerCallback = new Callback (this, "windowTimerProc", 1); //$NON-NLS-1$ windowTimerProc = windowTimerCallback.getAddress (); if (windowTimerProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); mouseHoverCallback = new Callback (this, "mouseHoverProc", 1); //$NON-NLS-1$ mouseHoverProc = mouseHoverCallback.getAddress (); if (mouseHoverProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); caretCallback = new Callback(this, "caretProc", 1); //$NON-NLS-1$ caretProc = caretCallback.getAddress(); if (caretProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); sizeAllocateCallback = new Callback(this, "sizeAllocateProc", 3); //$NON-NLS-1$ sizeAllocateProc = sizeAllocateCallback.getAddress(); if (sizeAllocateProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); sizeRequestCallback = new Callback(this, "sizeRequestProc", 3); //$NON-NLS-1$ sizeRequestProc = sizeRequestCallback.getAddress(); if (sizeRequestProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); shellMapCallback = new Callback(this, "shellMapProc", 3); //$NON-NLS-1$ shellMapProc = shellMapCallback.getAddress(); if (shellMapProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); shellMapProcClosure = OS.g_cclosure_new (shellMapProc, 0, 0); OS.g_closure_ref (shellMapProcClosure); cellDataCallback = new Callback (this, "cellDataProc", 5); //$NON-NLS-1$ cellDataProc = cellDataCallback.getAddress (); if (cellDataProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); setDirectionCallback = new Callback (this, "setDirectionProc", 2); //$NON-NLS-1$ setDirectionProc = setDirectionCallback.getAddress (); if (setDirectionProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); emissionProcCallback = new Callback (this, "emissionProc", 4); //$NON-NLS-1$ emissionProc = emissionProcCallback.getAddress (); if (emissionProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); allChildrenCallback = new Callback (this, "allChildrenProc", 2); //$NON-NLS-1$ allChildrenProc = allChildrenCallback.getAddress (); if (allChildrenProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); checkIfEventCallback = new Callback (this, "checkIfEventProc", 3); //$NON-NLS-1$ checkIfEventProc = checkIfEventCallback.getAddress (); if (checkIfEventProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); idleCallback = new Callback (this, "idleProc", 1); //$NON-NLS-1$ idleProc = idleCallback.getAddress (); if (idleProc == 0) error (SWT.ERROR_NO_MORE_CALLBACKS); } void initializeColorList() { colorList = new ArrayList<>(); colorList.add("black"); colorList.add("darkred"); colorList.add("darkgreen"); colorList.add("darkyellow"); colorList.add("darkblue"); colorList.add("darkmagenta"); colorList.add("darkcyan"); colorList.add("darkgray"); colorList.add("gray"); colorList.add("red"); colorList.add("green"); colorList.add("yellow"); colorList.add("blue"); colorList.add("magenta"); colorList.add("cyan"); colorList.add("white"); } void initializeSubclasses () { int /*long*/ pangoLayoutType = OS.PANGO_TYPE_LAYOUT (); int /*long*/ pangoLayoutClass = OS.g_type_class_ref (pangoLayoutType); pangoLayoutNewProc = OS.G_OBJECT_CLASS_CONSTRUCTOR (pangoLayoutClass); OS.G_OBJECT_CLASS_SET_CONSTRUCTOR (pangoLayoutClass, OS.pangoLayoutNewProc_CALLBACK(pangoLayoutNewProc)); OS.g_type_class_unref (pangoLayoutClass); if (GTK.GTK3) { int /*long*/ imContextType = GTK.GTK_TYPE_IM_MULTICONTEXT (); int /*long*/ imContextClass = OS.g_type_class_ref (imContextType); imContextNewProc = OS.G_OBJECT_CLASS_CONSTRUCTOR (imContextClass); OS.G_OBJECT_CLASS_SET_CONSTRUCTOR (imContextClass, OS.imContextNewProc_CALLBACK(imContextNewProc)); OS.g_type_class_unref (imContextClass); int /*long*/ pangoFontFamilyType = OS.PANGO_TYPE_FONT_FAMILY (); int /*long*/ pangoFontFamilyClass = OS.g_type_class_ref (pangoFontFamilyType); pangoFontFamilyNewProc = OS.G_OBJECT_CLASS_CONSTRUCTOR (pangoFontFamilyClass); OS.G_OBJECT_CLASS_SET_CONSTRUCTOR (pangoFontFamilyClass, OS.pangoFontFamilyNewProc_CALLBACK(pangoFontFamilyNewProc)); OS.g_type_class_unref (pangoFontFamilyClass); int /*long*/ pangoFontFaceType = OS.PANGO_TYPE_FONT_FACE (); int /*long*/ pangoFontFaceClass = OS.g_type_class_ref (pangoFontFaceType); pangoFontFaceNewProc = OS.G_OBJECT_CLASS_CONSTRUCTOR (pangoFontFaceClass); OS.G_OBJECT_CLASS_SET_CONSTRUCTOR (pangoFontFaceClass, OS.pangoFontFaceNewProc_CALLBACK(pangoFontFaceNewProc)); OS.g_type_class_unref (pangoFontFaceClass); if (!OS.IsWin32) { /* TODO [win32] replace unixprint */ int /*long*/ printerOptionWidgetType = GTK.gtk_printer_option_widget_get_type(); int /*long*/ printerOptionWidgetClass = OS.g_type_class_ref (printerOptionWidgetType); printerOptionWidgetNewProc = OS.G_OBJECT_CLASS_CONSTRUCTOR (printerOptionWidgetClass); OS.G_OBJECT_CLASS_SET_CONSTRUCTOR (printerOptionWidgetClass, OS.printerOptionWidgetNewProc_CALLBACK(printerOptionWidgetNewProc)); OS.g_type_class_unref (printerOptionWidgetClass); } } } void initializeSystemSettings () { OS.g_signal_connect (shellHandle, OS.style_set, signalProc, STYLE_SET); /* * Feature in GTK. Despite the fact that the * gtk-entry-select-on-focus property is a global * setting, it is initialized when the GtkEntry * is initialized. This means that it cannot be * accessed before a GtkEntry is created. The * fix is to for the initializaion by creating * a temporary GtkEntry. */ int /*long*/ entry = GTK.gtk_entry_new (); GTK.gtk_widget_destroy (entry); int [] buffer2 = new int [1]; int /*long*/ settings = GTK.gtk_settings_get_default (); OS.g_object_get (settings, GTK.gtk_entry_select_on_focus, buffer2, 0); entrySelectOnFocus = buffer2 [0] != 0; } void initializeWidgetTable () { indexTable = new int [GROW_SIZE]; widgetTable = new Widget [GROW_SIZE]; for (int i=0; i 0) { byte [] buffer2 = new byte [length]; C.memmove (buffer2, ptr2, length); windowManager = new String (Converter.mbcsToWcs (buffer2)); } } } } } /** * Invokes platform specific functionality to dispose a GC handle. *

    * IMPORTANT: This method is not part of the public * API for Display. It is marked public only so that it * can be shared within the packages provided by SWT. It is not * available on all platforms, and should never be called from * application code. *

    * * @param hDC the platform specific GC handle * @param data the platform specific GC data * * @noreference This method is not intended to be referenced by clients. */ @Override public void internal_dispose_GC (int /*long*/ hDC, GCData data) { Cairo.cairo_destroy (hDC); } /** * Invokes platform specific functionality to allocate a new GC handle. *

    * IMPORTANT: This method is not part of the public * API for Display. It is marked public only so that it * can be shared within the packages provided by SWT. It is not * available on all platforms, and should never be called from * application code. *

    * * @param data the platform specific GC data * @return the platform specific GC handle * * @exception SWTException
      *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * @exception SWTError
      *
    • ERROR_NO_HANDLES if a handle could not be obtained for gc creation
    • *
    * * @noreference This method is not intended to be referenced by clients. */ @Override public int /*long*/ internal_new_GC (GCData data) { if (isDisposed()) error(SWT.ERROR_DEVICE_DISPOSED); int /*long*/ root = GDK.gdk_get_default_root_window(); int /*long*/ gc = GDK.gdk_cairo_create (root); if (gc == 0) error (SWT.ERROR_NO_HANDLES); //TODO how gdk_gc_set_subwindow is done in cairo? if (data != null) { int mask = SWT.LEFT_TO_RIGHT | SWT.RIGHT_TO_LEFT; if ((data.style & mask) == 0) { data.style |= SWT.LEFT_TO_RIGHT; } data.device = this; data.drawable = root; if (GTK.GTK3) { data.backgroundRGBA = getSystemColor (SWT.COLOR_WHITE).handleRGBA; data.foregroundRGBA = getSystemColor (SWT.COLOR_BLACK).handleRGBA; } else { data.background = getSystemColor (SWT.COLOR_WHITE).handle; data.foreground = getSystemColor (SWT.COLOR_BLACK).handle; } data.font = getSystemFont (); } return gc; } boolean isValidThread () { return thread == Thread.currentThread (); } /** * Maps a point from one coordinate system to another. * When the control is null, coordinates are mapped to * the display. *

    * NOTE: On right-to-left platforms where the coordinate * systems are mirrored, special care needs to be taken * when mapping coordinates from one control to another * to ensure the result is correctly mirrored. * * Mapping a point that is the origin of a rectangle and * then adding the width and height is not equivalent to * mapping the rectangle. When one control is mirrored * and the other is not, adding the width and height to a * point that was mapped causes the rectangle to extend * in the wrong direction. Mapping the entire rectangle * instead of just one point causes both the origin and * the corner of the rectangle to be mapped. *

    * * @param from the source Control or null * @param to the destination Control or null * @param point to be mapped * @return point with mapped coordinates * * @exception IllegalArgumentException
      *
    • ERROR_NULL_ARGUMENT - if the point is null
    • *
    • ERROR_INVALID_ARGUMENT - if the Control from or the Control to have been disposed
    • *
    * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 2.1.2 */ public Point map (Control from, Control to, Point point) { checkDevice (); if (point == null) error (SWT.ERROR_NULL_ARGUMENT); return map (from, to, point.x, point.y); } /** * Maps a point from one coordinate system to another. * When the control is null, coordinates are mapped to * the display. *

    * NOTE: On right-to-left platforms where the coordinate * systems are mirrored, special care needs to be taken * when mapping coordinates from one control to another * to ensure the result is correctly mirrored. * * Mapping a point that is the origin of a rectangle and * then adding the width and height is not equivalent to * mapping the rectangle. When one control is mirrored * and the other is not, adding the width and height to a * point that was mapped causes the rectangle to extend * in the wrong direction. Mapping the entire rectangle * instead of just one point causes both the origin and * the corner of the rectangle to be mapped. *

    * * @param from the source Control or null * @param to the destination Control or null * @param x coordinates to be mapped * @param y coordinates to be mapped * @return point with mapped coordinates * * @exception IllegalArgumentException
      *
    • ERROR_INVALID_ARGUMENT - if the Control from or the Control to have been disposed
    • *
    * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 2.1.2 */ public Point map (Control from, Control to, int x, int y) { checkDevice (); if (from != null && from.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); if (to != null && to.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); Point point = new Point (x, y); if (from == to) return point; if (from != null) { Point origin = DPIUtil.autoScaleDown (from.getWindowOrigin ()); if ((from.style & SWT.MIRRORED) != 0) point.x = DPIUtil.autoScaleDown (from.getClientWidth ()) - point.x; point.x += origin.x; point.y += origin.y; } if (to != null) { Point origin = DPIUtil.autoScaleDown (to.getWindowOrigin ()); point.x -= origin.x; point.y -= origin.y; if ((to.style & SWT.MIRRORED) != 0) point.x = DPIUtil.autoScaleDown (to.getClientWidth ()) - point.x; } return point; } Point mapInPixels (Control from, Control to, int x, int y) { checkDevice (); if (from != null && from.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); if (to != null && to.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); Point point = new Point (x, y); if (from == to) return point; if (from != null) { Point origin = from.getWindowOrigin (); if ((from.style & SWT.MIRRORED) != 0) point.x = from.getClientWidth () - point.x; point.x += origin.x; point.y += origin.y; } if (to != null) { Point origin = to.getWindowOrigin (); point.x -= origin.x; point.y -= origin.y; if ((to.style & SWT.MIRRORED) != 0) point.x = to.getClientWidth () - point.x; } return point; } /** * Maps a point from one coordinate system to another. * When the control is null, coordinates are mapped to * the display. *

    * NOTE: On right-to-left platforms where the coordinate * systems are mirrored, special care needs to be taken * when mapping coordinates from one control to another * to ensure the result is correctly mirrored. * * Mapping a point that is the origin of a rectangle and * then adding the width and height is not equivalent to * mapping the rectangle. When one control is mirrored * and the other is not, adding the width and height to a * point that was mapped causes the rectangle to extend * in the wrong direction. Mapping the entire rectangle * instead of just one point causes both the origin and * the corner of the rectangle to be mapped. *

    * * @param from the source Control or null * @param to the destination Control or null * @param rectangle to be mapped * @return rectangle with mapped coordinates * * @exception IllegalArgumentException
      *
    • ERROR_NULL_ARGUMENT - if the rectangle is null
    • *
    • ERROR_INVALID_ARGUMENT - if the Control from or the Control to have been disposed
    • *
    * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 2.1.2 */ public Rectangle map (Control from, Control to, Rectangle rectangle) { checkDevice(); if (rectangle == null) error (SWT.ERROR_NULL_ARGUMENT); return map (from, to, rectangle.x, rectangle.y, rectangle.width, rectangle.height); } Rectangle mapInPixels (Control from, Control to, Rectangle rectangle) { checkDevice(); if (rectangle == null) error (SWT.ERROR_NULL_ARGUMENT); return mapInPixels (from, to, rectangle.x, rectangle.y, rectangle.width, rectangle.height); } /** * Maps a point from one coordinate system to another. * When the control is null, coordinates are mapped to * the display. *

    * NOTE: On right-to-left platforms where the coordinate * systems are mirrored, special care needs to be taken * when mapping coordinates from one control to another * to ensure the result is correctly mirrored. * * Mapping a point that is the origin of a rectangle and * then adding the width and height is not equivalent to * mapping the rectangle. When one control is mirrored * and the other is not, adding the width and height to a * point that was mapped causes the rectangle to extend * in the wrong direction. Mapping the entire rectangle * instead of just one point causes both the origin and * the corner of the rectangle to be mapped. *

    * * @param from the source Control or null * @param to the destination Control or null * @param x coordinates to be mapped * @param y coordinates to be mapped * @param width coordinates to be mapped * @param height coordinates to be mapped * @return rectangle with mapped coordinates * * @exception IllegalArgumentException
      *
    • ERROR_INVALID_ARGUMENT - if the Control from or the Control to have been disposed
    • *
    * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 2.1.2 */ public Rectangle map (Control from, Control to, int x, int y, int width, int height) { checkDevice(); if (from != null && from.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); if (to != null && to.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); Rectangle rect = new Rectangle (x, y, width, height); if (from == to) return rect; boolean fromRTL = false, toRTL = false; if (from != null) { Point origin = DPIUtil.autoScaleDown (from.getWindowOrigin ()); if (fromRTL = (from.style & SWT.MIRRORED) != 0) rect.x = DPIUtil.autoScaleDown (from.getClientWidth ()) - rect.x; rect.x += origin.x; rect.y += origin.y; } if (to != null) { Point origin = DPIUtil.autoScaleDown (to.getWindowOrigin ()); rect.x -= origin.x; rect.y -= origin.y; if (toRTL = (to.style & SWT.MIRRORED) != 0) rect.x = DPIUtil.autoScaleDown (to.getClientWidth ()) - rect.x; } if (fromRTL != toRTL) rect.x -= rect.width; return rect; } Rectangle mapInPixels (Control from, Control to, int x, int y, int width, int height) { checkDevice(); if (from != null && from.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); if (to != null && to.isDisposed()) error (SWT.ERROR_INVALID_ARGUMENT); Rectangle rect = new Rectangle (x, y, width, height); if (from == to) return rect; boolean fromRTL = false, toRTL = false; if (from != null) { Point origin = from.getWindowOrigin (); if (fromRTL = (from.style & SWT.MIRRORED) != 0) rect.x = from.getClientWidth () - rect.x; rect.x += origin.x; rect.y += origin.y; } if (to != null) { Point origin = to.getWindowOrigin (); rect.x -= origin.x; rect.y -= origin.y; if (toRTL = (to.style & SWT.MIRRORED) != 0) rect.x = to.getClientWidth () - rect.x; } if (fromRTL != toRTL) rect.x -= rect.width; return rect; } int /*long*/ mouseHoverProc (int /*long*/ handle) { Widget widget = getWidget (handle); // null the GSource id as our implementation always returns 0 so the hover is // hidden and this leads to the GSource to be destroyed mouseHoverId = 0; if (widget == null) { return 0; } return widget.hoverProc (handle); } /** * Generate a low level system event. * * post is used to generate low level keyboard * and mouse events. The intent is to enable automated UI * testing by simulating the input from the user. Most * SWT applications should never need to call this method. *

    * Note that this operation can fail when the operating system * fails to generate the event for any reason. For example, * this can happen when there is no such key or mouse button * or when the system event queue is full. *

    *

    * Event Types: *

    KeyDown, KeyUp *

    The following fields in the Event apply: *

      *
    • (in) type KeyDown or KeyUp
    • *

      Either one of: *

    • (in) character a character that corresponds to a keyboard key
    • *
    • (in) keyCode the key code of the key that was typed, * as defined by the key code constants in class SWT
    • *

      Optional (on some platforms):

      *
    • (in) stateMask the state of the keyboard modifier, * as defined by the key code constants in class SWT *
    • *
    *

    MouseDown, MouseUp

    *

    The following fields in the Event apply: *

      *
    • (in) type MouseDown or MouseUp *
    • (in) button the button that is pressed or released *
    *

    MouseMove

    *

    The following fields in the Event apply: *

      *
    • (in) type MouseMove *
    • (in) x the x coordinate to move the mouse pointer to in screen coordinates *
    • (in) y the y coordinate to move the mouse pointer to in screen coordinates *
    *

    MouseWheel

    *

    The following fields in the Event apply: *

      *
    • (in) type MouseWheel *
    • (in) detail either SWT.SCROLL_LINE or SWT.SCROLL_PAGE *
    • (in) count the number of lines or pages to scroll *
    * * * @param event the event to be generated * * @return true if the event was generated or false otherwise * * @exception IllegalArgumentException
      *
    • ERROR_NULL_ARGUMENT - if the event is null
    • *
    * @exception SWTException
      *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    * * @since 3.0 * */ public boolean post (Event event) { /* * Get the operating system lock before synchronizing on the device * lock so that the device lock will not be held should another * thread already be in the operating system. This avoids deadlock * should the other thread need the device lock. */ Lock lock = Platform.lock; lock.lock(); try { synchronized (Device.class) { if (isDisposed ()) error (SWT.ERROR_DEVICE_DISPOSED); if (event == null) error (SWT.ERROR_NULL_ARGUMENT); if (!OS.isX11()) { return false; } int type = event.type; if (type == SWT.MouseMove) { Rectangle loc = DPIUtil.autoScaleUp(event.getBounds ()); setCursorLocationInPixels(new Point(loc.x, loc.y)); return true; } int /*long*/ gdkDisplay = GDK.gdk_display_get_default(); int /*long*/ gdkScreen = GDK.gdk_screen_get_default(); int /*long*/ gdkWindow = GDK.gdk_screen_get_active_window(gdkScreen); int[] x = new int[1], y = new int[1]; if (gdkWindow == 0) { // Under some window managers or wayland gdk can not determine the active window and passing null // to gdk_test_simulate_button leads to crash. return false; } if (GTK.GTK3) { int /*long*/ gdkPointer = GDK.gdk_get_pointer(gdkDisplay); GDK.gdk_window_get_device_position(gdkWindow, gdkPointer, x, y, new int[1]); } else { GDK.gdk_window_get_pointer(gdkWindow, x, y, new int[1]); } switch (type) { case SWT.KeyDown: case SWT.KeyUp: { int pressedModifier = 0; switch (event.keyCode) { case SWT.SHIFT: pressedModifier = GDK.GDK_SHIFT_MASK; break; case SWT.ALT: pressedModifier = GDK.GDK_MOD1_MASK; break; case SWT.CONTROL: pressedModifier = GDK.GDK_CONTROL_MASK; break; case SWT.ALT_GR: pressedModifier = GDK.GDK_MOD5_MASK; break; default: pressedModifier = 0; } if (pressedModifier != 0) { if (type == SWT.KeyDown) { cachedModifier |= pressedModifier; } else { cachedModifier &= ~pressedModifier; } } int keysym = untranslateKey (event.keyCode); if (keysym == 0) { char key = event.character; switch (key) { case SWT.BS: keysym = GDK.GDK_BackSpace; break; case SWT.CR: keysym = GDK.GDK_Return; break; case SWT.DEL: keysym = GDK.GDK_Delete; break; case SWT.ESC: keysym = GDK.GDK_Escape; break; case SWT.TAB: keysym = GDK.GDK_Tab; break; case SWT.LF: keysym = GDK.GDK_Linefeed; break; default: keysym = key; } if (keysym == 0) return false; } int modifier = cachedModifier; switch (event.stateMask) { case SWT.SHIFT: modifier = cachedModifier | GDK.GDK_SHIFT_MASK; break; case SWT.ALT: modifier = cachedModifier | GDK.GDK_MOD1_MASK; break; case SWT.CONTROL: modifier = cachedModifier | GDK.GDK_CONTROL_MASK; break; case SWT.ALT_GR: modifier = cachedModifier | GDK.GDK_MOD5_MASK; break; default: modifier = cachedModifier; } GDK.gdk_test_simulate_key(gdkWindow, x[0], y[0], keysym, modifier, type == SWT.KeyDown ? GDK.GDK_KEY_PRESS: GDK.GDK_KEY_RELEASE); return true; } case SWT.MouseDown: case SWT.MouseUp: { int button = event.button; switch (button) { case 1: case 2: case 3: break; case 4: button = 6; break; case 5: button = 7; break; default: return false; } GDK.gdk_test_simulate_button(gdkWindow, x[0], y[0], button, 0, type == SWT.MouseDown ? GDK.GDK_BUTTON_PRESS: GDK.GDK_BUTTON_RELEASE); return true; } /* * This code is intentionally commented. After posting a * mouse wheel event the system may respond unpredictably * to subsequent mouse actions. */ // case SWT.MouseWheel: { // if (event.count == 0) return false; // int button = event.count < 0 ? 5 : 4; // OS.XTestFakeButtonEvent (xDisplay, button, type == SWT.MouseWheel, 0); // } } return false; } } finally { lock.unlock(); } } void postEvent (Event event) { /* * Place the event at the end of the event queue. * This code is always called in the Display's * thread so it must be re-enterant but does not * need to be synchronized. */ if (eventQueue == null) eventQueue = new Event [4]; int index = 0; int length = eventQueue.length; while (index < length) { if (eventQueue [index] == null) break; index++; } if (index == length) { Event [] newQueue = new Event [length + 4]; System.arraycopy (eventQueue, 0, newQueue, 0, length); eventQueue = newQueue; } eventQueue [index] = event; } void putGdkEvents () { if (gdkEventCount != 0) { for (int i = 0; i < gdkEventCount; i++) { int /*long*/ event = gdkEvents [i]; Widget widget = gdkEventWidgets [i]; if (widget == null || !widget.isDisposed ()) { GDK.gdk_event_put (event); } GDK.gdk_event_free (event); gdkEvents [i] = 0; gdkEventWidgets [i] = null; } gdkEventCount = 0; } } /** * Reads an event from the operating system's event queue, * dispatches it appropriately, and returns true * if there is potentially more work to do, or false * if the caller can sleep until another event is placed on * the event queue. *

    * In addition to checking the system event queue, this method also * checks if any inter-thread messages (created by syncExec() * or asyncExec()) are waiting to be processed, and if * so handles them before returning. *

    * * @return false if the caller can sleep upon return from this method * * @exception SWTException
      *
    • ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
    • *
    • ERROR_DEVICE_DISPOSED - if the receiver has been disposed
    • *
    • ERROR_FAILED_EXEC - if an exception occurred while running an inter-thread message
    • *
    * * @see #sleep * @see #wake */ public boolean readAndDispatch () { checkDevice (); runSkin (); runDeferredLayouts (); boolean events = false; events |= runSettings (); events |= runPopups (); /* * This call to gdk_threads_leave() is a temporary work around * to avoid deadlocks when gdk_threads_init() is called by native * code outside of SWT (i.e AWT, etc). It ensures that the current * thread leaves the GTK lock before calling the function below. */ GDK.gdk_threads_leave(); events |= OS.g_main_context_iteration (0, false); if (events) { runDeferredEvents (); return true; } return isDisposed () || runAsyncMessages (false); } static void register (Display display) { synchronized (Device.class) { for (int i=0; i * Disposes all shells which are currently open on the display. * After this method has been invoked, all related related shells * will answer true when sent the message * isDisposed(). *

    * When a device is destroyed, resources that were acquired * on behalf of the programmer need to be returned to the * operating system. For example, if the device allocated a * font to be used as the system font, this font would be * freed in release. Also,to assist the garbage * collector and minimize the amount of memory that is not * reclaimed when the programmer keeps a reference to a * disposed device, all fields except the handle are zero'd. * The handle is needed by destroy. *

    * This method is called before destroy. * * @see Device#dispose * @see #destroy */ @Override protected void release () { sendEvent (SWT.Dispose, new Event ()); Shell [] shells = getShells (); for (int i=0; i




    © 2015 - 2025 Weber Informatics LLC | Privacy Policy