Home | History | Annotate | Download | only in panels

Lines Matching full:drag

10 // When Drag is cancelled by hitting ESC key, we may still receive
14 PANEL_DRAG_CAN_START, // Mouse key went down, drag may be started.
16 PANEL_DRAG_SUPPRESSED // Ignore drag events until PANEL_DRAG_CAN_START.
23 // (which can be skipped if the drag didn't start) and then by cleanupAfterDrag.
26 // Called wehen drag threshold was exceeded and actual drag should start.
27 // Note that the drag is processed using a local nested message loop.
42 // This class encapsulates the mouse drag start/progress/termination logic,
43 // including having a threashold before actually starting a drag and termination
44 // of the drag on ESC, mouseUp and other operations. It also hosts the nested
45 // message loop that is used during the drag operation.
53 // drag operations.
75 // That's it. When user starts a drag, the client's callbacks will be invoked.