~ubuntu-branches/ubuntu/karmic/webkit/karmic-proposed

« back to all changes in this revision

Viewing changes to WebCore/rendering/RenderText.h

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-05-15 18:30:58 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090515183058-50q5exjo9b1kxy9s
Tags: 1.1.7-1
* New upstream release
* debian/libwebkit-1.0-2.symbols:
- updated with the new symbols in 1.1.7
* debian/libwebkit-dev.install, debian/libwebkit-dev.links,
  debian/rules:
- Build, and ship gtk-doc documentation (Closes: #526683)
* debian/copyright:
- updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
    InlineTextBox* createInlineTextBox();
56
56
    void dirtyLineBoxes(bool fullLayout);
57
57
 
58
 
    virtual void absoluteRects(Vector<IntRect>&, int tx, int ty, bool topLevel = true);
 
58
    virtual void absoluteRects(Vector<IntRect>&, int tx, int ty);
59
59
    virtual void absoluteRectsForRange(Vector<IntRect>&, unsigned startOffset = 0, unsigned endOffset = UINT_MAX, bool useSelectionHeight = false);
60
60
 
61
 
    virtual void absoluteQuads(Vector<FloatQuad>&, bool topLevel = true);
 
61
    virtual void absoluteQuads(Vector<FloatQuad>&);
62
62
    virtual void absoluteQuadsForRange(Vector<FloatQuad>&, unsigned startOffset = 0, unsigned endOffset = UINT_MAX, bool useSelectionHeight = false);
63
63
 
64
64
    virtual VisiblePosition positionForPoint(const IntPoint&);
148
148
    int widthFromCache(const Font&, int start, int len, int xPos, HashSet<const SimpleFontData*>* fallbackFonts) const;
149
149
    bool isAllASCII() const { return m_isAllASCII; }
150
150
 
 
151
    int m_minWidth; // here to minimize padding in 64-bit.
 
152
 
151
153
    RefPtr<StringImpl> m_text;
152
154
 
153
155
    InlineTextBox* m_firstTextBox;
154
156
    InlineTextBox* m_lastTextBox;
155
157
 
156
 
    int m_minWidth;
157
158
    int m_maxWidth;
158
159
    int m_beginMinWidth;
159
160
    int m_endMinWidth;