2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
2000-02-02 22:24:56 +00:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-03-29 18:29:03 +00:00
|
|
|
|
|
|
|
/* base class of all rendering objects */
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#ifndef nsFrame_h___
|
|
|
|
#define nsFrame_h___
|
|
|
|
|
2004-09-28 18:37:50 +00:00
|
|
|
#include "nsBox.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsRect.h"
|
1998-11-19 17:22:29 +00:00
|
|
|
#include "nsString.h"
|
1998-05-20 16:24:36 +00:00
|
|
|
#include "prlog.h"
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef NS_DEBUG
|
|
|
|
#include "nsIFrameDebug.h"
|
|
|
|
#endif
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1999-12-04 23:49:50 +00:00
|
|
|
#include "nsIPresShell.h"
|
2006-04-26 02:01:07 +00:00
|
|
|
#include "nsFrameSelection.h"
|
2001-07-16 02:40:48 +00:00
|
|
|
#include "nsHTMLReflowState.h"
|
2001-08-01 01:27:50 +00:00
|
|
|
#include "nsHTMLReflowMetrics.h"
|
1999-12-04 23:49:50 +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 \
|
1999-11-01 22:12:45 +00:00
|
|
|
if (NS_FRAME_LOG_TEST(nsIFrameDebug::GetLogModuleInfo(),_bit)) { \
|
1998-05-20 16:24:36 +00:00
|
|
|
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 \
|
1999-11-01 22:12:45 +00:00
|
|
|
if (NS_FRAME_LOG_TEST(nsIFrameDebug::GetLogModuleInfo(),_bit)) { \
|
1998-06-25 16:33:10 +00:00
|
|
|
TraceMsg _args; \
|
|
|
|
} \
|
|
|
|
PR_END_MACRO
|
|
|
|
|
|
|
|
#define NS_FRAME_TRACE(_bit,_args) \
|
|
|
|
PR_BEGIN_MACRO \
|
1999-11-01 22:12:45 +00:00
|
|
|
if (NS_FRAME_LOG_TEST(nsIFrameDebug::GetLogModuleInfo(),_bit)) { \
|
1998-06-25 16:33:10 +00:00
|
|
|
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
|
|
|
|
|
2002-05-24 20:11:14 +00:00
|
|
|
// handy utilities
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
// XXXldb Move to nsLayoutUtils!
|
2003-03-05 15:08:41 +00:00
|
|
|
void SetFontFromStyle(nsIRenderingContext* aRC, nsStyleContext* aSC);
|
1999-06-10 21:08:17 +00:00
|
|
|
|
1998-05-20 16:24:36 +00:00
|
|
|
//----------------------------------------------------------------------
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2004-09-28 18:37:50 +00:00
|
|
|
struct nsBoxLayoutMetrics;
|
|
|
|
|
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.
|
|
|
|
*/
|
2004-09-28 18:37:50 +00:00
|
|
|
class nsFrame : public nsBox
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef NS_DEBUG
|
|
|
|
, public nsIFrameDebug
|
|
|
|
#endif
|
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.
|
|
|
|
*/
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewEmptyFrame(nsIPresShell* aShell, nsStyleContext* aContext);
|
1999-12-04 23:49:50 +00:00
|
|
|
|
|
|
|
// Overloaded new operator. Initializes the memory to 0 and relies on an arena
|
|
|
|
// (which comes from the presShell) to perform the allocation.
|
2002-07-03 17:14:41 +00:00
|
|
|
void* operator new(size_t sz, nsIPresShell* aPresShell) CPP_THROW_NEW;
|
1999-12-04 23:49:50 +00:00
|
|
|
|
|
|
|
// Overridden to prevent the global delete from being called, since the memory
|
2003-06-23 20:31:43 +00:00
|
|
|
// came out of an arena instead of the global delete operator's heap.
|
1999-12-05 02:24:02 +00:00
|
|
|
// XXX Would like to make this private some day, but our UNIX compilers can't
|
|
|
|
// deal with it.
|
1999-12-04 23:49:50 +00:00
|
|
|
void operator delete(void* aPtr, size_t sz);
|
1998-04-13 20:24:54 +00:00
|
|
|
|
2004-09-28 18:37:50 +00:00
|
|
|
// We compute and store the HTML content's overflow area. So don't
|
|
|
|
// try to compute it in the box code.
|
|
|
|
virtual PRBool ComputesOwnOverflowArea() { return PR_TRUE; }
|
|
|
|
|
1999-12-05 02:24:02 +00:00
|
|
|
private:
|
1999-12-04 23:49:50 +00:00
|
|
|
// The normal operator new is disallowed on nsFrames.
|
2002-07-02 20:25:30 +00:00
|
|
|
void* operator new(size_t sz) CPP_THROW_NEW { return nsnull; };
|
1999-12-04 23:49:50 +00:00
|
|
|
|
|
|
|
public:
|
1999-02-26 17:05:20 +00:00
|
|
|
|
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
|
2006-03-09 18:55:21 +00:00
|
|
|
NS_IMETHOD Init(nsIContent* aContent,
|
1999-01-14 05:16:23 +00:00
|
|
|
nsIFrame* aParent,
|
1999-02-25 03:27:57 +00:00
|
|
|
nsIFrame* asPrevInFlow);
|
2006-04-10 00:16:29 +00:00
|
|
|
NS_IMETHOD SetInitialChildList(nsIAtom* aListName,
|
1998-11-10 06:05:32 +00:00
|
|
|
nsIFrame* aChildList);
|
2005-02-07 01:58:25 +00:00
|
|
|
NS_IMETHOD AppendFrames(nsIAtom* aListName,
|
1999-01-15 01:29:15 +00:00
|
|
|
nsIFrame* aFrameList);
|
2005-02-07 01:58:25 +00:00
|
|
|
NS_IMETHOD InsertFrames(nsIAtom* aListName,
|
1999-01-15 01:29:15 +00:00
|
|
|
nsIFrame* aPrevFrame,
|
|
|
|
nsIFrame* aFrameList);
|
2005-02-07 01:58:25 +00:00
|
|
|
NS_IMETHOD RemoveFrame(nsIAtom* aListName,
|
1999-01-15 01:29:15 +00:00
|
|
|
nsIFrame* aOldFrame);
|
2006-04-10 00:16:29 +00:00
|
|
|
virtual void Destroy();
|
2003-02-22 00:32:13 +00:00
|
|
|
virtual nsStyleContext* GetAdditionalStyleContext(PRInt32 aIndex) const;
|
|
|
|
virtual void SetAdditionalStyleContext(PRInt32 aIndex,
|
|
|
|
nsStyleContext* aStyleContext);
|
2004-09-28 18:37:50 +00:00
|
|
|
NS_IMETHOD SetParent(const nsIFrame* aParent);
|
2007-01-23 04:06:56 +00:00
|
|
|
virtual nscoord GetBaseline() const;
|
2004-01-09 14:20:53 +00:00
|
|
|
virtual nsIAtom* GetAdditionalChildListName(PRInt32 aIndex) const;
|
|
|
|
virtual nsIFrame* GetFirstChild(nsIAtom* aListName) const;
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
1998-04-17 01:41:24 +00:00
|
|
|
nsGUIEvent* aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD GetContentForEvent(nsPresContext* aPresContext,
|
2000-02-11 01:24:59 +00:00
|
|
|
nsEvent* aEvent,
|
|
|
|
nsIContent** aContent);
|
2004-12-30 21:56:11 +00:00
|
|
|
NS_IMETHOD GetCursor(const nsPoint& aPoint,
|
|
|
|
nsIFrame::Cursor& aCursor);
|
1999-02-12 00:02:31 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD GetPointFromOffset(nsPresContext* inPresContext,
|
1999-02-12 00:02:31 +00:00
|
|
|
nsIRenderingContext* inRendContext,
|
|
|
|
PRInt32 inOffset,
|
|
|
|
nsPoint* outPoint);
|
|
|
|
|
|
|
|
NS_IMETHOD GetChildFrameContainingOffset(PRInt32 inContentOffset,
|
1999-09-11 00:18:02 +00:00
|
|
|
PRBool inHint,
|
1999-02-12 00:02:31 +00:00
|
|
|
PRInt32* outFrameContentOffset,
|
|
|
|
nsIFrame* *outChildFrame);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
static nsresult GetNextPrevLineFromeBlockFrame(nsPresContext* aPresContext,
|
1999-10-26 04:44:41 +00:00
|
|
|
nsPeekOffsetStruct *aPos,
|
1999-07-15 18:19:03 +00:00
|
|
|
nsIFrame *aBlockFrame,
|
|
|
|
PRInt32 aLineStart,
|
1999-10-13 01:15:26 +00:00
|
|
|
PRInt8 aOutSideLimit
|
1999-07-15 18:19:03 +00:00
|
|
|
);
|
2006-06-16 01:54:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Find the nearest frame with a mouse capturer. If no
|
|
|
|
* parent has mouse capture this will return null.
|
|
|
|
* @param aFrame Frame drag began in.
|
|
|
|
* @return Nearest capturing frame.
|
|
|
|
*/
|
|
|
|
static nsIFrame* GetNearestCapturingFrame(nsIFrame* aFrame);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD CharacterDataChanged(nsPresContext* aPresContext,
|
2004-02-20 21:38:31 +00:00
|
|
|
nsIContent* aChild,
|
|
|
|
PRBool aAppend);
|
2005-09-07 16:49:21 +00:00
|
|
|
NS_IMETHOD AttributeChanged(PRInt32 aNameSpaceID,
|
1998-09-29 23:44:25 +00:00
|
|
|
nsIAtom* aAttribute,
|
2003-07-11 21:16:12 +00:00
|
|
|
PRInt32 aModType);
|
2006-12-20 03:52:34 +00:00
|
|
|
virtual nsSplittableType GetSplittableType() const;
|
2006-02-21 21:33:47 +00:00
|
|
|
virtual nsIFrame* GetPrevContinuation() const;
|
|
|
|
NS_IMETHOD SetPrevContinuation(nsIFrame*);
|
|
|
|
virtual nsIFrame* GetNextContinuation() const;
|
|
|
|
NS_IMETHOD SetNextContinuation(nsIFrame*);
|
|
|
|
virtual nsIFrame* GetPrevInFlowVirtual() const;
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD SetPrevInFlow(nsIFrame*);
|
2006-02-21 21:33:47 +00:00
|
|
|
virtual nsIFrame* GetNextInFlowVirtual() const;
|
1998-04-17 01:41:24 +00:00
|
|
|
NS_IMETHOD SetNextInFlow(nsIFrame*);
|
2004-12-26 19:48:54 +00:00
|
|
|
NS_IMETHOD GetOffsetFromView(nsPoint& aOffset, nsIView** aView) const;
|
2005-01-01 17:26:29 +00:00
|
|
|
NS_IMETHOD GetOriginToViewOffset(nsPoint& aOffset, nsIView **aView) const;
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2004-03-12 04:40:17 +00:00
|
|
|
virtual PRBool IsContainingBlock() const;
|
1999-11-01 22:12:45 +00:00
|
|
|
#ifdef NS_DEBUG
|
2005-09-06 21:34:50 +00:00
|
|
|
NS_IMETHOD List(FILE* out, PRInt32 aIndent) const;
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
2004-04-04 01:48:16 +00:00
|
|
|
NS_IMETHOD_(nsFrameState) GetDebugStateBits() const;
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD DumpRegressionData(nsPresContext* aPresContext, FILE* out, PRInt32 aIndent, PRBool aIncludeStyleData);
|
1998-06-05 21:06:24 +00:00
|
|
|
NS_IMETHOD VerifyTree() const;
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
2000-08-08 23:38:00 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD SetSelected(nsPresContext* aPresContext, nsIDOMRange *aRange,PRBool aSelected, nsSpread aSpread);
|
1999-04-26 04:02:04 +00:00
|
|
|
NS_IMETHOD GetSelected(PRBool *aSelected) const;
|
2000-08-08 23:38:00 +00:00
|
|
|
NS_IMETHOD IsSelectable(PRBool* aIsSelectable, PRUint8* aSelectStyle) const;
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD GetSelectionController(nsPresContext *aPresContext, nsISelectionController **aSelCon);
|
2006-09-11 20:43:01 +00:00
|
|
|
|
|
|
|
virtual PRBool PeekOffsetNoAmount(PRBool aForward, PRInt32* aOffset);
|
|
|
|
virtual PRBool PeekOffsetCharacter(PRBool aForward, PRInt32* aOffset);
|
|
|
|
virtual PRBool PeekOffsetWord(PRBool aForward, PRBool aWordSelectEatSpace, PRBool aIsKeyboardSelect,
|
|
|
|
PRInt32* aOffset, PRBool* aSawBeforeType);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD CheckVisibility(nsPresContext* aContext, PRInt32 aStartIndex, PRInt32 aEndIndex, PRBool aRecurse, PRBool *aFinished, PRBool *_retval);
|
2000-07-26 11:31:12 +00:00
|
|
|
|
1999-01-22 18:58:14 +00:00
|
|
|
NS_IMETHOD GetOffsets(PRInt32 &aStart, PRInt32 &aEnd) const;
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
virtual void ChildIsDirty(nsIFrame* aChild);
|
1999-02-18 03:25:23 +00:00
|
|
|
|
2001-08-17 03:13:07 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
2001-05-17 23:52:32 +00:00
|
|
|
NS_IMETHOD GetAccessible(nsIAccessible** aAccessible);
|
2001-08-17 03:13:07 +00:00
|
|
|
#endif
|
2001-05-17 23:52:32 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD GetParentStyleContextFrame(nsPresContext* aPresContext,
|
2002-03-27 02:38:13 +00:00
|
|
|
nsIFrame** aProviderFrame,
|
|
|
|
PRBool* aIsChild);
|
2000-09-12 22:47:09 +00:00
|
|
|
|
2003-11-10 23:36:06 +00:00
|
|
|
virtual PRBool IsEmpty();
|
2004-11-15 05:01:11 +00:00
|
|
|
virtual PRBool IsSelfEmpty();
|
2001-10-25 01:08:40 +00:00
|
|
|
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
virtual void MarkIntrinsicWidthsDirty();
|
|
|
|
virtual nscoord GetMinWidth(nsIRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsIRenderingContext *aRenderingContext);
|
|
|
|
virtual void AddInlineMinWidth(nsIRenderingContext *aRenderingContext,
|
|
|
|
InlineMinWidthData *aData);
|
|
|
|
virtual void AddInlinePrefWidth(nsIRenderingContext *aRenderingContext,
|
|
|
|
InlinePrefWidthData *aData);
|
2006-12-17 14:06:42 +00:00
|
|
|
virtual IntrinsicWidthOffsetData
|
|
|
|
IntrinsicWidthOffsets(nsIRenderingContext* aRenderingContext);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
|
|
|
|
virtual nsSize ComputeSize(nsIRenderingContext *aRenderingContext,
|
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder, nsSize aPadding,
|
|
|
|
PRBool aShrinkWrap);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A helper, used by |nsFrame::ComputeSize| (for frames that need to
|
|
|
|
* override only this part of ComputeSize), that computes the size
|
|
|
|
* that should be returned when 'width', 'height', and
|
|
|
|
* min/max-width/height are all 'auto' or equivalent.
|
|
|
|
*
|
|
|
|
* In general, frames that can accept any computed width/height should
|
|
|
|
* override only ComputeAutoSize, and frames that cannot do so need to
|
|
|
|
* override ComputeSize to enforce their width/height invariants.
|
|
|
|
*
|
|
|
|
* Implementations may optimize by returning a garbage width if
|
|
|
|
* GetStylePosition()->mWidth.GetUnit() == eStyleUnit_Auto, and
|
|
|
|
* likewise for height, since in such cases the result is guaranteed
|
|
|
|
* to be unused.
|
|
|
|
*/
|
|
|
|
virtual nsSize ComputeAutoSize(nsIRenderingContext *aRenderingContext,
|
|
|
|
nsSize aCBSize, nscoord aAvailableWidth,
|
|
|
|
nsSize aMargin, nsSize aBorder,
|
|
|
|
nsSize aPadding, PRBool aShrinkWrap);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility function for ComputeAutoSize implementations. Return
|
|
|
|
* max(GetMinWidth(), min(aWidthInCB, GetPrefWidth()))
|
|
|
|
*/
|
|
|
|
nscoord ShrinkWidthToFit(nsIRenderingContext *aRenderingContext,
|
|
|
|
nscoord aWidthInCB);
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD WillReflow(nsPresContext* aPresContext);
|
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
1998-10-02 04:10:00 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsReflowStatus& aStatus);
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD DidReflow(nsPresContext* aPresContext,
|
2001-12-07 14:51:12 +00:00
|
|
|
const nsHTMLReflowState* aReflowState,
|
|
|
|
nsDidReflowStatus aStatus);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
virtual PRBool CanContinueTextRun() const;
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD TrimTrailingWhiteSpace(nsPresContext* aPresContext,
|
1998-10-27 16:51:21 +00:00
|
|
|
nsIRenderingContext& aRC,
|
2005-01-13 19:21:18 +00:00
|
|
|
nscoord& aDeltaWidth,
|
|
|
|
PRBool& aLastCharIsJustifiable);
|
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...
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandlePress(nsPresContext* aPresContext,
|
1998-10-08 18:21:32 +00:00
|
|
|
nsGUIEvent * aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
1998-08-28 15:58:37 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleMultiplePress(nsPresContext* aPresContext,
|
1999-05-17 00:21:18 +00:00
|
|
|
nsGUIEvent * aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
1999-05-17 00:21:18 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleDrag(nsPresContext* aPresContext,
|
1998-10-08 18:21:32 +00:00
|
|
|
nsGUIEvent * aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
1998-08-28 15:58:37 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleRelease(nsPresContext* aPresContext,
|
1998-10-08 18:21:32 +00:00
|
|
|
nsGUIEvent * aEvent,
|
1999-11-24 06:03:41 +00:00
|
|
|
nsEventStatus* aEventStatus);
|
1998-08-28 15:58:37 +00:00
|
|
|
|
2000-05-16 22:48:28 +00:00
|
|
|
NS_IMETHOD PeekBackwardAndForward(nsSelectionAmount aAmountBack,
|
|
|
|
nsSelectionAmount aAmountForward,
|
|
|
|
PRInt32 aStartPos,
|
2004-07-31 23:15:21 +00:00
|
|
|
nsPresContext* aPresContext,
|
2000-05-16 22:48:28 +00:00
|
|
|
PRBool aJumpLines);
|
1999-09-29 20:04:05 +00:00
|
|
|
|
|
|
|
|
2006-02-27 05:57:37 +00:00
|
|
|
// Helper for GetContentAndOffsetsFromPoint; calculation of content offsets
|
|
|
|
// in this function assumes there is no child frame that can be targeted.
|
|
|
|
virtual ContentOffsets CalcContentOffsetsFromFramePoint(nsPoint aPoint);
|
|
|
|
|
2004-09-28 18:37:50 +00:00
|
|
|
// Box layout methods
|
2007-01-08 02:57:59 +00:00
|
|
|
virtual nsSize GetPrefSize(nsBoxLayoutState& aBoxLayoutState);
|
|
|
|
virtual nsSize GetMinSize(nsBoxLayoutState& aBoxLayoutState);
|
|
|
|
virtual nsSize GetMaxSize(nsBoxLayoutState& aBoxLayoutState);
|
2007-01-31 16:02:42 +00:00
|
|
|
virtual nscoord GetFlex(nsBoxLayoutState& aBoxLayoutState);
|
|
|
|
virtual nscoord GetBoxAscent(nsBoxLayoutState& aBoxLayoutState);
|
2004-09-28 18:37:50 +00:00
|
|
|
|
1998-06-05 21:06:24 +00:00
|
|
|
//--------------------------------------------------
|
|
|
|
// Additional methods
|
1998-06-03 22:49:45 +00:00
|
|
|
|
2004-01-10 05:36:32 +00:00
|
|
|
/**
|
|
|
|
* Helper method to invalidate portions of a standard container frame if the
|
|
|
|
* reflow state indicates that the size has changed (specifically border,
|
|
|
|
* background and outline).
|
|
|
|
* We assume that the difference between the old frame area and the new
|
|
|
|
* frame area is invalidated by some other means.
|
|
|
|
* @param aPresContext the presentation context
|
|
|
|
* @param aDesiredSize the new size of the frame
|
|
|
|
* @param aReflowState the reflow that was just done on this frame
|
|
|
|
*/
|
2004-07-31 23:15:21 +00:00
|
|
|
void CheckInvalidateSizeChange(nsPresContext* aPresContext,
|
2004-01-10 05:36:32 +00:00
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
|
|
|
const nsHTMLReflowState& aReflowState);
|
|
|
|
|
1999-08-27 21:48:06 +00:00
|
|
|
// Helper function that tests if the frame tree is too deep; if it
|
|
|
|
// is it marks the frame as "unflowable" and zeros out the metrics
|
|
|
|
// and returns PR_TRUE. Otherwise, the frame is unmarked
|
|
|
|
// "unflowable" and the metrics are not touched and PR_FALSE is
|
|
|
|
// returned.
|
|
|
|
PRBool IsFrameTreeTooDeep(const nsHTMLReflowState& aReflowState,
|
|
|
|
nsHTMLReflowMetrics& aMetrics);
|
|
|
|
|
2002-03-27 02:38:13 +00:00
|
|
|
// Do the work for getting the parent style context frame so that
|
|
|
|
// other frame's |GetParentStyleContextFrame| methods can call this
|
|
|
|
// method on *another* frame. (This function handles out-of-flow
|
2003-06-15 00:55:00 +00:00
|
|
|
// frames by using the frame manager's placeholder map and it also
|
|
|
|
// handles block-within-inline and generated content wrappers.)
|
2004-07-31 23:15:21 +00:00
|
|
|
nsresult DoGetParentStyleContextFrame(nsPresContext* aPresContext,
|
2002-03-27 02:38:13 +00:00
|
|
|
nsIFrame** aProviderFrame,
|
|
|
|
PRBool* aIsChild);
|
|
|
|
|
2003-09-13 16:21:41 +00:00
|
|
|
// incorporate the child overflow area into the parent overflow area
|
|
|
|
// if the child does not have a overflow use the child area
|
2004-12-27 15:05:18 +00:00
|
|
|
void ConsiderChildOverflow(nsRect& aOverflowArea,
|
|
|
|
nsIFrame* aChildFrame);
|
2003-09-13 16:21:41 +00:00
|
|
|
|
2000-04-12 03:04:11 +00:00
|
|
|
//Mouse Capturing code used by the frames to tell the view to capture all the following events
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD CaptureMouse(nsPresContext* aPresContext, PRBool aGrabMouseEvents);
|
|
|
|
PRBool IsMouseCaptured(nsPresContext* aPresContext);
|
2002-12-04 00:58:52 +00:00
|
|
|
|
2003-05-15 03:42:21 +00:00
|
|
|
virtual const nsStyleStruct* GetStyleDataExternal(nsStyleStructID aSID) const;
|
2003-01-09 06:49:07 +00:00
|
|
|
|
2000-04-12 03:04:11 +00:00
|
|
|
|
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, ...);
|
1999-07-24 02:37:06 +00:00
|
|
|
|
|
|
|
// Helper function that verifies that each frame in the list has the
|
|
|
|
// NS_FRAME_IS_DIRTY bit set
|
|
|
|
static void VerifyDirtyBitSet(nsIFrame* aFrameList);
|
1998-05-20 16:24:36 +00:00
|
|
|
|
2003-11-19 01:20:56 +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-11-19 17:22:29 +00:00
|
|
|
void ListTag(FILE* out) const {
|
1999-11-01 22:12:45 +00:00
|
|
|
ListTag(out, (nsIFrame*)this);
|
1998-12-12 19:20:10 +00:00
|
|
|
}
|
|
|
|
|
1999-11-01 22:12:45 +00:00
|
|
|
static void ListTag(FILE* out, nsIFrame* aFrame) {
|
1998-11-19 17:22:29 +00:00
|
|
|
nsAutoString tmp;
|
1999-11-01 22:12:45 +00:00
|
|
|
nsIFrameDebug* frameDebug;
|
|
|
|
|
2000-02-02 22:24:56 +00:00
|
|
|
if (NS_SUCCEEDED(aFrame->QueryInterface(NS_GET_IID(nsIFrameDebug), (void**)&frameDebug))) {
|
1999-11-01 22:12:45 +00:00
|
|
|
frameDebug->GetFrameName(tmp);
|
|
|
|
}
|
2006-02-03 14:18:39 +00:00
|
|
|
fputs(NS_LossyConvertUTF16toASCII(tmp).get(), out);
|
2001-10-25 01:08:40 +00:00
|
|
|
fprintf(out, "@%p", NS_STATIC_CAST(void*, 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);
|
|
|
|
}
|
1999-11-01 22:12:45 +00:00
|
|
|
|
2004-05-04 16:27:40 +00:00
|
|
|
static void XMLQuote(nsString& aString);
|
|
|
|
|
1999-11-01 22:12:45 +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.
|
|
|
|
*/
|
2004-07-31 23:15:21 +00:00
|
|
|
virtual void DumpBaseRegressionData(nsPresContext* aPresContext, FILE* out, PRInt32 aIndent, PRBool aIncludeStyleData);
|
1999-11-01 22:12:45 +00:00
|
|
|
|
2001-11-14 01:33:42 +00:00
|
|
|
nsresult MakeFrameName(const nsAString& aKind, nsAString& aResult) const;
|
2001-10-29 01:43:59 +00:00
|
|
|
|
|
|
|
// Display Reflow Debugging
|
2004-07-31 23:15:21 +00:00
|
|
|
static void* DisplayReflowEnter(nsPresContext* aPresContext,
|
2001-11-14 13:40:03 +00:00
|
|
|
nsIFrame* aFrame,
|
2001-10-29 01:43:59 +00:00
|
|
|
const nsHTMLReflowState& aReflowState);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
static void* DisplayLayoutEnter(nsIFrame* aFrame);
|
|
|
|
static void* DisplayIntrinsicWidthEnter(nsIFrame* aFrame,
|
|
|
|
const char* aType);
|
|
|
|
static void* DisplayIntrinsicSizeEnter(nsIFrame* aFrame,
|
|
|
|
const char* aType);
|
2004-07-31 23:15:21 +00:00
|
|
|
static void DisplayReflowExit(nsPresContext* aPresContext,
|
2001-11-14 13:40:03 +00:00
|
|
|
nsIFrame* aFrame,
|
2001-10-29 01:43:59 +00:00
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
PRUint32 aStatus,
|
|
|
|
void* aFrameTreeNode);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
static void DisplayLayoutExit(nsIFrame* aFrame,
|
|
|
|
void* aFrameTreeNode);
|
|
|
|
static void DisplayIntrinsicWidthExit(nsIFrame* aFrame,
|
|
|
|
const char* aType,
|
|
|
|
nscoord aResult,
|
|
|
|
void* aFrameTreeNode);
|
|
|
|
static void DisplayIntrinsicSizeExit(nsIFrame* aFrame,
|
|
|
|
const char* aType,
|
|
|
|
nsSize aResult,
|
|
|
|
void* aFrameTreeNode);
|
2003-03-22 15:09:17 +00:00
|
|
|
|
|
|
|
static void DisplayReflowStartup();
|
|
|
|
static void DisplayReflowShutdown();
|
1999-11-01 22:12:45 +00:00
|
|
|
#endif
|
1998-12-05 16:03:07 +00:00
|
|
|
|
2006-01-26 02:29:17 +00:00
|
|
|
/**
|
|
|
|
* Adds display items for standard CSS borders, background and outline for
|
|
|
|
* for this frame, as necessary. Checks IsVisibleForPainting and won't
|
|
|
|
* display anything if the frame is not visible.
|
|
|
|
* @param aForceBackground draw the background even if the frame
|
|
|
|
* background style appears to have no background --- this is useful
|
|
|
|
* for frames that might receive a propagated background via
|
|
|
|
* nsCSSRendering::FindBackground
|
|
|
|
*/
|
|
|
|
nsresult DisplayBorderBackgroundOutline(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayListSet& aLists,
|
|
|
|
PRBool aForceBackground = PR_FALSE);
|
|
|
|
/**
|
|
|
|
* Add a display item for the CSS outline. Does not check visibility.
|
|
|
|
*/
|
|
|
|
nsresult DisplayOutlineUnconditional(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
/**
|
|
|
|
* Add a display item for the CSS outline, after calling
|
|
|
|
* IsVisibleForPainting to confirm we are visible.
|
|
|
|
*/
|
|
|
|
nsresult DisplayOutline(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
protected:
|
1998-12-05 16:03:07 +00:00
|
|
|
// Protected constructor and destructor
|
2006-03-26 21:30:36 +00:00
|
|
|
nsFrame(nsStyleContext* aContext);
|
1998-12-05 16:03:07 +00:00
|
|
|
virtual ~nsFrame();
|
|
|
|
|
2002-12-23 22:05:47 +00:00
|
|
|
/**
|
2006-01-26 02:29:17 +00:00
|
|
|
* @return PR_FALSE if this frame definitely has no borders at all
|
|
|
|
*/
|
2006-09-19 21:46:01 +00:00
|
|
|
PRBool HasBorder();
|
2006-01-26 02:29:17 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To be called by |BuildDisplayLists| of this class or derived classes to add
|
|
|
|
* a translucent overlay if this frame's content is selected.
|
|
|
|
* @param aContentType an nsISelectionDisplay DISPLAY_ constant identifying
|
|
|
|
* which kind of content this is for
|
2002-12-23 22:05:47 +00:00
|
|
|
*/
|
2006-01-26 02:29:17 +00:00
|
|
|
nsresult DisplaySelectionOverlay(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsDisplayListSet& aLists, PRUint16 aContentType = nsISelectionDisplay::DISPLAY_FRAMES);
|
2002-12-23 22:05:47 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
PRInt16 DisplaySelection(nsPresContext* aPresContext, PRBool isOkToTurnOn = PR_FALSE);
|
2000-08-08 23:38:00 +00:00
|
|
|
|
1998-05-08 18:33:42 +00:00
|
|
|
// Style post processing hook
|
2006-03-09 18:55:21 +00:00
|
|
|
NS_IMETHOD DidSetStyleContext();
|
1998-05-08 18:33:42 +00:00
|
|
|
|
2004-11-29 20:28:46 +00:00
|
|
|
public:
|
1999-10-22 00:19:18 +00:00
|
|
|
//given a frame five me the first/last leaf available
|
2004-11-29 20:28:46 +00:00
|
|
|
//XXX Robert O'Callahan wants to move these elsewhere
|
2004-07-31 23:15:21 +00:00
|
|
|
static void GetLastLeaf(nsPresContext* aPresContext, nsIFrame **aFrame);
|
|
|
|
static void GetFirstLeaf(nsPresContext* aPresContext, nsIFrame **aFrame);
|
2006-08-07 10:54:56 +00:00
|
|
|
|
|
|
|
// return the line number of the aFrame, and (optionally) the containing block frame.
|
|
|
|
static PRInt32 GetLineNumber(nsIFrame *aFrame, nsIFrame** aContainingBlock = nsnull);
|
|
|
|
|
2004-11-29 20:28:46 +00:00
|
|
|
protected:
|
2000-03-16 23:45:39 +00:00
|
|
|
|
|
|
|
// Test if we are selecting a table object:
|
2000-05-31 00:07:58 +00:00
|
|
|
// Most table/cell selection requires that Ctrl (Cmd on Mac) key is down
|
|
|
|
// during a mouse click or drag. Exception is using Shift+click when
|
|
|
|
// already in "table/cell selection mode" to extend a block selection
|
|
|
|
// Get the parent content node and offset of the frame
|
2000-03-16 23:45:39 +00:00
|
|
|
// of the enclosing cell or table (if not inside a cell)
|
|
|
|
// aTarget tells us what table element to select (currently only cell and table supported)
|
|
|
|
// (enums for this are defined in nsIFrame.h)
|
2006-04-26 02:01:07 +00:00
|
|
|
NS_IMETHOD GetDataForTableSelection(nsFrameSelection *aFrameSelection,
|
2002-03-22 15:25:08 +00:00
|
|
|
nsIPresShell *aPresShell, nsMouseEvent *aMouseEvent,
|
|
|
|
nsIContent **aParentContent, PRInt32 *aContentOffset,
|
|
|
|
PRInt32 *aTarget);
|
2000-03-16 23:45:39 +00:00
|
|
|
|
1999-06-01 23:04:13 +00:00
|
|
|
virtual PRBool ParentDisablesSelection() const;
|
|
|
|
|
2004-12-30 21:56:11 +00:00
|
|
|
// Fills aCursor with the appropriate information from ui
|
|
|
|
static void FillCursorInformationFromStyle(const nsStyleUserInterface* ui,
|
|
|
|
nsIFrame::Cursor& aCursor);
|
2004-09-28 18:37:50 +00:00
|
|
|
NS_IMETHOD DoLayout(nsBoxLayoutState& aBoxLayoutState);
|
|
|
|
|
|
|
|
#ifdef DEBUG_LAYOUT
|
|
|
|
virtual void GetBoxName(nsAutoString& aName);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual PRBool GetWasCollapsed(nsBoxLayoutState& aState);
|
|
|
|
virtual void SetWasCollapsed(nsBoxLayoutState& aState, PRBool aWas);
|
|
|
|
|
|
|
|
void InitBoxMetrics(PRBool aClear);
|
|
|
|
nsBoxLayoutMetrics* BoxMetrics() const;
|
|
|
|
|
2006-05-03 17:02:37 +00:00
|
|
|
// Fire DOM event. If no aContent argument use frame's mContent.
|
|
|
|
void FireDOMEvent(const nsAString& aDOMEventName, nsIContent *aContent = nsnull);
|
|
|
|
|
2004-09-28 18:37:50 +00:00
|
|
|
private:
|
|
|
|
nsresult BoxReflow(nsBoxLayoutState& aState,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
nsIRenderingContext* aRenderingContext,
|
2004-09-28 18:37:50 +00:00
|
|
|
nscoord aX,
|
|
|
|
nscoord aY,
|
|
|
|
nscoord aWidth,
|
|
|
|
nscoord aHeight,
|
|
|
|
PRBool aMoveFrame = PR_TRUE);
|
|
|
|
|
|
|
|
NS_IMETHODIMP RefreshSizeCache(nsBoxLayoutState& aState);
|
|
|
|
|
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);
|
|
|
|
};
|
|
|
|
|
2001-11-14 13:40:03 +00:00
|
|
|
// Start Display Reflow Debugging
|
2001-10-29 01:43:59 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
|
|
|
|
struct DR_cookie {
|
2004-07-31 23:15:21 +00:00
|
|
|
DR_cookie(nsPresContext* aPresContext,
|
2001-11-14 13:40:03 +00:00
|
|
|
nsIFrame* aFrame,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2001-10-29 01:43:59 +00:00
|
|
|
nsHTMLReflowMetrics& aMetrics,
|
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
~DR_cookie();
|
2001-11-27 01:45:46 +00:00
|
|
|
void Change() const;
|
2001-10-29 01:43:59 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
nsPresContext* mPresContext;
|
2001-10-29 01:43:59 +00:00
|
|
|
nsIFrame* mFrame;
|
|
|
|
const nsHTMLReflowState& mReflowState;
|
|
|
|
nsHTMLReflowMetrics& mMetrics;
|
|
|
|
nsReflowStatus& mStatus;
|
|
|
|
void* mValue;
|
|
|
|
};
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
|
|
|
|
struct DR_layout_cookie {
|
|
|
|
DR_layout_cookie(nsIFrame* aFrame);
|
|
|
|
~DR_layout_cookie();
|
|
|
|
|
|
|
|
nsIFrame* mFrame;
|
|
|
|
void* mValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DR_intrinsic_width_cookie {
|
|
|
|
DR_intrinsic_width_cookie(nsIFrame* aFrame, const char* aType,
|
|
|
|
nscoord& aResult);
|
|
|
|
~DR_intrinsic_width_cookie();
|
|
|
|
|
|
|
|
nsIFrame* mFrame;
|
|
|
|
const char* mType;
|
|
|
|
nscoord& mResult;
|
|
|
|
void* mValue;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct DR_intrinsic_size_cookie {
|
|
|
|
DR_intrinsic_size_cookie(nsIFrame* aFrame, const char* aType,
|
|
|
|
nsSize& aResult);
|
|
|
|
~DR_intrinsic_size_cookie();
|
|
|
|
|
|
|
|
nsIFrame* mFrame;
|
|
|
|
const char* mType;
|
|
|
|
nsSize& mResult;
|
|
|
|
void* mValue;
|
|
|
|
};
|
2001-10-29 01:43:59 +00:00
|
|
|
|
2001-11-14 13:40:03 +00:00
|
|
|
#define DISPLAY_REFLOW(dr_pres_context, dr_frame, dr_rf_state, dr_rf_metrics, dr_rf_status) \
|
|
|
|
DR_cookie dr_cookie(dr_pres_context, dr_frame, dr_rf_state, dr_rf_metrics, dr_rf_status);
|
2001-11-27 01:45:46 +00:00
|
|
|
#define DISPLAY_REFLOW_CHANGE() \
|
|
|
|
dr_cookie.Change();
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
#define DISPLAY_LAYOUT(dr_frame) \
|
|
|
|
DR_layout_cookie dr_cookie(dr_frame);
|
|
|
|
#define DISPLAY_MIN_WIDTH(dr_frame, dr_result) \
|
|
|
|
DR_intrinsic_width_cookie dr_cookie(dr_frame, "Min", dr_result)
|
|
|
|
#define DISPLAY_PREF_WIDTH(dr_frame, dr_result) \
|
|
|
|
DR_intrinsic_width_cookie dr_cookie(dr_frame, "Pref", dr_result)
|
|
|
|
#define DISPLAY_PREF_SIZE(dr_frame, dr_result) \
|
|
|
|
DR_intrinsic_size_cookie dr_cookie(dr_frame, "Pref", dr_result)
|
|
|
|
#define DISPLAY_MIN_SIZE(dr_frame, dr_result) \
|
|
|
|
DR_intrinsic_size_cookie dr_cookie(dr_frame, "Min", dr_result)
|
|
|
|
#define DISPLAY_MAX_SIZE(dr_frame, dr_result) \
|
|
|
|
DR_intrinsic_size_cookie dr_cookie(dr_frame, "Max", dr_result)
|
2001-10-29 01:43:59 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2001-11-14 13:40:03 +00:00
|
|
|
#define DISPLAY_REFLOW(dr_pres_context, dr_frame, dr_rf_state, dr_rf_metrics, dr_rf_status)
|
2001-11-27 01:45:46 +00:00
|
|
|
#define DISPLAY_REFLOW_CHANGE()
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
#define DISPLAY_LAYOUT(dr_frame) PR_BEGIN_MACRO PR_END_MACRO
|
|
|
|
#define DISPLAY_MIN_WIDTH(dr_frame, dr_result) PR_BEGIN_MACRO PR_END_MACRO
|
|
|
|
#define DISPLAY_PREF_WIDTH(dr_frame, dr_result) PR_BEGIN_MACRO PR_END_MACRO
|
|
|
|
#define DISPLAY_PREF_SIZE(dr_frame, dr_result) PR_BEGIN_MACRO PR_END_MACRO
|
|
|
|
#define DISPLAY_MIN_SIZE(dr_frame, dr_result) PR_BEGIN_MACRO PR_END_MACRO
|
|
|
|
#define DISPLAY_MAX_SIZE(dr_frame, dr_result) PR_BEGIN_MACRO PR_END_MACRO
|
2001-10-29 01:43:59 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
// End Display Reflow Debugging
|
|
|
|
|
2002-03-12 15:21:35 +00:00
|
|
|
// similar to NS_ENSURE_TRUE but with no return value
|
|
|
|
#define ENSURE_TRUE(x) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
if (!(x)) { \
|
|
|
|
NS_WARNING("ENSURE_TRUE(" #x ") failed"); \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
PR_END_MACRO
|
1998-04-13 20:24:54 +00:00
|
|
|
#endif /* nsFrame_h___ */
|