00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef INSTIGATE_TOOLKIT_EVENT_NAMES
00011 #define INSTIGATE_TOOLKIT_EVENT_NAMES
00012
00024
00025
00026
00027
00028
00029 #include <string>
00030
00031 namespace instigate {
00032 namespace toolkit {
00033 static const std::string close_window = "close_window";
00034 static const std::string mouse_left_button_press =
00035 "mouse_left_button_press";
00036 static const std::string mouse_right_button_press =
00037 "mouse_right_button_press";
00038 static const std::string mouse_middle_button_press =
00039 "mouse_middle_button_press";
00040 static const std::string mouse_left_button_release =
00041 "mouse_left_button_release";
00042 static const std::string mouse_right_button_release =
00043 "mouse_right_button_release";
00044 static const std::string mouse_middle_button_release =
00045 "mouse_middle_button_release";
00046 static const std::string mouse_left_double_click =
00047 "mouse_left_double_click";
00048 static const std::string mouse_right_double_click =
00049 "mouse_right_double_click";
00050 static const std::string mouse_middle_double_click =
00051 "mouse_middle_double_click";
00052 static const std::string mouse_move = "mouse_move";
00053 static const std::string clicked = "clicked";
00054 static const std::string toggled = "toggled";
00055 static const std::string changed = "changed";
00056 static const std::string activated = "activated";
00057 static const std::string selected = "selected";
00058 static const std::string deselected = "deselected";
00059 static const std::string key_pressed = "key_pressed";
00060 static const std::string key_released = "key_released";
00061 static const std::string cursor_changed =
00062 "cursor_changed";
00063 static const std::string row_expanded = "row_expanded";
00064 static const std::string row_collapsed =
00065 "row_collapsed";
00066 static const std::string row_activated =
00067 "row_activated";
00068 static const std::string page_switched =
00069 "page_switched";
00070 static const std::string selection_changed =
00071 "selection_changed";
00072 static const std::string item_selected =
00073 "item_selected";
00074 static const std::string item_deselected =
00075 "item_deselected";
00076
00077 static const double delta = 0.1;
00078 }
00079 }
00080
00081 #endif // INSTIGATE_TOOLKIT_EVENT_NAMES