Searched refs:IncreaseSelectionListLevelCommand (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DModifySelectionListLevel.h34 // It is the base class of IncreaseSelectionListLevelCommand and DecreaseSelectionListLevelCommand.
48 // IncreaseSelectionListLevelCommand moves the selected list items one level deeper.
49 class IncreaseSelectionListLevelCommand : public ModifySelectionListLevelCommand { class in namespace:WebCore
60 static PassRefPtr<IncreaseSelectionListLevelCommand> create(Document* document, Type type)
62 return adoptRef(new IncreaseSelectionListLevelCommand(document, type));
65 IncreaseSelectionListLevelCommand(Document*, Type);
H A DModifySelectionListLevel.cpp137 IncreaseSelectionListLevelCommand::IncreaseSelectionListLevelCommand(Document* document, Type listType) function in class:WebCore::IncreaseSelectionListLevelCommand
171 void IncreaseSelectionListLevelCommand::doApply()
205 bool IncreaseSelectionListLevelCommand::canIncreaseSelectionListLevel(Document* document)
212 PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevel(Document* document, Type type)
216 RefPtr<IncreaseSelectionListLevelCommand> command = create(document, type);
221 PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevel(Document* document)
226 PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevelOrdered(Document* document)
231 PassRefPtr<Node> IncreaseSelectionListLevelCommand::increaseSelectionListLevelUnordered(Document* document)
H A DEditor.cpp641 return canEditRichly() && IncreaseSelectionListLevelCommand::canIncreaseSelectionListLevel(m_frame->document());
654 RefPtr<Node> newList = IncreaseSelectionListLevelCommand::increaseSelectionListLevel(m_frame->document());
664 RefPtr<Node> newList = IncreaseSelectionListLevelCommand::increaseSelectionListLevelOrdered(m_frame->document());
674 RefPtr<Node> newList = IncreaseSelectionListLevelCommand::increaseSelectionListLevelUnordered(m_frame->document());

Completed in 162 milliseconds