| 1 |
/******************************************************************************* |
|---|
| 2 |
* Copyright (c) 2000, 2008 IBM Corporation and others. |
|---|
| 3 |
* All rights reserved. This program and the accompanying materials |
|---|
| 4 |
* are made available under the terms of the Eclipse Public License v1.0 |
|---|
| 5 |
* which accompanies this distribution, and is available at |
|---|
| 6 |
* http://www.eclipse.org/legal/epl-v10.html |
|---|
| 7 |
* |
|---|
| 8 |
* Contributors: |
|---|
| 9 |
* IBM Corporation - initial API and implementation |
|---|
| 10 |
* Port to the D programming language: |
|---|
| 11 |
* Frank Benoit <benoit@tionex.de> |
|---|
| 12 |
*******************************************************************************/ |
|---|
| 13 |
module dwt.custom.PaintObjectEvent; |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
import dwt.events.TypedEvent; |
|---|
| 17 |
import dwt.graphics.GC; |
|---|
| 18 |
import dwt.custom.StyleRange; |
|---|
| 19 |
import dwt.custom.Bullet; |
|---|
| 20 |
import dwt.custom.StyledTextEvent; |
|---|
| 21 |
|
|---|
| 22 |
/** |
|---|
| 23 |
* This event is sent when an object needs to be drawn. |
|---|
| 24 |
* |
|---|
| 25 |
* @see <a href="http://www.eclipse.org/swt/">Sample code and further information</a> |
|---|
| 26 |
* |
|---|
| 27 |
* @since 3.2 |
|---|
| 28 |
*/ |
|---|
| 29 |
public class PaintObjectEvent : TypedEvent { |
|---|
| 30 |
|
|---|
| 31 |
/** |
|---|
| 32 |
* the GC |
|---|
| 33 |
*/ |
|---|
| 34 |
public GC gc; |
|---|
| 35 |
|
|---|
| 36 |
/** |
|---|
| 37 |
* the x location |
|---|
| 38 |
*/ |
|---|
| 39 |
public int x; |
|---|
| 40 |
|
|---|
| 41 |
/** |
|---|
| 42 |
* the y location |
|---|
| 43 |
*/ |
|---|
| 44 |
public int y; |
|---|
| 45 |
|
|---|
| 46 |
/** |
|---|
| 47 |
* the line ascent |
|---|
| 48 |
*/ |
|---|
| 49 |
public int ascent; |
|---|
| 50 |
|
|---|
| 51 |
/** |
|---|
| 52 |
* the line descent |
|---|
| 53 |
*/ |
|---|
| 54 |
public int descent; |
|---|
| 55 |
|
|---|
| 56 |
/** |
|---|
| 57 |
* the StyleRange |
|---|
| 58 |
*/ |
|---|
| 59 |
public StyleRange style; |
|---|
| 60 |
|
|---|
| 61 |
/** |
|---|
| 62 |
* the Bullet |
|---|
| 63 |
*/ |
|---|
| 64 |
public Bullet bullet; |
|---|
| 65 |
|
|---|
| 66 |
/** |
|---|
| 67 |
* the bullet index |
|---|
| 68 |
*/ |
|---|
| 69 |
public int bulletIndex; |
|---|
| 70 |
|
|---|
| 71 |
static final long serialVersionUID = 3906081274027192855L; |
|---|
| 72 |
|
|---|
| 73 |
/** |
|---|
| 74 |
* Constructs a new instance of this class based on the |
|---|
| 75 |
* information in the given event. |
|---|
| 76 |
* |
|---|
| 77 |
* @param e the event containing the information |
|---|
| 78 |
*/ |
|---|
| 79 |
public this(StyledTextEvent e) { |
|---|
| 80 |
super(cast(Object)e); |
|---|
| 81 |
gc = e.gc; |
|---|
| 82 |
x = e.x; |
|---|
| 83 |
y = e.y; |
|---|
| 84 |
ascent = e.ascent; |
|---|
| 85 |
descent = e.descent; |
|---|
| 86 |
style = e.style; |
|---|
| 87 |
bullet = e.bullet; |
|---|
| 88 |
bulletIndex = e.bulletIndex; |
|---|
| 89 |
} |
|---|
| 90 |
} |
|---|