Tesseract
3.02
|
Classes | |
class | SVEvent |
class | SVEventHandler |
Enumerations | |
enum | SVEventType { SVET_DESTROY, SVET_EXIT, SVET_CLICK, SVET_SELECTION, SVET_INPUT, SVET_MOUSE, SVET_MOTION, SVET_HOVER, SVET_POPUP, SVET_MENU } |
These are the defined events which can happen in ScrollView and be transferred to the client. They are same events as on the client side part of ScrollView (defined in ScrollView.h).
SVET_DESTROY | |
SVET_EXIT | |
SVET_CLICK | |
SVET_SELECTION | |
SVET_INPUT | |
SVET_MOUSE | |
SVET_MOTION | |
SVET_HOVER | |
SVET_POPUP | |
SVET_MENU |
Definition at line 20 of file SVEventType.java.
{ SVET_DESTROY, // Window has been destroyed by user. SVET_EXIT, // User has destroyed the last window by clicking on the 'X' SVET_CLICK, // Any button pressed thats not a popup trigger. SVET_SELECTION, // Left button selection. SVET_INPUT, // Any kind of input SVET_MOUSE, // The mouse has moved with a button pressed. SVET_MOTION, // The mouse has moved with no button pressed. SVET_HOVER, // The mouse has stayed still for a second. SVET_POPUP, // A command selected through a popup menu SVET_MENU; // A command selected through the menubar }