1998-04-13 20:24:54 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
|
|
|
#ifndef nsFrame_h___
|
|
|
|
#define nsFrame_h___
|
|
|
|
|
|
|
|
#include "nsIFrame.h"
|
1998-10-01 04:46:11 +00:00
|
|
|
#include "nsIHTMLReflow.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsRect.h"
|
1998-05-08 18:33:42 +00:00
|
|
|
#include "nsSelectionRange.h"
|
|
|
|
#include "nsSelectionPoint.h"
|
1998-11-19 17:22:29 +00:00
|
|
|
#include "nsString.h"
|
1998-05-20 16:24:36 +00:00
|
|
|
#include "prlog.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-05-20 16:24:36 +00:00
|
|
|
/**
|
|
|
|
* nsFrame logging constants. We redefine the nspr
|
|
|
|
* PRLogModuleInfo.level field to be a bitfield. Each bit controls a
|
|
|
|
* specific type of logging. Each logging operation has associated
|
|
|
|
* inline methods defined below.
|
|
|
|
*/
|
|
|
|
#define NS_FRAME_TRACE_CALLS 0x1
|
|
|
|
#define NS_FRAME_TRACE_PUSH_PULL 0x2
|
|
|
|
#define NS_FRAME_TRACE_CHILD_REFLOW 0x4
|
1998-06-25 16:33:10 +00:00
|
|
|
#define NS_FRAME_TRACE_NEW_FRAMES 0x8
|
1998-05-20 16:24:36 +00:00
|
|
|
|
|
|
|
#define NS_FRAME_LOG_TEST(_lm,_bit) (PRIntn((_lm)->level) & (_bit))
|
|
|
|
|
|
|
|
#ifdef NS_DEBUG
|
|
|
|
#define NS_FRAME_LOG(_bit,_args) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
if (NS_FRAME_LOG_TEST(nsIFrame::GetLogModuleInfo(),_bit)) { \
|
|
|
|
PR_LogPrint _args; \
|
|
|
|
} \
|
|
|
|
PR_END_MACRO
|
|
|
|
#else
|
|
|
|
#define NS_FRAME_LOG(_bit,_args)
|
|
|
|
#endif
|
|
|
|
|
1998-06-25 16:33:10 +00:00
|
|
|
// XXX Need to rework this so that logging is free when it's off
|
1998-05-20 16:24:36 +00:00
|
|
|
#ifdef NS_DEBUG
|
|
|
|
#define NS_FRAME_TRACE_IN(_method) Trace(_method, PR_TRUE)
|
1998-06-25 16:33:10 +00:00
|
|
|
|
1998-05-20 16:24:36 +00:00
|
|
|
#define NS_FRAME_TRACE_OUT(_method) Trace(_method, PR_FALSE)
|
1998-06-25 16:33:10 +00:00
|
|
|
|
|
|
|
// XXX remove me
|
|
|
|
#define NS_FRAME_TRACE_MSG(_bit,_args) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
if (NS_FRAME_LOG_TEST(nsIFrame::GetLogModuleInfo(),_bit)) { \
|
|
|
|
TraceMsg _args; \
|
|
|
|
} \
|
|
|
|
PR_END_MACRO
|
|
|
|
|
|
|
|
#define NS_FRAME_TRACE(_bit,_args) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
if (NS_FRAME_LOG_TEST(nsIFrame::GetLogModuleInfo(),_bit)) { \
|
|
|
|
TraceMsg _args; \
|
|
|
|
} \
|
|
|
|
PR_END_MACRO
|
|
|
|
|
1998-05-20 16:24:36 +00:00
|
|
|
#define NS_FRAME_TRACE_REFLOW_IN(_method) Trace(_method, PR_TRUE)
|
1998-06-25 16:33:10 +00:00
|
|
|
|
1998-05-20 16:24:36 +00:00
|
|
|
#define NS_FRAME_TRACE_REFLOW_OUT(_method, _status) \
|
|
|
|
Trace(_method, PR_FALSE, _status)
|
1998-06-25 16:33:10 +00:00
|
|
|
|
1998-05-20 16:24:36 +00:00
|
|
|
#else
|
1998-07-07 22:07:35 +00:00
|
|
|
#define NS_FRAME_TRACE(_bits,_args)
|
1998-05-20 16:24:36 +00:00
|
|
|
#define NS_FRAME_TRACE_IN(_method)
|
|
|
|
#define NS_FRAME_TRACE_OUT(_method)
|
1998-06-25 16:33:10 +00:00
|
|
|
#define NS_FRAME_TRACE_MSG(_bits,_args)
|
1998-05-20 16:24:36 +00:00
|
|
|
#define NS_FRAME_TRACE_REFLOW_IN(_method)
|
|
|
|
#define NS_FRAME_TRACE_REFLOW_OUT(_method, _status)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-10-16 20:09:32 +00:00
|
|
|
/**
|
|
|
|
* Implementation of a simple frame that's not splittable and has no
|
|
|
|
* child frames.
|
|
|
|
*
|
|
|
|
* Sets the NS_FRAME_SYNCHRONIZE_FRAME_AND_VIEW bit, so the default
|
|
|
|
* behavior is to keep the frame and view position and size in sync.
|
|
|
|
*/
|
1998-10-01 04:46:11 +00:00
|
|
|
class nsFrame : public nsIFrame, public nsIHTMLReflow
|
1998-04-13 20:24:54 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Create a new "empty" frame that maps a given piece of content into a
|
|
|
|
* 0,0 area.
|
|
|
|
*/
|
1998-12-03 06:31:43 +00:00
|
|
|
friend nsresult NS_NewEmptyFrame(nsIFrame** aInstancePtrResult);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
// Overloaded new operator. Initializes the memory to 0
|
|
|
|
void* operator new(size_t size);
|
|
|
|
|
1998-06-05 21:06:24 +00:00
|
|
|
// nsISupports
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-06-02 05:28:11 +00:00
|
|
|
// nsIFrame
|
1998-12-03 06:31:43 +00:00
|
|
|
NS_IMETHOD Init(nsIPresContext& aPresContext,
|
|
|
|
nsIContent* aContent,
|
1999-01-14 05:16:23 +00:00
|
|
|
nsIFrame* aParent,
|
1999-02-25 03:27:57 +00:00
|
|
|
nsIStyleContext* aContext,
|
|
|
|
nsIFrame* asPrevInFlow);
|
1998-11-10 06:05:32 +00:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIPresContext& aPresContext,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aChildList);
|
1999-01-15 01:29:15 +00:00
|
|
|
NS_IMETHOD AppendFrames(nsIPresContext& aPresContext,
|
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
NS_IMETHOD InsertFrames(nsIPresContext& aPresContext,
|
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList);
|
|
|
|
NS_IMETHOD RemoveFrame(nsIPresContext& aPresContext,
|
|
|
|
nsIPresShell& aPresShell,
|
|
|
|
nsIAtom* aListName,
|
|
|
|
nsIFrame* aOldFrame);
|
1998-08-28 03:02:39 +00:00
|
|
|
NS_IMETHOD DeleteFrame(nsIPresContext& aPresContext);
|
1999-02-10 00:42:56 +00:00
|
|
|
NS_IMETHOD GetContent(nsIContent** aContent) const;
|
|
|
|
NS_IMETHOD GetStyleContext(nsIStyleContext** aStyleContext) const;
|
1998-06-05 21:06:24 +00:00
|
|
|
NS_IMETHOD SetStyleContext(nsIPresContext* aPresContext,
|
|
|
|
nsIStyleContext* aContext);
|
|
|
|
NS_IMETHOD GetStyleData(nsStyleStructID aSID,
|
|
|
|
const nsStyleStruct*& aStyleStruct) const;
|
1998-11-03 20:23:15 +00:00
|
|
|
NS_IMETHOD ReResolveStyleContext(nsIPresContext* aPresContext,
|
1998-11-03 21:29:14 +00:00
|
|
|
nsIStyleContext* aParentContext);
|
1999-02-10 01:36:30 +00:00
|
|
|
NS_IMETHOD GetParent(nsIFrame** aParent) const;
|
1999-01-14 05:16:23 +00:00
|
|
|
NS_IMETHOD SetParent(const nsIFrame* aParent);
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD GetRect(nsRect& aRect) const;
|
|
|
|
NS_IMETHOD GetOrigin(nsPoint& aPoint) const;
|
|
|
|
NS_IMETHOD GetSize(nsSize& aSize) const;
|
|
|
|
NS_IMETHOD SetRect(const nsRect& aRect);
|
|
|
|
NS_IMETHOD MoveTo(nscoord aX, nscoord aY);
|
|
|
|
NS_IMETHOD SizeTo(nscoord aWidth, nscoord aHeight);
|
1999-02-10 02:25:01 +00:00
|
|
|
NS_IMETHOD GetAdditionalChildListName(PRInt32 aIndex, nsIAtom** aListName) const;
|
|
|
|
NS_IMETHOD FirstChild(nsIAtom* aListName, nsIFrame** aFirstChild) const;
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD Paint(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRenderingContext,
|
1998-12-18 15:54:23 +00:00
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
nsFramePaintLayer aWhichLayer);
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsIPresContext& aPresContext,
|
|
|
|
nsGUIEvent* aEvent,
|
|
|
|
nsEventStatus& aEventStatus);
|
1998-11-18 05:25:26 +00:00
|
|
|
NS_IMETHOD GetCursor(nsIPresContext& aPresContext,
|
|
|
|
nsPoint& aPoint,
|
|
|
|
PRInt32& aCursor);
|
|
|
|
NS_IMETHOD GetFrameForPoint(const nsPoint& aPoint,
|
|
|
|
nsIFrame** aFrame);
|
1999-02-12 00:02:31 +00:00
|
|
|
|
|
|
|
NS_IMETHOD GetPointFromOffset(nsIPresContext* inPresContext,
|
|
|
|
nsIRenderingContext* inRendContext,
|
|
|
|
PRInt32 inOffset,
|
|
|
|
nsPoint* outPoint);
|
|
|
|
|
|
|
|
NS_IMETHOD GetChildFrameContainingOffset(PRInt32 inContentOffset,
|
|
|
|
PRInt32* outFrameContentOffset,
|
|
|
|
nsIFrame* *outChildFrame);
|
|
|
|
|
1999-02-10 04:17:06 +00:00
|
|
|
NS_IMETHOD GetFrameState(nsFrameState* aResult);
|
1998-05-14 00:47:32 +00:00
|
|
|
NS_IMETHOD SetFrameState(nsFrameState aNewState);
|
1998-09-24 01:50:16 +00:00
|
|
|
|
1998-09-29 23:44:25 +00:00
|
|
|
NS_IMETHOD ContentChanged(nsIPresContext* aPresContext,
|
1998-05-08 04:45:37 +00:00
|
|
|
nsIContent* aChild,
|
|
|
|
nsISupports* aSubContent);
|
1998-09-29 23:44:25 +00:00
|
|
|
NS_IMETHOD AttributeChanged(nsIPresContext* aPresContext,
|
1998-09-18 19:53:27 +00:00
|
|
|
nsIContent* aChild,
|
1998-09-29 23:44:25 +00:00
|
|
|
nsIAtom* aAttribute,
|
|
|
|
PRInt32 aHint);
|
1998-05-22 04:54:11 +00:00
|
|
|
NS_IMETHOD IsSplittable(nsSplittableType& aIsSplittable) const;
|
1999-02-24 04:48:08 +00:00
|
|
|
NS_IMETHOD GetPrevInFlow(nsIFrame** aPrevInFlow) const;
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD SetPrevInFlow(nsIFrame*);
|
1999-02-24 04:48:08 +00:00
|
|
|
NS_IMETHOD GetNextInFlow(nsIFrame** aNextInFlow) const;
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD SetNextInFlow(nsIFrame*);
|
|
|
|
NS_IMETHOD AppendToFlow(nsIFrame* aAfterFrame);
|
|
|
|
NS_IMETHOD PrependToFlow(nsIFrame* aAfterFrame);
|
|
|
|
NS_IMETHOD RemoveFromFlow();
|
|
|
|
NS_IMETHOD BreakFromPrevFlow();
|
|
|
|
NS_IMETHOD BreakFromNextFlow();
|
1999-02-10 05:38:18 +00:00
|
|
|
NS_IMETHOD GetView(nsIView** aView) const;
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD SetView(nsIView* aView);
|
1999-02-10 05:38:18 +00:00
|
|
|
NS_IMETHOD GetParentWithView(nsIFrame** aParent) const;
|
|
|
|
NS_IMETHOD GetOffsetFromView(nsPoint& aOffset, nsIView** aView) const;
|
|
|
|
NS_IMETHOD GetWindow(nsIWidget**) const;
|
1999-02-10 04:17:06 +00:00
|
|
|
NS_IMETHOD GetFrameType(nsIAtom** aType) const;
|
1998-05-13 22:38:09 +00:00
|
|
|
NS_IMETHOD IsPercentageBase(PRBool& aBase) const;
|
1999-02-10 06:13:38 +00:00
|
|
|
NS_IMETHOD GetNextSibling(nsIFrame** aNextSibling) const;
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD SetNextSibling(nsIFrame* aNextSibling);
|
1998-06-05 21:06:24 +00:00
|
|
|
NS_IMETHOD IsTransparent(PRBool& aTransparent) const;
|
1998-09-05 20:57:57 +00:00
|
|
|
NS_IMETHOD Scrolled(nsIView *aView);
|
1999-01-16 00:00:50 +00:00
|
|
|
NS_IMETHOD List(FILE* out, PRInt32 aIndent) const;
|
1998-11-19 17:22:29 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsString& aResult) const;
|
|
|
|
NS_IMETHOD DumpRegressionData(FILE* out, PRInt32 aIndent);
|
1998-06-05 21:06:24 +00:00
|
|
|
NS_IMETHOD VerifyTree() const;
|
1998-12-14 18:34:14 +00:00
|
|
|
NS_IMETHOD SetSelected(PRBool aSelected, PRInt32 aBeginOffset, PRInt32 aEndOffset, PRBool aForceRedraw);
|
1999-01-25 23:28:23 +00:00
|
|
|
NS_IMETHOD SetSelectedContentOffsets(PRBool aSelected, PRInt32 aBeginContentOffset, PRInt32 aEndContentOffset,
|
|
|
|
PRInt32 aAnchorOffset, PRInt32 aFocusOffset, PRBool aForceRedraw,
|
|
|
|
nsIFocusTracker *aTracker,
|
|
|
|
nsIFrame **aActualSelected);
|
1998-12-14 18:34:14 +00:00
|
|
|
NS_IMETHOD GetSelected(PRBool *aSelected, PRInt32 *aBeginOffset, PRInt32 *aEndOffset, PRInt32 *aBeginContentOffset);
|
1999-02-10 18:55:25 +00:00
|
|
|
NS_IMETHOD PeekOffset(nsSelectionAmount aAmount, nsDirection aDirection, PRInt32 aStartOffset,
|
1999-02-22 04:59:52 +00:00
|
|
|
nsIFrame **aResultFrame, PRInt32 *aFrameOffset, PRInt32 *aContentOffset,
|
|
|
|
PRBool aEatingWS);
|
1999-02-02 00:23:40 +00:00
|
|
|
|
1999-01-22 18:58:14 +00:00
|
|
|
NS_IMETHOD GetOffsets(PRInt32 &aStart, PRInt32 &aEnd) const;
|
1999-02-18 03:25:23 +00:00
|
|
|
|
1998-10-01 04:46:11 +00:00
|
|
|
// nsIHTMLReflow
|
|
|
|
NS_IMETHOD WillReflow(nsIPresContext& aPresContext);
|
1998-10-02 04:10:00 +00:00
|
|
|
NS_IMETHOD Reflow(nsIPresContext& aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
1998-10-01 04:46:11 +00:00
|
|
|
NS_IMETHOD DidReflow(nsIPresContext& aPresContext,
|
|
|
|
nsDidReflowStatus aStatus);
|
1998-10-09 23:46:02 +00:00
|
|
|
NS_IMETHOD FindTextRuns(nsLineLayout& aLineLayout);
|
1998-10-27 16:51:21 +00:00
|
|
|
NS_IMETHOD AdjustFrameSize(nscoord aExtraSpace, nscoord& aUsedSpace);
|
|
|
|
NS_IMETHOD TrimTrailingWhiteSpace(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext& aRC,
|
|
|
|
nscoord& aDeltaWidth);
|
1998-10-30 22:11:47 +00:00
|
|
|
NS_IMETHOD MoveInSpaceManager(nsIPresContext& aPresContext,
|
|
|
|
nsISpaceManager* aSpaceManager,
|
|
|
|
nscoord aDeltaX, nscoord aDeltaY);
|
1999-02-23 19:32:20 +00:00
|
|
|
NS_IMETHOD VerticalAlignFrames(nsIPresContext& aPresContext,
|
|
|
|
const nsHTMLReflowState& aState,
|
|
|
|
nscoord aLineHeight,
|
|
|
|
nscoord aDistanceFromTopEdge,
|
|
|
|
nsRect& aCombinedRect);
|
1998-10-01 04:46:11 +00:00
|
|
|
|
1998-10-08 18:21:32 +00:00
|
|
|
// Selection Methods
|
1999-02-18 03:25:23 +00:00
|
|
|
// XXX Doc me... (in nsIFrame.h puhleeze)
|
1998-10-08 18:21:32 +00:00
|
|
|
// XXX If these are selection specific, then the name should imply selection
|
|
|
|
// rather than generic event processing, e.g., SelectionHandlePress...
|
1998-08-28 15:58:37 +00:00
|
|
|
NS_IMETHOD HandlePress(nsIPresContext& aPresContext,
|
1998-10-08 18:21:32 +00:00
|
|
|
nsGUIEvent * aEvent,
|
|
|
|
nsEventStatus& aEventStatus);
|
1998-08-28 15:58:37 +00:00
|
|
|
|
|
|
|
NS_IMETHOD HandleDrag(nsIPresContext& aPresContext,
|
1998-10-08 18:21:32 +00:00
|
|
|
nsGUIEvent * aEvent,
|
|
|
|
nsEventStatus& aEventStatus);
|
1998-08-28 15:58:37 +00:00
|
|
|
|
|
|
|
NS_IMETHOD HandleRelease(nsIPresContext& aPresContext,
|
1998-10-08 18:21:32 +00:00
|
|
|
nsGUIEvent * aEvent,
|
|
|
|
nsEventStatus& aEventStatus);
|
1998-08-28 15:58:37 +00:00
|
|
|
|
1998-10-02 01:12:39 +00:00
|
|
|
NS_IMETHOD GetPosition(nsIPresContext& aPresContext,
|
|
|
|
nsIRenderingContext * aRendContext,
|
|
|
|
nsGUIEvent* aEvent,
|
|
|
|
nsIFrame * aNewFrame,
|
|
|
|
PRUint32& aAcutalContentOffset,
|
|
|
|
PRInt32& aOffset);
|
1998-08-28 15:58:37 +00:00
|
|
|
|
1998-06-05 21:06:24 +00:00
|
|
|
//--------------------------------------------------
|
|
|
|
// Additional methods
|
1998-06-03 22:49:45 +00:00
|
|
|
|
1998-06-02 05:28:11 +00:00
|
|
|
// Invalidate part of the frame by asking the view manager to repaint.
|
|
|
|
// aDamageRect is in the frame's local coordinate space
|
1998-09-24 23:56:15 +00:00
|
|
|
void Invalidate(const nsRect& aDamageRect,
|
|
|
|
PRBool aImmediate = PR_FALSE) const;
|
1998-06-02 05:28:11 +00:00
|
|
|
|
1998-10-08 20:35:16 +00:00
|
|
|
// Helper function to return the index in parent of the frame's content
|
|
|
|
// object. Returns -1 on error or if the frame doesn't have a content object
|
|
|
|
static PRInt32 ContentIndexInContainer(const nsIFrame* aFrame);
|
|
|
|
|
1998-05-20 16:24:36 +00:00
|
|
|
#ifdef NS_DEBUG
|
|
|
|
/**
|
|
|
|
* Tracing method that writes a method enter/exit routine to the
|
|
|
|
* nspr log using the nsIFrame log module. The tracing is only
|
|
|
|
* done when the NS_FRAME_TRACE_CALLS bit is set in the log module's
|
|
|
|
* level field.
|
|
|
|
*/
|
|
|
|
void Trace(const char* aMethod, PRBool aEnter);
|
|
|
|
void Trace(const char* aMethod, PRBool aEnter, nsReflowStatus aStatus);
|
|
|
|
void TraceMsg(const char* fmt, ...);
|
|
|
|
#endif
|
|
|
|
|
1998-11-19 17:22:29 +00:00
|
|
|
void ListTag(FILE* out) const {
|
1998-12-12 19:20:10 +00:00
|
|
|
ListTag(out, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ListTag(FILE* out, const nsIFrame* aFrame) {
|
1998-11-19 17:22:29 +00:00
|
|
|
nsAutoString tmp;
|
1998-12-12 19:20:10 +00:00
|
|
|
aFrame->GetFrameName(tmp);
|
1998-11-19 17:22:29 +00:00
|
|
|
fputs(tmp, out);
|
1998-12-12 19:20:10 +00:00
|
|
|
fprintf(out, "@%p", aFrame);
|
1998-11-19 17:22:29 +00:00
|
|
|
}
|
|
|
|
|
1998-12-05 16:03:07 +00:00
|
|
|
static void IndentBy(FILE* out, PRInt32 aIndent) {
|
|
|
|
while (--aIndent >= 0) fputs(" ", out);
|
|
|
|
}
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
protected:
|
1998-12-05 16:03:07 +00:00
|
|
|
// Protected constructor and destructor
|
|
|
|
nsFrame();
|
|
|
|
virtual ~nsFrame();
|
|
|
|
|
1998-05-08 18:33:42 +00:00
|
|
|
virtual void AdjustPointsInNewContent(nsIPresContext& aPresContext,
|
1998-10-02 01:12:39 +00:00
|
|
|
nsIRenderingContext * aRendContext,
|
1998-05-08 18:33:42 +00:00
|
|
|
nsGUIEvent * aEvent,
|
|
|
|
nsIFrame * aNewFrame);
|
|
|
|
|
|
|
|
virtual void AdjustPointsInSameContent(nsIPresContext& aPresContext,
|
1998-10-02 01:12:39 +00:00
|
|
|
nsIRenderingContext * aRendContext,
|
1998-05-08 18:33:42 +00:00
|
|
|
nsGUIEvent * aEvent);
|
|
|
|
|
1998-08-03 23:39:16 +00:00
|
|
|
PRBool DisplaySelection(nsIPresContext& aPresContext, PRBool isOkToTurnOn = PR_FALSE);
|
1998-05-08 18:33:42 +00:00
|
|
|
|
|
|
|
// Style post processing hook
|
1998-05-26 23:13:26 +00:00
|
|
|
NS_IMETHOD DidSetStyleContext(nsIPresContext* aPresContext);
|
1998-05-08 18:33:42 +00:00
|
|
|
|
1998-11-19 17:22:29 +00:00
|
|
|
/**
|
|
|
|
* Dump out the "base classes" regression data. This should dump
|
|
|
|
* out the interior data, not the "frame" XML container. And it
|
|
|
|
* should call the base classes same named method before doing
|
|
|
|
* anything specific in a derived class. This means that derived
|
|
|
|
* classes need not override DumpRegressionData unless they need
|
|
|
|
* some custom behavior that requires changing how the outer "frame"
|
|
|
|
* XML container is dumped.
|
|
|
|
*/
|
|
|
|
virtual void DumpBaseRegressionData(FILE* out, PRInt32 aIndent);
|
|
|
|
|
|
|
|
nsresult MakeFrameName(const char* aKind, nsString& aResult) const;
|
|
|
|
|
1998-11-19 17:55:22 +00:00
|
|
|
static void XMLQuote(nsString& aString);
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
nsRect mRect;
|
|
|
|
nsIContent* mContent;
|
|
|
|
nsIStyleContext* mStyleContext;
|
1999-01-14 05:16:23 +00:00
|
|
|
nsIFrame* mParent;
|
1998-04-13 20:24:54 +00:00
|
|
|
nsIFrame* mNextSibling; // singly linked list of frames
|
1998-05-14 00:47:32 +00:00
|
|
|
nsFrameState mState;
|
1998-12-14 18:34:14 +00:00
|
|
|
PRBool mSelected;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-05-08 18:33:42 +00:00
|
|
|
///////////////////////////////////
|
|
|
|
// Important Selection Variables
|
|
|
|
///////////////////////////////////
|
|
|
|
static PRBool mDoingSelection;
|
|
|
|
static PRBool mDidDrag;
|
|
|
|
static PRInt32 mStartPos;
|
|
|
|
|
|
|
|
// Selection data is valid only from the Mouse Press to the Mouse Release
|
|
|
|
///////////////////////////////////
|
|
|
|
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
private:
|
|
|
|
nsIView* mView; // must use accessor member functions
|
1998-12-07 03:43:02 +00:00
|
|
|
protected:
|
1998-04-13 20:24:54 +00:00
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void);
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsFrame_h___ */
|