Searched refs:InsertListCommand (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/editing/
H A DInsertListCommand.h36 class InsertListCommand : public CompositeEditCommand { class in namespace:WebCore
40 static PassRefPtr<InsertListCommand> create(Document& document, Type listType)
42 return adoptRef(new InsertListCommand(document, listType));
50 InsertListCommand(Document&, Type);
H A DInsertListCommand.cpp27 #include "InsertListCommand.h"
50 PassRefPtr<HTMLElement> InsertListCommand::insertList(Document& document, Type type)
52 RefPtr<InsertListCommand> insertCommand = create(document, type);
57 HTMLElement* InsertListCommand::fixOrphanedListChild(Node* node)
67 PassRefPtr<HTMLElement> InsertListCommand::mergeWithNeighboringLists(PassRefPtr<HTMLElement> passedList)
88 bool InsertListCommand::selectionHasListOfType(const VisibleSelection& selection, const QualifiedName& listTag)
106 InsertListCommand::InsertListCommand(Document& document, Type type) function in class:WebCore::InsertListCommand
112 void InsertListCommand::doApply()
195 void InsertListCommand
[all...]
H A DIndentOutdentCommand.cpp34 #include "InsertListCommand.h"
130 // Use InsertListCommand to remove the selection from the list
132 applyCommandToComposite(InsertListCommand::create(document(), InsertListCommand::OrderedList));
136 applyCommandToComposite(InsertListCommand::create(document(), InsertListCommand::UnorderedList));
H A DEditingAllInOne.cpp51 #include <InsertListCommand.cpp>
H A DEditorCommand.cpp48 #include "InsertListCommand.h"
551 applyCommand(InsertListCommand::create(*frame.document(), InsertListCommand::OrderedList));
575 applyCommand(InsertListCommand::create(*frame.document(), InsertListCommand::UnorderedList));
H A DEditor.cpp61 #include "InsertListCommand.h"
837 RefPtr<Node> newList = InsertListCommand::insertList(document(), InsertListCommand::OrderedList);
847 RefPtr<Node> newList = InsertListCommand::insertList(document(), InsertListCommand::UnorderedList);

Completed in 214 milliseconds