2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* 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/
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* 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"),
|
|
|
|
* 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
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* 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
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
#ifndef CellData_h__
|
|
|
|
#define CellData_h__
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsCoord.h"
|
2010-04-27 09:15:02 -07:00
|
|
|
#include "gfxCore.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
class nsTableCellFrame;
|
|
|
|
class nsCellMap;
|
|
|
|
class BCCellData;
|
|
|
|
|
2008-07-16 08:02:18 -07:00
|
|
|
|
|
|
|
#define MAX_ROWSPAN 8190 // the cellmap can not handle more
|
|
|
|
#define MAX_COLSPAN 1000 // limit as IE and opera do
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
/**
|
2007-03-22 10:30:00 -07:00
|
|
|
* Data stored by nsCellMap to rationalize rowspan and colspan cells.
|
|
|
|
*/
|
|
|
|
class CellData
|
|
|
|
{
|
|
|
|
public:
|
2010-04-27 09:15:01 -07:00
|
|
|
/** Initialize the mOrigCell pointer
|
|
|
|
* @param aOrigCell the table cell frame which will be stored in mOrigCell.
|
|
|
|
*/
|
2007-03-22 10:30:00 -07:00
|
|
|
void Init(nsTableCellFrame* aCellFrame);
|
|
|
|
|
|
|
|
/** does a cell originate from here
|
|
|
|
* @return is true if a cell corresponds to this cellmap entry
|
|
|
|
*/
|
|
|
|
PRBool IsOrig() const;
|
|
|
|
|
|
|
|
/** is the celldata valid
|
2010-04-27 09:15:01 -07:00
|
|
|
* @return is true if no cell originates and the cell is not spanned by
|
2007-03-22 10:30:00 -07:00
|
|
|
* a row- or colspan. mBits are 0 in this case and mOrigCell is
|
|
|
|
* nsnull
|
|
|
|
*/
|
|
|
|
PRBool IsDead() const;
|
|
|
|
|
|
|
|
/** is the entry spanned by row- or a colspan
|
|
|
|
* @return is true if the entry is spanned by a row- or colspan
|
|
|
|
*/
|
|
|
|
PRBool IsSpan() const;
|
|
|
|
|
|
|
|
/** is the entry spanned by rowspan
|
|
|
|
* @return is true if the entry is spanned by a rowspan
|
|
|
|
*/
|
|
|
|
PRBool IsRowSpan() const;
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** is the entry spanned by a zero rowspan
|
2010-04-27 09:15:01 -07:00
|
|
|
* zero rowspans span all cells starting from the originating cell down to
|
2007-03-22 10:30:00 -07:00
|
|
|
* the end of the rowgroup or a cell originating in the same column
|
|
|
|
* @return is true if the entry is spanned by a zero rowspan
|
|
|
|
*/
|
|
|
|
PRBool IsZeroRowSpan() const;
|
|
|
|
|
|
|
|
/** mark the current entry as spanned by a zero rowspan
|
|
|
|
* @param aIsZero if true mark the entry as covered by a zero rowspan
|
|
|
|
*/
|
|
|
|
void SetZeroRowSpan(PRBool aIsZero);
|
|
|
|
|
|
|
|
/** get the distance from the current entry to the corresponding origin of the rowspan
|
|
|
|
* @return containing the distance in the column to the originating cell
|
|
|
|
*/
|
|
|
|
PRUint32 GetRowSpanOffset() const;
|
|
|
|
|
|
|
|
/** set the distance from the current entry to the corresponding origin of the rowspan
|
|
|
|
* @param the distance in the column to the originating cell
|
|
|
|
*/
|
|
|
|
void SetRowSpanOffset(PRUint32 aSpan);
|
|
|
|
|
|
|
|
/** is the entry spanned by colspan
|
|
|
|
* @return is true if the entry is spanned by a colspan
|
|
|
|
*/
|
|
|
|
PRBool IsColSpan() const;
|
|
|
|
|
|
|
|
/** is the entry spanned by a zero colspan
|
2010-04-27 09:15:01 -07:00
|
|
|
* zero colspans span all cells starting from the originating cell towards
|
|
|
|
* the end of the colgroup or a cell originating in the same row
|
2007-03-22 10:30:00 -07:00
|
|
|
* or a rowspanned entry
|
|
|
|
* @return is true if the entry is spanned by a zero colspan
|
|
|
|
*/
|
|
|
|
PRBool IsZeroColSpan() const;
|
|
|
|
|
|
|
|
/** mark the current entry as spanned by a zero colspan
|
|
|
|
* @param aIsZero if true mark the entry as covered by a zero colspan
|
|
|
|
*/
|
|
|
|
void SetZeroColSpan(PRBool aIsZero);
|
|
|
|
|
|
|
|
/** get the distance from the current entry to the corresponding origin of the colspan
|
|
|
|
* @return containing the distance in the row to the originating cell
|
|
|
|
*/
|
|
|
|
PRUint32 GetColSpanOffset() const;
|
|
|
|
|
|
|
|
/** set the distance from the current entry to the corresponding origin of the colspan
|
|
|
|
* @param the distance in the column to the originating cell
|
|
|
|
*/
|
|
|
|
void SetColSpanOffset(PRUint32 aSpan);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/** is the entry spanned by a row- and a colspan
|
|
|
|
* @return is true if the entry is spanned by a row- and a colspan
|
|
|
|
*/
|
|
|
|
PRBool IsOverlap() const;
|
|
|
|
|
|
|
|
/** mark the current entry as spanned by a row- and a colspan
|
|
|
|
* @param aOverlap if true mark the entry as covered by a row- and a colspan
|
|
|
|
*/
|
|
|
|
void SetOverlap(PRBool aOverlap);
|
2010-04-27 09:15:01 -07:00
|
|
|
|
|
|
|
/** get the table cell frame for this entry
|
|
|
|
* @return a pointer to the cellframe, this will be nsnull when the entry
|
2007-03-22 10:30:00 -07:00
|
|
|
* is only a spanned entry
|
|
|
|
*/
|
|
|
|
nsTableCellFrame* GetCellFrame() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class nsCellMap;
|
|
|
|
friend class BCCellData;
|
|
|
|
|
|
|
|
/** constructor.
|
2010-04-27 09:15:01 -07:00
|
|
|
* @param aOrigCell the table cell frame which will be stored in mOrigCell.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
|
|
|
CellData(nsTableCellFrame* aOrigCell); // implemented in nsCellMap.cpp
|
|
|
|
|
|
|
|
/** destructor */
|
|
|
|
~CellData(); // implemented in nsCellMap.cpp
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
|
|
|
|
// this union relies on the assumption that an object (not primitive type) does
|
2010-04-27 09:15:01 -07:00
|
|
|
// not start on an odd bit boundary. If mSpan is 0 then mOrigCell is in effect
|
2007-03-22 10:30:00 -07:00
|
|
|
// and the data does not represent a span. If mSpan is 1, then mBits is in
|
|
|
|
// effect and the data represents a span.
|
2010-04-27 09:15:01 -07:00
|
|
|
// mBits must be an unsigned long because it must match the size of
|
2007-03-22 10:30:00 -07:00
|
|
|
// mOrigCell on both 32- and 64-bit platforms.
|
|
|
|
union {
|
|
|
|
nsTableCellFrame* mOrigCell;
|
|
|
|
unsigned long mBits;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// Border Collapsing Cell Data
|
2010-04-27 09:15:01 -07:00
|
|
|
enum BCBorderOwner
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
eTableOwner = 0,
|
2010-04-27 09:15:01 -07:00
|
|
|
eColGroupOwner = 1,
|
|
|
|
eAjaColGroupOwner = 2, // col group to the left
|
2007-03-22 10:30:00 -07:00
|
|
|
eColOwner = 3,
|
|
|
|
eAjaColOwner = 4, // col to the left
|
2010-04-27 09:15:01 -07:00
|
|
|
eRowGroupOwner = 5,
|
2007-03-22 10:30:00 -07:00
|
|
|
eAjaRowGroupOwner = 6, // row group above
|
2010-04-27 09:15:01 -07:00
|
|
|
eRowOwner = 7,
|
2007-03-22 10:30:00 -07:00
|
|
|
eAjaRowOwner = 8, // row above
|
|
|
|
eCellOwner = 9,
|
|
|
|
eAjaCellOwner = 10 // cell to the top or to the left
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef PRUint16 BCPixelSize;
|
|
|
|
|
|
|
|
// These are the max sizes that are stored. If they are exceeded, then the max is stored and
|
|
|
|
// the actual value is computed when needed.
|
|
|
|
#define MAX_BORDER_WIDTH nscoord(PR_BITMASK(sizeof(BCPixelSize) * 8))
|
|
|
|
|
2010-07-08 17:16:52 -07:00
|
|
|
static inline nscoord
|
|
|
|
BC_BORDER_TOP_HALF_COORD(PRInt32 p2t, PRUint16 px) { return (px - px / 2) * p2t; }
|
|
|
|
static inline nscoord
|
|
|
|
BC_BORDER_RIGHT_HALF_COORD(PRInt32 p2t, PRUint16 px) { return ( px / 2) * p2t; }
|
|
|
|
static inline nscoord
|
|
|
|
BC_BORDER_BOTTOM_HALF_COORD(PRInt32 p2t, PRUint16 px) { return ( px / 2) * p2t; }
|
|
|
|
static inline nscoord
|
|
|
|
BC_BORDER_LEFT_HALF_COORD(PRInt32 p2t, PRUint16 px) { return (px - px / 2) * p2t; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#define BC_BORDER_TOP_HALF(px) ((px) - (px) / 2)
|
|
|
|
#define BC_BORDER_RIGHT_HALF(px) ((px) / 2)
|
|
|
|
#define BC_BORDER_BOTTOM_HALF(px) ((px) / 2)
|
|
|
|
#define BC_BORDER_LEFT_HALF(px) ((px) - (px) / 2)
|
|
|
|
|
|
|
|
// BCData stores the top and left border info and the corner connecting the two.
|
|
|
|
class BCData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BCData();
|
|
|
|
|
|
|
|
~BCData();
|
|
|
|
|
|
|
|
nscoord GetLeftEdge(BCBorderOwner& aOwner,
|
|
|
|
PRBool& aStart) const;
|
|
|
|
|
|
|
|
void SetLeftEdge(BCBorderOwner aOwner,
|
|
|
|
nscoord aSize,
|
|
|
|
PRBool aStart);
|
|
|
|
|
|
|
|
nscoord GetTopEdge(BCBorderOwner& aOwner,
|
|
|
|
PRBool& aStart) const;
|
|
|
|
|
|
|
|
void SetTopEdge(BCBorderOwner aOwner,
|
|
|
|
nscoord aSize,
|
|
|
|
PRBool aStart);
|
|
|
|
|
2010-04-27 09:15:02 -07:00
|
|
|
BCPixelSize GetCorner(mozilla::css::Side& aCornerOwner,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRPackedBool& aBevel) const;
|
|
|
|
|
|
|
|
void SetCorner(BCPixelSize aSubSize,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side aOwner,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool aBevel);
|
|
|
|
|
|
|
|
PRBool IsLeftStart() const;
|
|
|
|
|
|
|
|
void SetLeftStart(PRBool aValue);
|
|
|
|
|
|
|
|
PRBool IsTopStart() const;
|
|
|
|
|
|
|
|
void SetTopStart(PRBool aValue);
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
BCPixelSize mLeftSize; // size in pixels of left border
|
|
|
|
BCPixelSize mTopSize; // size in pixels of top border
|
|
|
|
BCPixelSize mCornerSubSize; // size of the largest border not in the
|
|
|
|
// dominant plane (for example, if corner is
|
|
|
|
// owned by the segment to its top or bottom,
|
|
|
|
// then the size is the max of the border
|
|
|
|
// sizes of the segments to its left or right.
|
2010-04-27 09:15:01 -07:00
|
|
|
unsigned mLeftOwner: 4; // owner of left border
|
|
|
|
unsigned mTopOwner: 4; // owner of top border
|
2007-03-22 10:30:00 -07:00
|
|
|
unsigned mLeftStart: 1; // set if this is the start of a vertical border segment
|
|
|
|
unsigned mTopStart: 1; // set if this is the start of a horizontal border segment
|
2010-04-27 09:15:02 -07:00
|
|
|
unsigned mCornerSide: 2; // mozilla::css::Side of the owner of the upper left corner relative to the corner
|
2007-03-22 10:30:00 -07:00
|
|
|
unsigned mCornerBevel: 1; // is the corner beveled (only two segments, perpendicular, not dashed or dotted).
|
|
|
|
};
|
|
|
|
|
|
|
|
// BCCellData entries replace CellData entries in the cell map if the border collapsing model is in
|
2010-04-27 09:15:01 -07:00
|
|
|
// effect. BCData for a row and col entry contains the left and top borders of cell at that row and
|
2007-03-22 10:30:00 -07:00
|
|
|
// col and the corner connecting the two. The right borders of the cells in the last col and the bottom
|
|
|
|
// borders of the last row are stored in separate BCData entries in the cell map.
|
|
|
|
class BCCellData : public CellData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BCCellData(nsTableCellFrame* aOrigCell);
|
|
|
|
~BCCellData();
|
|
|
|
|
|
|
|
BCData mData;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
#define SPAN 0x00000001 // there a row or col span
|
2007-03-22 10:30:00 -07:00
|
|
|
#define ROW_SPAN 0x00000002 // there is a row span
|
|
|
|
#define ROW_SPAN_0 0x00000004 // the row span is 0
|
|
|
|
#define ROW_SPAN_OFFSET 0x0000FFF8 // the row offset to the data containing the original cell
|
|
|
|
#define COL_SPAN 0x00010000 // there is a col span
|
|
|
|
#define COL_SPAN_0 0x00020000 // the col span is 0
|
|
|
|
#define OVERLAP 0x00040000 // there is a row span and col span but no by same cell
|
|
|
|
#define COL_SPAN_OFFSET 0xFFF80000 // the col offset to the data containing the original cell
|
|
|
|
#define ROW_SPAN_SHIFT 3 // num bits to shift to get right justified row span
|
|
|
|
#define COL_SPAN_SHIFT 19 // num bits to shift to get right justified col span
|
|
|
|
|
|
|
|
inline nsTableCellFrame* CellData::GetCellFrame() const
|
|
|
|
{
|
|
|
|
if (SPAN != (SPAN & mBits)) {
|
|
|
|
return mOrigCell;
|
|
|
|
}
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
inline void CellData::Init(nsTableCellFrame* aCellFrame)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mOrigCell = aCellFrame;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsOrig() const
|
|
|
|
{
|
|
|
|
return ((nsnull != mOrigCell) && (SPAN != (SPAN & mBits)));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsDead() const
|
|
|
|
{
|
|
|
|
return (0 == mBits);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsSpan() const
|
|
|
|
{
|
|
|
|
return (SPAN == (SPAN & mBits));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsRowSpan() const
|
|
|
|
{
|
2010-04-27 09:15:01 -07:00
|
|
|
return (SPAN == (SPAN & mBits)) &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(ROW_SPAN == (ROW_SPAN & mBits));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsZeroRowSpan() const
|
|
|
|
{
|
2010-04-27 09:15:01 -07:00
|
|
|
return (SPAN == (SPAN & mBits)) &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(ROW_SPAN == (ROW_SPAN & mBits)) &&
|
|
|
|
(ROW_SPAN_0 == (ROW_SPAN_0 & mBits));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void CellData::SetZeroRowSpan(PRBool aIsZeroSpan)
|
|
|
|
{
|
|
|
|
if (SPAN == (SPAN & mBits)) {
|
|
|
|
if (aIsZeroSpan) {
|
|
|
|
mBits |= ROW_SPAN_0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mBits &= ~ROW_SPAN_0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRUint32 CellData::GetRowSpanOffset() const
|
|
|
|
{
|
|
|
|
if ((SPAN == (SPAN & mBits)) && ((ROW_SPAN == (ROW_SPAN & mBits)))) {
|
|
|
|
return (PRUint32)((mBits & ROW_SPAN_OFFSET) >> ROW_SPAN_SHIFT);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
inline void CellData::SetRowSpanOffset(PRUint32 aSpan)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mBits &= ~ROW_SPAN_OFFSET;
|
|
|
|
mBits |= (aSpan << ROW_SPAN_SHIFT);
|
|
|
|
mBits |= SPAN;
|
|
|
|
mBits |= ROW_SPAN;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsColSpan() const
|
|
|
|
{
|
2010-04-27 09:15:01 -07:00
|
|
|
return (SPAN == (SPAN & mBits)) &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(COL_SPAN == (COL_SPAN & mBits));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsZeroColSpan() const
|
|
|
|
{
|
2010-04-27 09:15:01 -07:00
|
|
|
return (SPAN == (SPAN & mBits)) &&
|
2007-03-22 10:30:00 -07:00
|
|
|
(COL_SPAN == (COL_SPAN & mBits)) &&
|
|
|
|
(COL_SPAN_0 == (COL_SPAN_0 & mBits));
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void CellData::SetZeroColSpan(PRBool aIsZeroSpan)
|
|
|
|
{
|
|
|
|
if (SPAN == (SPAN & mBits)) {
|
|
|
|
if (aIsZeroSpan) {
|
|
|
|
mBits |= COL_SPAN_0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mBits &= ~COL_SPAN_0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRUint32 CellData::GetColSpanOffset() const
|
|
|
|
{
|
|
|
|
if ((SPAN == (SPAN & mBits)) && ((COL_SPAN == (COL_SPAN & mBits)))) {
|
|
|
|
return (PRUint32)((mBits & COL_SPAN_OFFSET) >> COL_SPAN_SHIFT);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
inline void CellData::SetColSpanOffset(PRUint32 aSpan)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mBits &= ~COL_SPAN_OFFSET;
|
|
|
|
mBits |= (aSpan << COL_SPAN_SHIFT);
|
|
|
|
|
|
|
|
mBits |= SPAN;
|
|
|
|
mBits |= COL_SPAN;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool CellData::IsOverlap() const
|
|
|
|
{
|
|
|
|
return (SPAN == (SPAN & mBits)) && (OVERLAP == (OVERLAP & mBits));
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:01 -07:00
|
|
|
inline void CellData::SetOverlap(PRBool aOverlap)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (SPAN == (SPAN & mBits)) {
|
|
|
|
if (aOverlap) {
|
|
|
|
mBits |= OVERLAP;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mBits &= ~OVERLAP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline BCData::BCData()
|
|
|
|
{
|
|
|
|
mLeftOwner = mTopOwner = eCellOwner;
|
|
|
|
mLeftStart = mTopStart = 1;
|
2010-04-27 09:15:02 -07:00
|
|
|
mLeftSize = mCornerSubSize = mTopSize = 0;
|
|
|
|
mCornerSide = NS_SIDE_TOP;
|
2007-03-22 10:30:00 -07:00
|
|
|
mCornerBevel = PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline BCData::~BCData()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nscoord BCData::GetLeftEdge(BCBorderOwner& aOwner,
|
|
|
|
PRBool& aStart) const
|
|
|
|
{
|
|
|
|
aOwner = (BCBorderOwner)mLeftOwner;
|
|
|
|
aStart = (PRBool)mLeftStart;
|
|
|
|
|
|
|
|
return (nscoord)mLeftSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void BCData::SetLeftEdge(BCBorderOwner aOwner,
|
|
|
|
nscoord aSize,
|
|
|
|
PRBool aStart)
|
|
|
|
{
|
|
|
|
mLeftOwner = aOwner;
|
|
|
|
mLeftSize = (aSize > MAX_BORDER_WIDTH) ? MAX_BORDER_WIDTH : aSize;
|
|
|
|
mLeftStart = aStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nscoord BCData::GetTopEdge(BCBorderOwner& aOwner,
|
|
|
|
PRBool& aStart) const
|
|
|
|
{
|
|
|
|
aOwner = (BCBorderOwner)mTopOwner;
|
|
|
|
aStart = (PRBool)mTopStart;
|
|
|
|
|
|
|
|
return (nscoord)mTopSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void BCData::SetTopEdge(BCBorderOwner aOwner,
|
|
|
|
nscoord aSize,
|
|
|
|
PRBool aStart)
|
|
|
|
{
|
|
|
|
mTopOwner = aOwner;
|
|
|
|
mTopSize = (aSize > MAX_BORDER_WIDTH) ? MAX_BORDER_WIDTH : aSize;
|
|
|
|
mTopStart = aStart;
|
|
|
|
}
|
|
|
|
|
2010-04-27 09:15:02 -07:00
|
|
|
inline BCPixelSize BCData::GetCorner(mozilla::css::Side& aOwnerSide,
|
|
|
|
PRPackedBool& aBevel) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2010-04-27 09:15:02 -07:00
|
|
|
aOwnerSide = mozilla::css::Side(mCornerSide);
|
2007-03-22 10:30:00 -07:00
|
|
|
aBevel = (PRBool)mCornerBevel;
|
|
|
|
return mCornerSubSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void BCData::SetCorner(BCPixelSize aSubSize,
|
2010-04-27 09:15:02 -07:00
|
|
|
mozilla::css::Side aOwnerSide,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool aBevel)
|
|
|
|
{
|
|
|
|
mCornerSubSize = aSubSize;
|
|
|
|
mCornerSide = aOwnerSide;
|
|
|
|
mCornerBevel = aBevel;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool BCData::IsLeftStart() const
|
|
|
|
{
|
|
|
|
return (PRBool)mLeftStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void BCData::SetLeftStart(PRBool aValue)
|
|
|
|
{
|
|
|
|
mLeftStart = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline PRBool BCData::IsTopStart() const
|
|
|
|
{
|
|
|
|
return (PRBool)mTopStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void BCData::SetTopStart(PRBool aValue)
|
|
|
|
{
|
|
|
|
mTopStart = aValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|