Tesseract
3.02
|
Public Member Functions | |
SVEvent (SVEventType t, SVWindow w, int x1, int y1, int x2, int y2, String p) | |
SVEvent (SVEventType eventtype, SVWindow svWindow, int commandid, String value) | |
String | toString () |
Package Attributes | |
SVEventType | type |
SVWindow | window |
int | x |
int | y |
int | xSize |
int | ySize |
int | commandId |
String | parameter |
The SVEvent is a structure which holds the actual values of a message to be transmitted. It corresponds to the client structure defined in scrollview.h
Definition at line 21 of file SVEvent.java.
com.google.scrollview.events.SVEvent.SVEvent | ( | SVEventType | t, |
SVWindow | w, | ||
int | x1, | ||
int | y1, | ||
int | x2, | ||
int | y2, | ||
String | p | ||
) | [inline] |
A "normal" SVEvent.
t | The type of the event as specified in SVEventType (e.g. SVET_CLICK) |
w | The window the event corresponds to |
x1 | X position of the mouse at the time of the event |
y1 | Y position of the mouse at the time of the event |
x2 | X selection size at the time of the event |
y2 | Y selection size at the time of the event |
p | A parameter associated with the event (e.g. keyboard input) |
Definition at line 43 of file SVEvent.java.
com.google.scrollview.events.SVEvent.SVEvent | ( | SVEventType | eventtype, |
SVWindow | svWindow, | ||
int | commandid, | ||
String | value | ||
) | [inline] |
An event which issues a command (like clicking on a item in the menubar).
eventtype | The type of the event as specified in SVEventType (usually SVET_MENU or SVET_POPUP) |
svWindow | The window the event corresponds to |
commandid | The associated id with the command (given by the client on construction of the item) |
value | A parameter associated with the event (e.g. keyboard input) |
Definition at line 65 of file SVEvent.java.
String com.google.scrollview.events.SVEvent.toString | ( | ) | [inline] |
int com.google.scrollview.events.SVEvent.commandId [package] |
Definition at line 28 of file SVEvent.java.
String com.google.scrollview.events.SVEvent.parameter [package] |
Definition at line 29 of file SVEvent.java.
Definition at line 22 of file SVEvent.java.
Definition at line 23 of file SVEvent.java.
int com.google.scrollview.events.SVEvent.x [package] |
Definition at line 24 of file SVEvent.java.
int com.google.scrollview.events.SVEvent.xSize [package] |
Definition at line 26 of file SVEvent.java.
int com.google.scrollview.events.SVEvent.y [package] |
Definition at line 25 of file SVEvent.java.
int com.google.scrollview.events.SVEvent.ySize [package] |
Definition at line 27 of file SVEvent.java.