OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ApplyStyleCommand
(Results
1 - 8
of
8
) sorted by null
/external/webkit/Source/WebCore/editing/
ApplyStyleCommand.h
44
class
ApplyStyleCommand
: public CompositeEditCommand {
51
static PassRefPtr<
ApplyStyleCommand
> create(Document* document, const EditingStyle* style, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault)
53
return adoptRef(new
ApplyStyleCommand
(document, style, action, level));
55
static PassRefPtr<
ApplyStyleCommand
> create(Document* document, const EditingStyle* style, const Position& start, const Position& end, EditAction action = EditActionChangeAttributes, EPropertyLevel level = PropertyDefault)
57
return adoptRef(new
ApplyStyleCommand
(document, style, start, end, action, level));
59
static PassRefPtr<
ApplyStyleCommand
> create(PassRefPtr<Element> element, bool removeOnly = false, EditAction action = EditActionChangeAttributes)
61
return adoptRef(new
ApplyStyleCommand
(element, removeOnly, action));
63
static PassRefPtr<
ApplyStyleCommand
> create(Document* document, const EditingStyle* style, IsInlineElementToRemoveFunction isInlineElementToRemoveFunction, EditAction action = EditActionChangeAttributes)
65
return adoptRef(new
ApplyStyleCommand
(document, style, isInlineElementToRemoveFunction, action));
69
ApplyStyleCommand
(Document*, const EditingStyle*, EditAction, EPropertyLevel)
[
all
...]
ApplyStyleCommand.cpp
27
#include "
ApplyStyleCommand
.h"
121
ApplyStyleCommand
::
ApplyStyleCommand
(Document* document, const EditingStyle* style, EditAction editingAction, EPropertyLevel propertyLevel)
135
ApplyStyleCommand
::
ApplyStyleCommand
(Document* document, const EditingStyle* style, const Position& start, const Position& end, EditAction editingAction, EPropertyLevel propertyLevel)
149
ApplyStyleCommand
::
ApplyStyleCommand
(PassRefPtr<Element> element, bool removeOnly, EditAction editingAction)
163
ApplyStyleCommand
::
ApplyStyleCommand
(Document* document, const EditingStyle* style, IsInlineElementToRemoveFunction isInlineElementToRemoveFunction, EditAction editingAction)
177
void
ApplyStyleCommand
::updateStartEnd(const Position& newStart, const Position& newEnd
[
all
...]
EditingAllInOne.cpp
30
#include <
ApplyStyleCommand
.cpp>
RemoveFormatCommand.cpp
30
#include "
ApplyStyleCommand
.h"
90
applyCommandToComposite(
ApplyStyleCommand
::create(document(), defaultStyle.get(), isElementForRemoveFormatCommand, editingAction()));
CompositeEditCommand.cpp
30
#include "
ApplyStyleCommand
.h"
108
applyCommandToComposite(
ApplyStyleCommand
::create(document(), style, editingAction));
113
applyCommandToComposite(
ApplyStyleCommand
::create(document(), style, start, end, editingAction));
118
applyCommandToComposite(
ApplyStyleCommand
::create(element, false));
123
applyCommandToComposite(
ApplyStyleCommand
::create(element, true));
[
all
...]
Editor.cpp
31
#include "
ApplyStyleCommand
.h"
836
applyCommand(
ApplyStyleCommand
::create(m_frame->document(), EditingStyle::create(style).get(), editingAction));
855
applyCommand(
ApplyStyleCommand
::create(m_frame->document(), EditingStyle::create(style).get(), editingAction,
ApplyStyleCommand
::ForceBlockProperties));
[
all
...]
/external/webkit/Source/WebCore/
Android.mk
223
editing/
ApplyStyleCommand
.cpp \
[
all
...]
/external/webkit/Source/WebCore/rendering/style/
RenderStyle.h
110
friend class
ApplyStyleCommand
; // Editing has to only reveal unvisited info.
[
all
...]
Completed in 1571 milliseconds