|
| enum | Event {
MOUSE_MOVE
, MOUSE_PRESS
, KEY_PRESS
, DRAW_UNDER_IMAGES
,
DRAW_OVER_IMAGES
, IMAGES_UNDER_MOUSE_CHANGE
, REALLY_DRAW_OVER_IMAGES
, MOUSE_WHEEL
,
MARK_DIRTY
} |
| |
| void | RemoveTool (Tool *tool, Tool **single) |
| |
| void | RemoveTool (Tool *tool, std::set< Tool * > *set) |
| |
| void | RemoveTool (Tool *tool, std::vector< std::set< Tool * > > *vector) |
| |
| void | RemoveTool (Tool *tool, std::vector< std::set< Tool * > > *vector, unsigned int index) |
| |
| void | AddTool (Tool *tool, Tool **single) |
| |
| void | AddTool (Tool *tool, std::set< Tool * > *set) |
| |
| void | AddTool (Tool *tool, std::vector< std::set< Tool * > > *vector, unsigned int index) |
| |
| void | UpdateImagesUnderMouse () |
| |
| void | InvalidateImagesUnderMouse () |
| |
| std::set< Tool * > | tools_deactivated |
| |
| HuginBase::Panorama * | pano |
| |
| VisualizationState * | visualization_state |
| |
| GLPreviewFrame * | frame |
| |
| double | mouse_screen_x |
| |
| double | mouse_screen_y |
| |
| double | mouse_pano_x |
| |
| double | mouse_pano_y |
| |
| std::set< Tool * > | mouse_move_notified_tools |
| |
| std::set< Tool * > | mouse_button_notified_tools |
| |
| std::set< Tool * > | keypress_notified_tools |
| |
| std::set< Tool * > | draw_under_notified_tools |
| |
| std::set< Tool * > | draw_over_notified_tools |
| |
| std::set< Tool * > | really_draw_over_notified_tools |
| |
| std::set< Tool * > | images_under_mouse_notified_tools |
| |
| std::set< Tool * > | mouse_wheel_notified_tools |
| |
| std::set< Tool * > | m_tools_need_dirty_flag |
| |
| std::vector< std::set< Tool * > > | image_draw_begin_tools |
| |
| std::vector< std::set< Tool * > > | image_draw_end_tools |
| |
| bool | images_under_mouse_current |
| |
| bool | mouse_over_pano |
| |
| std::set< unsigned int > | images_under_mouse |
| |
Definition at line 195 of file ToolHelper.h.