| 1087 | } |
| 1088 | |
| 1089 | void |
| 1090 | ViewObjectUI::mouse_event_trans (const db::DCplxTrans &trans) |
| 1091 | { |
| 1092 | if (trans != m_trans) { |
| 1093 | m_trans = trans; |
| 1094 | // issue a move event in order to reposition the mouse in the new coordinate system |
| 1095 | // since this may be called from within a mouse move event handler we need the recursion sentinel |
| 1096 | if (! m_in_mouse_move) { |
| 1097 | do_mouse_move (); |
| 1098 | } |
| 1099 | } |
| 1100 | } |
| 1101 | |
| 1102 | void |
| 1103 | ViewObjectUI::drag_cancel () |
no test coverage detected