~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/editing/IndentOutdentCommand.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
    virtual void doApply();
47
47
    virtual EditAction editingAction() const { return m_typeOfAction == Indent ? EditActionIndent : EditActionOutdent; }
48
48
 
 
49
    void appendParagraphIntoNode(const VisiblePosition& start, const VisiblePosition& end, Node* newParent);
 
50
    void removeUnnecessaryLineBreakAt(const Position& endOfParagraph);
 
51
 
49
52
    void indentRegion();
50
53
    void outdentRegion();
51
54
    void outdentParagraph();
52
 
    PassRefPtr<Element> prepareBlockquoteLevelForInsertion(VisiblePosition&, RefPtr<Element>&);
 
55
    bool tryIndentingAsListItem(const VisiblePosition&);
 
56
    void indentIntoBlockquote(const VisiblePosition&, const VisiblePosition&, RefPtr<Element>& targetBlockquote, Node* nodeToSplitTo);
53
57
 
54
58
    EIndentType m_typeOfAction;
55
59
    int m_marginInPixels;