예제 #1
0
bool DragController::dragIsMove(SelectionController* selection)
{
    return m_documentUnderMouse == m_dragInitiator && selection->isContentEditable() && !isCopyKeyDown();
}
예제 #2
0
bool DragController::dragIsMove(FrameSelection* selection, DragData* dragData)
{
    return m_documentUnderMouse == m_dragInitiator && selection->isContentEditable() && selection->isRange() && !isCopyKeyDown(dragData);
}
예제 #3
0
bool DragController::dragIsMove(SelectionController* selection, DragData* dragData) 
{
    return m_document == m_dragInitiator
        && selection->isContentEditable()
        && !isCopyKeyDown();
}