org.eclipse.swt.widgets.Caret Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2000, 2019 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.swt.widgets;
import org.eclipse.swt.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.internal.*;
import org.eclipse.swt.internal.win32.*;
/**
* Instances of this class provide an i-beam that is typically used
* as the insertion point for text.
*
* - Styles:
* - (none)
* - Events:
* - (none)
*
*
* IMPORTANT: This class is not intended to be subclassed.
*
*
* @see Caret snippets
* @see SWT Example: ControlExample, Canvas tab
* @see Sample code and further information
* @noextend This class is not intended to be subclassed by clients.
*/
public class Caret extends Widget {
/** The Caret last updated on the OS-level */
private static Caret currentCaret;
Canvas parent;
int x, y, width, height;
boolean moved, resized;
boolean isVisible;
Image image;
Font font;
LOGFONT oldFont;
static {
DPIZoomChangeRegistry.registerHandler(Caret::handleDPIChange, Caret.class);
}
/**
* Constructs a new instance of this class given its parent
* and a style value describing its behavior and appearance.
*
* The style value is either one of the style constants defined in
* class SWT
which is applicable to instances of this
* class, or must be built by bitwise OR'ing together
* (that is, using the int
"|" operator) two or more
* of those SWT
style constants. The class description
* lists the style constants that are applicable to the class.
* Style bits are also inherited from superclasses.
*
*
* @param parent a composite control which will be the parent of the new instance (cannot be null)
* @param style the style of control to construct
*
* @exception IllegalArgumentException
* - ERROR_NULL_ARGUMENT - if the parent is null
*
* @exception SWTException
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the parent
* - ERROR_INVALID_SUBCLASS - if this class is not an allowed subclass
*
*
* @see SWT
* @see Widget#checkSubclass
* @see Widget#getStyle
*/
public Caret (Canvas parent, int style) {
super (parent, style);
this.parent = parent;
createWidget ();
}
void createWidget () {
isVisible = true;
if (parent.getCaret () == null) {
parent.setCaret (this);
}
}
long defaultFont () {
long hwnd = parent.handle;
long hwndIME = OS.ImmGetDefaultIMEWnd (hwnd);
long hFont = 0;
if (hwndIME != 0) {
hFont = OS.SendMessage (hwndIME, OS.WM_GETFONT, 0, 0);
}
if (hFont == 0) {
hFont = OS.SendMessage (hwnd, OS.WM_GETFONT, 0, 0);
}
if (hFont == 0) return parent.defaultFont ();
return hFont;
}
/**
* Returns a rectangle describing the receiver's size and location
* relative to its parent (or its display if its parent is null).
*
* @return the receiver's bounding rectangle
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public Rectangle getBounds () {
checkWidget();
return DPIUtil.scaleDown(getBoundsInPixels(), getZoom());
}
Rectangle getBoundsInPixels () {
if (image != null) {
Rectangle rect = image.getBoundsInPixels ();
return new Rectangle (getXInPixels(), getYInPixels(), rect.width, rect.height);
}
if (width == 0) {
int [] buffer = new int [1];
if (OS.SystemParametersInfo (OS.SPI_GETCARETWIDTH, 0, buffer, 0)) {
return new Rectangle (getXInPixels(), getYInPixels(), buffer [0], getHeightInPixels());
}
}
return new Rectangle (getXInPixels(), getYInPixels(), getWidthInPixels(), getHeightInPixels());
}
/**
* Returns the font that the receiver will use to paint textual information.
*
* @return the receiver's font
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public Font getFont () {
checkWidget();
if (font == null) {
long hFont = defaultFont ();
return Font.win32_new (display, hFont, getZoom());
}
return font;
}
/**
* Returns the image that the receiver will use to paint the caret.
*
* @return the receiver's image
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public Image getImage () {
checkWidget();
return image;
}
/**
* Returns a point describing the receiver's location relative
* to its parent (or its display if its parent is null).
*
* @return the receiver's location
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public Point getLocation () {
checkWidget();
return new Point (x, y);
}
/**
* Returns the receiver's parent, which must be a Canvas
.
*
* @return the receiver's parent
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public Canvas getParent () {
checkWidget();
return parent;
}
/**
* Returns a point describing the receiver's size.
*
* @return the receiver's size
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public Point getSize () {
checkWidget();
return DPIUtil.scaleDown(getSizeInPixels(), getZoom());
}
Point getSizeInPixels () {
if (image != null) {
Rectangle rect = image.getBoundsInPixels ();
return new Point (rect.width, rect.height);
}
if (width == 0) {
int [] buffer = new int [1];
if (OS.SystemParametersInfo (OS.SPI_GETCARETWIDTH, 0, buffer, 0)) {
return new Point (buffer [0], getHeightInPixels());
}
}
return new Point (getWidthInPixels(), getHeightInPixels());
}
private int getWidthInPixels() {
return DPIUtil.scaleUp(width, getZoom());
}
private int getHeightInPixels() {
return DPIUtil.scaleUp(height, getZoom());
}
private int getXInPixels() {
return DPIUtil.scaleUp(x, getZoom());
}
private int getYInPixels() {
return DPIUtil.scaleUp(y, getZoom());
}
/**
* Returns true
if the receiver is visible, and
* false
otherwise.
*
* If one of the receiver's ancestors is not visible or some
* other condition makes the receiver not visible, this method
* may still indicate that it is considered visible even though
* it may not actually be showing.
*
*
* @return the receiver's visibility state
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public boolean getVisible () {
checkWidget();
return isVisible;
}
boolean hasFocus () {
return parent.handle == OS.GetFocus ();
}
boolean isFocusCaret () {
return parent.caret == this && hasFocus ();
}
/**
* Returns true
if the receiver is visible and all
* of the receiver's ancestors are visible and false
* otherwise.
*
* @return the receiver's visibility state
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*
* @see #getVisible
*/
public boolean isVisible () {
checkWidget();
return isVisible && parent.isVisible () && hasFocus ();
}
void killFocus () {
OS.DestroyCaret ();
restoreIMEFont ();
}
void move () {
moved = false;
setCurrentCaret(this);
if (!OS.SetCaretPos (getXInPixels(), getYInPixels())) return;
resizeIME ();
}
void resizeIME () {
if (!OS.IsDBLocale) return;
POINT ptCurrentPos = new POINT ();
if (!OS.GetCaretPos (ptCurrentPos)) return;
long hwnd = parent.handle;
long hIMC = OS.ImmGetContext (hwnd);
IME ime = parent.getIME ();
if (ime != null && ime.isInlineEnabled ()) {
Point size = getSizeInPixels ();
CANDIDATEFORM lpCandidate = new CANDIDATEFORM ();
lpCandidate.dwStyle = OS.CFS_EXCLUDE;
lpCandidate.ptCurrentPos = ptCurrentPos;
lpCandidate.rcArea = new RECT ();
OS.SetRect (lpCandidate.rcArea, ptCurrentPos.x, ptCurrentPos.y, ptCurrentPos.x + size.x, ptCurrentPos.y + size.y);
OS.ImmSetCandidateWindow (hIMC, lpCandidate);
} else {
RECT rect = new RECT ();
OS.GetClientRect (hwnd, rect);
COMPOSITIONFORM lpCompForm = new COMPOSITIONFORM ();
lpCompForm.dwStyle = OS.CFS_RECT;
lpCompForm.x = ptCurrentPos.x;
lpCompForm.y = ptCurrentPos.y;
lpCompForm.left = rect.left;
lpCompForm.right = rect.right;
lpCompForm.top = rect.top;
lpCompForm.bottom = rect.bottom;
OS.ImmSetCompositionWindow (hIMC, lpCompForm);
}
OS.ImmReleaseContext (hwnd, hIMC);
}
@Override
void releaseParent () {
super.releaseParent ();
if (parent != null && this == parent.caret) {
if (!parent.isDisposed()) parent.setCaret (null);
else parent.caret = null;
}
}
@Override
void releaseWidget () {
super.releaseWidget ();
if (isCurrentCaret()) {
setCurrentCaret(null);
}
parent = null;
image = null;
font = null;
oldFont = null;
}
void resize () {
resized = false;
long hwnd = parent.handle;
OS.DestroyCaret ();
long hBitmap = image != null ? Image.win32_getHandle(image, getZoom()) : 0;
int widthInPixels = this.getWidthInPixels();
if (image == null && widthInPixels == 0) {
int [] buffer = new int [1];
if (OS.SystemParametersInfo (OS.SPI_GETCARETWIDTH, 0, buffer, 0)) {
widthInPixels = buffer [0];
}
}
OS.CreateCaret (hwnd, hBitmap, widthInPixels, getHeightInPixels());
OS.SetCaretPos (getXInPixels(), getYInPixels());
OS.ShowCaret (hwnd);
move ();
}
void restoreIMEFont () {
if (!OS.IsDBLocale) return;
if (oldFont == null) return;
long hwnd = parent.handle;
long hIMC = OS.ImmGetContext (hwnd);
OS.ImmSetCompositionFont (hIMC, oldFont);
OS.ImmReleaseContext (hwnd, hIMC);
oldFont = null;
}
/**
* Sets the receiver's size and location to the rectangular
* area specified by the arguments. The x
and
* y
arguments are relative to the receiver's
* parent (or its display if its parent is null).
*
* @param x the new x coordinate for the receiver
* @param y the new y coordinate for the receiver
* @param width the new width for the receiver
* @param height the new height for the receiver
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setBounds (int x, int y, int width, int height) {
checkWidget();
boolean samePosition = this.x == x && this.y == y;
boolean sameExtent = this.width == width && this.height == height;
if (samePosition && sameExtent && isCurrentCaret()) return;
this.x = x;
this.y = y;
this.width = width;
this.height = height;
if (sameExtent) {
moved = true;
if (isVisible && hasFocus ()) move ();
} else {
resized = true;
if (isVisible && hasFocus ()) resize ();
}
}
/**
* Sets the receiver's size and location to the rectangular
* area specified by the argument. The x
and
* y
fields of the rectangle are relative to
* the receiver's parent (or its display if its parent is null).
*
* @param rect the new bounds for the receiver
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setBounds (Rectangle rect) {
if (rect == null) error (SWT.ERROR_NULL_ARGUMENT);
setBounds(rect.x, rect.y, rect.width, rect.height);
}
void setFocus () {
long hwnd = parent.handle;
long hBitmap = 0;
if (image != null) hBitmap = Image.win32_getHandle(image, getZoom());
int widthInPixels = this.getWidthInPixels();
if (image == null && widthInPixels == 0) {
int [] buffer = new int [1];
if (OS.SystemParametersInfo (OS.SPI_GETCARETWIDTH, 0, buffer, 0)) {
widthInPixels = buffer [0];
}
}
OS.CreateCaret (hwnd, hBitmap, widthInPixels, getHeightInPixels());
move ();
setIMEFont ();
if (isVisible) OS.ShowCaret (hwnd);
}
/**
* Sets the font that the receiver will use to paint textual information
* to the font specified by the argument, or to the default font for that
* kind of control if the argument is null.
*
* @param font the new font (or null)
*
* @exception IllegalArgumentException
* - ERROR_INVALID_ARGUMENT - if the font has been disposed
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setFont (Font font) {
checkWidget();
if (font != null && font.isDisposed ()) {
error (SWT.ERROR_INVALID_ARGUMENT);
}
Shell shell = parent.getShell();
this.font = font == null ? null : Font.win32_new(font, shell.nativeZoom);
if (hasFocus ()) setIMEFont ();
}
/**
* Sets the image that the receiver will use to paint the caret
* to the image specified by the argument, or to the default
* which is a filled rectangle if the argument is null
*
* @param image the new image (or null)
*
* @exception IllegalArgumentException
* - ERROR_INVALID_ARGUMENT - if the image has been disposed
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setImage (Image image) {
checkWidget();
if (image != null && image.isDisposed ()) {
error (SWT.ERROR_INVALID_ARGUMENT);
}
this.image = image;
if (isVisible && hasFocus ()) resize ();
}
void setIMEFont () {
if (!OS.IsDBLocale) return;
long hFont = 0;
if (font != null) hFont = font.handle;
if (hFont == 0) hFont = defaultFont ();
long hwnd = parent.handle;
long hIMC = OS.ImmGetContext (hwnd);
/* Save the current IME font */
if (oldFont == null) {
oldFont = new LOGFONT ();
if (!OS.ImmGetCompositionFont (hIMC, oldFont)) oldFont = null;
}
/* Set new IME font */
LOGFONT logFont = new LOGFONT ();
if (OS.GetObject (hFont, LOGFONT.sizeof, logFont) != 0) {
OS.ImmSetCompositionFont (hIMC, logFont);
}
OS.ImmReleaseContext (hwnd, hIMC);
}
/**
* Sets the receiver's location to the point specified by
* the arguments which are relative to the receiver's
* parent (or its display if its parent is null).
*
* @param x the new x coordinate for the receiver
* @param y the new y coordinate for the receiver
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setLocation (int x, int y) {
checkWidget();
if (this.x == x && this.y == y && isCurrentCaret()) return;
this.x = x; this.y = y;
moved = true;
if (isVisible && hasFocus ()) move ();
}
private boolean isCurrentCaret() {
return Caret.currentCaret == this;
}
private void setCurrentCaret(Caret caret) {
Caret.currentCaret = caret;
}
/**
* Sets the receiver's location to the point specified by
* the argument which is relative to the receiver's
* parent (or its display if its parent is null).
*
* @param location the new location for the receiver
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setLocation (Point location) {
checkWidget();
if (location == null) error (SWT.ERROR_NULL_ARGUMENT);
setLocation(location.x, location.y);
}
/**
* Sets the receiver's size to the point specified by the arguments.
*
* @param width the new width for the receiver
* @param height the new height for the receiver
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setSize (int width, int height) {
checkWidget();
if (this.width == width && this.height == height && isCurrentCaret()) return;
this.width = width;
this.height = height;
resized = true;
if (isVisible && hasFocus ()) resize ();
}
/**
* Sets the receiver's size to the point specified by the argument.
*
* @param size the new extent for the receiver
*
* @exception IllegalArgumentException
* - ERROR_NULL_ARGUMENT - if the point is null
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setSize (Point size) {
checkWidget();
if (size == null) error (SWT.ERROR_NULL_ARGUMENT);
setSize(size.x, size.y);
}
/**
* Marks the receiver as visible if the argument is true
,
* and marks it invisible otherwise.
*
* If one of the receiver's ancestors is not visible or some
* other condition makes the receiver not visible, marking
* it visible may not actually cause it to be displayed.
*
*
* @param visible the new visibility state
*
* @exception SWTException
* - ERROR_WIDGET_DISPOSED - if the receiver has been disposed
* - ERROR_THREAD_INVALID_ACCESS - if not called from the thread that created the receiver
*
*/
public void setVisible (boolean visible) {
checkWidget();
if (visible == isVisible) return;
isVisible = visible;
long hwnd = parent.handle;
if (OS.GetFocus () != hwnd) return;
if (!isVisible) {
OS.HideCaret (hwnd);
} else {
if (resized) {
resize ();
} else {
if (moved) move ();
}
OS.ShowCaret (hwnd);
}
}
/**
* IMPORTANT: This method is not part of the public
* API for Image. 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.
*
* Sets the height o the caret in points.
*
* @param caret the caret to set the height of
* @param height the height of caret to be set in points.
*
* @noreference This method is not intended to be referenced by clients.
*/
public static void win32_setHeight(Caret caret, int height) {
caret.checkWidget();
if(caret.height == height && caret.isCurrentCaret()) return;
caret.height = height;
caret.resized = true;
if(caret.isVisible && caret.hasFocus()) caret.resize();
}
private static void handleDPIChange(Widget widget, int newZoom, float scalingFactor) {
if (!(widget instanceof Caret caret)) {
return;
}
Image image = caret.getImage();
if (image != null) {
caret.setImage(image);
}
if (caret.font != null) {
caret.setFont(caret.font);
}
}
}