public class Cursor extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
static int |
CROSSHAIR_CURSOR
十字准线游标类型。
|
static int |
CUSTOM_CURSOR
与所有自定义光标相关联的类型。
|
static int |
DEFAULT_CURSOR
默认游标类型(如果未定义游标,则设置)。
|
static int |
E_RESIZE_CURSOR
东调整游标类型。
|
static int |
HAND_CURSOR
手指光标类型。
|
static int |
MOVE_CURSOR
移动光标类型。
|
static int |
N_RESIZE_CURSOR
北移大小的游标类型。
|
protected String |
name
光标的用户可见名称。
|
static int |
NE_RESIZE_CURSOR
东北调整大小的光标类型。
|
static int |
NW_RESIZE_CURSOR
西北大小的游标类型。
|
protected static Cursor[] |
predefined
已弃用
从JDK 1.7版开始,应该使用
getPredefinedCursor(int) 方法。
|
static int |
S_RESIZE_CURSOR
调整大小的光标类型。
|
static int |
SE_RESIZE_CURSOR
东南大小的光标类型。
|
static int |
SW_RESIZE_CURSOR
西南大小的光标类型。
|
static int |
TEXT_CURSOR
文本光标类型。
|
static int |
W_RESIZE_CURSOR
西调整游标类型。
|
static int |
WAIT_CURSOR
等待光标类型。
|
Modifier | Constructor and Description |
---|---|
|
Cursor(int type)
创建一个指定类型的新的游标对象。
|
protected |
Cursor(String name)
使用指定的名称创建一个新的自定义游标对象。
|
Modifier and Type | Method and Description |
---|---|
static Cursor |
getDefaultCursor()
返回系统默认光标。
|
String |
getName()
返回此游标的名称。
|
static Cursor |
getPredefinedCursor(int type)
返回具有指定预定义类型的游标对象。
|
static Cursor |
getSystemCustomCursor(String name)
返回与指定名称匹配的特定于系统的自定义游标对象。
|
int |
getType()
返回此游标的类型。
|
String |
toString()
返回此游标的字符串表示形式。
|
public static final int DEFAULT_CURSOR
public static final int CROSSHAIR_CURSOR
public static final int TEXT_CURSOR
public static final int WAIT_CURSOR
public static final int SW_RESIZE_CURSOR
public static final int SE_RESIZE_CURSOR
public static final int NW_RESIZE_CURSOR
public static final int NE_RESIZE_CURSOR
public static final int N_RESIZE_CURSOR
public static final int S_RESIZE_CURSOR
public static final int W_RESIZE_CURSOR
public static final int E_RESIZE_CURSOR
public static final int HAND_CURSOR
public static final int MOVE_CURSOR
@Deprecated protected static Cursor[] predefined
getPredefinedCursor(int)
方法。
public static final int CUSTOM_CURSOR
@ConstructorProperties(value="type") public Cursor(int type)
type
- 光标的类型
IllegalArgumentException
- 如果指定的游标类型无效
protected Cursor(String name)
注意:此构造函数只能由AWT实现使用,作为对自定义游标的支持的一部分。 应用程序应该使用Toolkit.createCustomCursor()。
name
- 光标的用户可见名称。
Toolkit.createCustomCursor(java.awt.Image, java.awt.Point, java.lang.String)
public static Cursor getPredefinedCursor(int type)
type
- 预定义光标的类型
IllegalArgumentException
- 指定的游标类型是否无效
public static Cursor getSystemCustomCursor(String name) throws AWTException, HeadlessException
name
- 描述所需系统特定自定义光标的字符串
HeadlessException
- 如果
GraphicsEnvironment.isHeadless
返回true
AWTException
public static Cursor getDefaultCursor()
public int getType()
public String getName()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.