コード例 #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();
}