This commit is contained in:
kipp%netscape.com 1999-04-27 22:11:05 +00:00
Родитель 791289f106
Коммит 9b854acf63
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -41,6 +41,7 @@ class nsFirstLineFrame;
#define NS_BLOCK_FRAME_HAS_OUTSIDE_BULLET 0x80000000
#define NS_BLOCK_IS_HTML_PARAGRAPH 0x40000000
#define NS_BLOCK_HAS_FIRST_LINE_STYLE 0x20000000
#define NS_BLOCK_HAS_FIRST_LETTER_STYLE 0x10000000
#define nsBlockFrameSuper nsHTMLContainerFrame
@ -142,6 +143,8 @@ protected:
nsBlockFrame();
virtual ~nsBlockFrame();
nsIStyleContext* GetFirstLetterStyle(nsIPresContext* aPresContext);
nsIStyleContext* GetFirstLineStyle(nsIPresContext* aPresContext);
void SetFlags(PRUint32 aFlags) {
@ -191,6 +194,8 @@ protected:
nsFirstLineFrame* aLineFrame,
nsIFrame* aDeletedFrame);
nsresult WrapFrameInFirstLetterFrame(nsIPresContext* aPresContext);
nsresult WrapFramesInFirstLineFrame(nsIPresContext* aPresContext);
nsresult PrepareInitialReflow(nsBlockReflowState& aState);

Просмотреть файл

@ -41,6 +41,7 @@ class nsFirstLineFrame;
#define NS_BLOCK_FRAME_HAS_OUTSIDE_BULLET 0x80000000
#define NS_BLOCK_IS_HTML_PARAGRAPH 0x40000000
#define NS_BLOCK_HAS_FIRST_LINE_STYLE 0x20000000
#define NS_BLOCK_HAS_FIRST_LETTER_STYLE 0x10000000
#define nsBlockFrameSuper nsHTMLContainerFrame
@ -142,6 +143,8 @@ protected:
nsBlockFrame();
virtual ~nsBlockFrame();
nsIStyleContext* GetFirstLetterStyle(nsIPresContext* aPresContext);
nsIStyleContext* GetFirstLineStyle(nsIPresContext* aPresContext);
void SetFlags(PRUint32 aFlags) {
@ -191,6 +194,8 @@ protected:
nsFirstLineFrame* aLineFrame,
nsIFrame* aDeletedFrame);
nsresult WrapFrameInFirstLetterFrame(nsIPresContext* aPresContext);
nsresult WrapFramesInFirstLineFrame(nsIPresContext* aPresContext);
nsresult PrepareInitialReflow(nsBlockReflowState& aState);