All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
scrollview.h File Reference
#include <stdio.h>

Go to the source code of this file.

Classes

struct  SVEvent
 
class  SVEventHandler
 
class  ScrollView
 

Enumerations

enum  SVEventType {
  SVET_DESTROY, SVET_EXIT, SVET_CLICK, SVET_SELECTION,
  SVET_INPUT, SVET_MOUSE, SVET_MOTION, SVET_HOVER,
  SVET_POPUP, SVET_MENU, SVET_ANY, SVET_COUNT
}
 

Enumeration Type Documentation

Enumerator
SVET_DESTROY 
SVET_EXIT 
SVET_CLICK 
SVET_SELECTION 
SVET_INPUT 
SVET_MOUSE 
SVET_MOTION 
SVET_HOVER 
SVET_POPUP 
SVET_MENU 
SVET_ANY 
SVET_COUNT 

Definition at line 45 of file scrollview.h.

45  {
46  SVET_DESTROY, // Window has been destroyed by user.
47  SVET_EXIT, // User has destroyed the last window by clicking on the 'X'.
48  SVET_CLICK, // Left button pressed.
49  SVET_SELECTION, // Left button selection.
50  SVET_INPUT, // There is some input (single key or a whole string).
51  SVET_MOUSE, // The mouse has moved with a button pressed.
52  SVET_MOTION, // The mouse has moved with no button pressed.
53  SVET_HOVER, // The mouse has stayed still for a second.
54  SVET_POPUP, // A command selected through a popup menu.
55  SVET_MENU, // A command selected through the menubar.
56  SVET_ANY, // Any of the above.
57 
58  SVET_COUNT // Array sizing.
59 };