/******************************************************************************* * Copyright (c) 2000, 2012 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.swt.widgets; import org.eclipse.swt.graphics.*; import org.eclipse.swt.internal.cairo.Cairo; import org.eclipse.swt.internal.gtk.*; import org.eclipse.swt.*; /** * Instances of this class provide a surface for drawing * arbitrary graphics. *
*
Styles:
*
(none)
*
Events:
*
(none)
*
*

* This class may be subclassed by custom control implementors * who are building controls that are not constructed * from aggregates of other controls. That is, they are either * painted using SWT graphics calls or are handled by native * methods. *

* * @see Composite * @see Canvas snippets * @see SWT Example: ControlExample * @see Sample code and further information */ public class Canvas extends Composite { Caret caret; IME ime; Canvas () {} /** * 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 * @exception SWTException * * @see SWT * @see Widget#getStyle */ public Canvas (Composite parent, int style) { super (parent, checkStyle (style)); } /** * Fills the interior of the rectangle specified by the arguments, * with the receiver's background. * * @param gc the gc where the rectangle is to be filled * @param x the x coordinate of the rectangle to be filled * @param y the y coordinate of the rectangle to be filled * @param width the width of the rectangle to be filled * @param height the height of the rectangle to be filled * * @exception IllegalArgumentException * @exception SWTException * * @since 3.2 */ public void drawBackground (GC gc, int x, int y, int width, int height) { drawBackground (gc, x, y, width, height, 0, 0); } /** * Returns the caret. *

* The caret for the control is automatically hidden * and shown when the control is painted or resized, * when focus is gained or lost and when an the control * is scrolled. To avoid drawing on top of the caret, * the programmer must hide and show the caret when * drawing in the window any other time. *

* * @return the caret for the receiver, may be null * * @exception SWTException */ public Caret getCaret () { checkWidget(); return caret; } Point getIMCaretPos () { if (caret == null) return super.getIMCaretPos (); return new Point (caret.x, caret.y); } /** * Returns the IME. * * @return the IME * * @exception SWTException * * @since 3.4 */ public IME getIME () { checkWidget (); return ime; } long /*int*/ gtk_button_press_event (long /*int*/ widget, long /*int*/ event) { if (ime != null) { long /*int*/ result = ime.gtk_button_press_event (widget, event); if (result != 0) return result; } return super.gtk_button_press_event (widget, event); } long /*int*/ gtk_commit (long /*int*/ imcontext, long /*int*/ text) { if (ime != null) { long /*int*/ result = ime.gtk_commit (imcontext, text); if (result != 0) return result; } return super.gtk_commit (imcontext, text); } long /*int*/ gtk_draw (long /*int*/ widget, long /*int*/ cairo) { if ((state & OBSCURED) != 0) return 0; boolean isFocus = caret != null && caret.isFocusCaret (); if (isFocus) caret.killFocus (); long /*int*/ result = super.gtk_draw (widget, cairo); if (isFocus) caret.setFocus (); return result; } long /*int*/ gtk_expose_event (long /*int*/ widget, long /*int*/ event) { if ((state & OBSCURED) != 0) return 0; boolean isFocus = caret != null && caret.isFocusCaret (); if (isFocus) caret.killFocus (); long /*int*/ result = super.gtk_expose_event (widget, event); if (isFocus) caret.setFocus (); return result; } long /*int*/ gtk_focus_in_event (long /*int*/ widget, long /*int*/ event) { long /*int*/ result = super.gtk_focus_in_event (widget, event); if (caret != null) caret.setFocus (); return result; } long /*int*/ gtk_focus_out_event (long /*int*/ widget, long /*int*/ event) { long /*int*/ result = super.gtk_focus_out_event (widget, event); if (caret != null) caret.killFocus (); return result; } long /*int*/ gtk_preedit_changed (long /*int*/ imcontext) { if (ime != null) { long /*int*/ result = ime.gtk_preedit_changed (imcontext); if (result != 0) return result; } return super.gtk_preedit_changed (imcontext); } void redrawWidget (int x, int y, int width, int height, boolean redrawAll, boolean all, boolean trim) { boolean isFocus = caret != null && caret.isFocusCaret (); if (isFocus) caret.killFocus (); super.redrawWidget (x, y, width, height, redrawAll, all, trim); if (isFocus) caret.setFocus (); } void releaseChildren (boolean destroy) { if (caret != null) { caret.release (false); caret = null; } if (ime != null) { ime.release (false); ime = null; } super.releaseChildren (destroy); } void reskinChildren (int flags) { if (caret != null) caret.reskin (flags); if (ime != null) ime.reskin (flags); super.reskinChildren (flags); } /** * Scrolls a rectangular area of the receiver by first copying * the source area to the destination and then causing the area * of the source which is not covered by the destination to * be repainted. Children that intersect the rectangle are * optionally moved during the operation. In addition, all outstanding * paint events are flushed before the source area is copied to * ensure that the contents of the canvas are drawn correctly. * * @param destX the x coordinate of the destination * @param destY the y coordinate of the destination * @param x the x coordinate of the source * @param y the y coordinate of the source * @param width the width of the area * @param height the height of the area * @param all trueif children should be scrolled, and false otherwise * * @exception SWTException */ public void scroll (int destX, int destY, int x, int y, int width, int height, boolean all) { checkWidget(); if (width <= 0 || height <= 0) return; if ((style & SWT.MIRRORED) != 0) { int clientWidth = getClientWidth (); x = clientWidth - width - x; destX = clientWidth - width - destX; } int deltaX = destX - x, deltaY = destY - y; if (deltaX == 0 && deltaY == 0) return; if (!isVisible ()) return; boolean isFocus = caret != null && caret.isFocusCaret (); if (isFocus) caret.killFocus (); long /*int*/ window = paintWindow (); long /*int*/ visibleRegion; if (OS.GTK3) { visibleRegion = OS.gdk_window_get_visible_region (window); } else { visibleRegion = OS.gdk_drawable_get_visible_region (window); } GdkRectangle srcRect = new GdkRectangle (); srcRect.x = x; srcRect.y = y; srcRect.width = width; srcRect.height = height; long /*int*/ copyRegion = OS.gdk_region_rectangle (srcRect); OS.gdk_region_intersect(copyRegion, visibleRegion); long /*int*/ invalidateRegion = OS.gdk_region_rectangle (srcRect); OS.gdk_region_subtract (invalidateRegion, visibleRegion); OS.gdk_region_offset (invalidateRegion, deltaX, deltaY); GdkRectangle copyRect = new GdkRectangle(); OS.gdk_region_get_clipbox (copyRegion, copyRect); if (copyRect.width != 0 && copyRect.height != 0) { update (); } Control control = findBackgroundControl (); if (control == null) control = this; if (control.backgroundImage != null) { redrawWidget (x, y, width, height, false, false, false); redrawWidget (destX, destY, width, height, false, false, false); } else { if (OS.GTK3) { long /*int*/ cairo = OS.gdk_cairo_create(window); if (Cairo.cairo_version() < Cairo.CAIRO_VERSION_ENCODE(1, 12, 0)) { OS.gdk_cairo_set_source_window(cairo, window, 0, 0); } else { Cairo.cairo_push_group(cairo); OS.gdk_cairo_set_source_window(cairo, window, 0, 0); Cairo.cairo_paint(cairo); Cairo.cairo_pop_group_to_source(cairo); } double[] matrix = {1, 0, 0, 1, -deltaX, -deltaY}; Cairo.cairo_pattern_set_matrix(Cairo.cairo_get_source(cairo), matrix); Cairo.cairo_rectangle(cairo, copyRect.x + deltaX, copyRect.y + deltaY, copyRect.width, copyRect.height); Cairo.cairo_clip(cairo); Cairo.cairo_paint(cairo); Cairo.cairo_destroy(cairo); } else { long /*int*/ gdkGC = OS.gdk_gc_new (window); OS.gdk_gc_set_exposures (gdkGC, true); OS.gdk_draw_drawable (window, gdkGC, window, copyRect.x, copyRect.y, copyRect.x + deltaX, copyRect.y + deltaY, copyRect.width, copyRect.height); OS.g_object_unref (gdkGC); } boolean disjoint = (destX + width < x) || (x + width < destX) || (destY + height < y) || (y + height < destY); if (disjoint) { GdkRectangle rect = new GdkRectangle (); rect.x = x; rect.y = y; rect.width = width; rect.height = height; OS.gdk_region_union_with_rect (invalidateRegion, rect); } else { GdkRectangle rect = new GdkRectangle (); if (deltaX != 0) { int newX = destX - deltaX; if (deltaX < 0) newX = destX + width; rect.x = newX; rect.y = y; rect.width = Math.abs(deltaX); rect.height = height; OS.gdk_region_union_with_rect (invalidateRegion, rect); } if (deltaY != 0) { int newY = destY - deltaY; if (deltaY < 0) newY = destY + height; rect.x = x; rect.y = newY; rect.width = width; rect.height = Math.abs(deltaY); OS.gdk_region_union_with_rect (invalidateRegion, rect); } } OS.gdk_window_invalidate_region(window, invalidateRegion, all); } OS.gdk_region_destroy (visibleRegion); OS.gdk_region_destroy (copyRegion); OS.gdk_region_destroy (invalidateRegion); if (all) { Control [] children = _getChildren (); for (int i=0; i= Math.max (x, rect.x) && Math.min(y + height, rect.y + rect.height) >= Math.max (y, rect.y)) { child.setLocation (rect.x + deltaX, rect.y + deltaY); } } } if (isFocus) caret.setFocus (); } int setBounds (int x, int y, int width, int height, boolean move, boolean resize) { boolean isFocus = caret != null && caret.isFocusCaret (); if (isFocus) caret.killFocus (); int result = super.setBounds (x, y, width, height, move, resize); if (isFocus) caret.setFocus (); return result; } /** * Sets the receiver's caret. *

* The caret for the control is automatically hidden * and shown when the control is painted or resized, * when focus is gained or lost and when an the control * is scrolled. To avoid drawing on top of the caret, * the programmer must hide and show the caret when * drawing in the window any other time. *

* @param caret the new caret for the receiver, may be null * * @exception IllegalArgumentException * @exception SWTException */ public void setCaret (Caret caret) { checkWidget(); Caret newCaret = caret; Caret oldCaret = this.caret; this.caret = newCaret; if (hasFocus ()) { if (oldCaret != null) oldCaret.killFocus (); if (newCaret != null) { if (newCaret.isDisposed()) error(SWT.ERROR_INVALID_ARGUMENT); newCaret.setFocus (); } } } public void setFont (Font font) { checkWidget(); if (caret != null) caret.setFont (font); super.setFont (font); } /** * Sets the receiver's IME. * * @param ime the new IME for the receiver, may be null * * @exception IllegalArgumentException * @exception SWTException * * @since 3.4 */ public void setIME (IME ime) { checkWidget (); if (ime != null && ime.isDisposed()) error(SWT.ERROR_INVALID_ARGUMENT); this.ime = ime; } void updateCaret () { long /*int*/ imHandle = imHandle (); if (imHandle == 0) return; GdkRectangle rect = new GdkRectangle (); rect.x = caret.x; rect.y = caret.y; rect.width = caret.width; rect.height = caret.height; OS.gtk_im_context_set_cursor_location (imHandle, rect); } }