diff options
Diffstat (limited to 'WebCore/rendering/RenderView.h')
-rw-r--r-- | WebCore/rendering/RenderView.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/WebCore/rendering/RenderView.h b/WebCore/rendering/RenderView.h index a486b34..37b3f01 100644 --- a/WebCore/rendering/RenderView.h +++ b/WebCore/rendering/RenderView.h @@ -1,6 +1,4 @@ /* - * This file is part of the HTML widget for KDE. - * * Copyright (C) 1999 Lars Knoll (knoll@kde.org) * Copyright (C) 2006 Apple Computer, Inc. * @@ -77,9 +75,11 @@ public: bool printing() const; void setPrintImages(bool enable) { m_printImages = enable; } bool printImages() const { return m_printImages; } - void setTruncatedAt(int y) { m_truncatedAt = y; m_bestTruncatedAt = m_truncatorWidth = 0; m_forcedPageBreak = false; } + void setTruncatedAt(int y) { m_truncatedAt = y; m_bestTruncatedAt = m_truncatorWidth = 0; m_minimumColumnHeight = 0; m_forcedPageBreak = false; } void setBestTruncatedAt(int y, RenderBoxModelObject* forRenderer, bool forcedBreak = false); + void setMinimumColumnHeight(int height) { m_minimumColumnHeight = height; } int bestTruncatedAt() const { return m_bestTruncatedAt; } + int minimumColumnHeight() const { return m_minimumColumnHeight; } int truncatedAt() const { return m_truncatedAt; } @@ -196,10 +196,9 @@ protected: RenderWidgetSet m_widgets; private: - IntRect m_cachedSelectionBounds; - int m_bestTruncatedAt; int m_truncatorWidth; + int m_minimumColumnHeight; bool m_forcedPageBreak; LayoutState* m_layoutState; unsigned m_layoutStateDisableCount; |