2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1998-04-30 17:57:09 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1998-04-30 17:57:09 +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-30 17:57:09 +00:00
|
|
|
*
|
1999-11-06 03:40:37 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* 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.
|
1999-11-06 03:40:37 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either 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 NPL, 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1998-04-30 17:57:09 +00:00
|
|
|
|
|
|
|
#ifndef nsITableLayoutStrategy_h__
|
|
|
|
#define nsITableLayoutStrategy_h__
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
|
2000-01-22 01:16:50 +00:00
|
|
|
class nsIPresContext;
|
1998-05-26 22:03:16 +00:00
|
|
|
class nsIStyleContext;
|
1998-10-02 04:10:00 +00:00
|
|
|
struct nsHTMLReflowState;
|
2000-02-12 01:55:40 +00:00
|
|
|
struct nsMargin;
|
1999-08-19 19:52:37 +00:00
|
|
|
class nsTableCellFrame;
|
|
|
|
class nsStyleCoord;
|
1999-10-02 00:02:54 +00:00
|
|
|
class nsISizeOfHandler;
|
1998-04-30 17:57:09 +00:00
|
|
|
|
|
|
|
class nsITableLayoutStrategy
|
|
|
|
{
|
|
|
|
public:
|
2000-03-24 08:29:21 +00:00
|
|
|
virtual ~nsITableLayoutStrategy() {};
|
1998-04-30 17:57:09 +00:00
|
|
|
|
1998-07-16 23:23:31 +00:00
|
|
|
/** call once every time any table thing changes (content, structure, or style)
|
2001-07-16 19:15:01 +00:00
|
|
|
* @param aPresContext - the presentation context
|
|
|
|
* @param aReflowState - the reflow state for mTableFrame
|
1998-07-16 23:23:31 +00:00
|
|
|
*/
|
2000-02-12 01:55:40 +00:00
|
|
|
virtual PRBool Initialize(nsIPresContext* aPresContext,
|
2001-07-16 19:15:01 +00:00
|
|
|
const nsHTMLReflowState& aReflowState)=0;
|
1998-07-16 23:23:31 +00:00
|
|
|
|
1998-04-30 17:57:09 +00:00
|
|
|
/** assign widths for each column, taking into account the table content, the effective style,
|
|
|
|
* the layout constraints, and the compatibility mode. Sets mColumnWidths as a side effect.
|
2001-07-16 19:15:01 +00:00
|
|
|
* @param aPresContext - the presentation context
|
|
|
|
* @param aReflowState - the reflow state for mTableFrame
|
1998-04-30 17:57:09 +00:00
|
|
|
*/
|
2000-01-22 01:16:50 +00:00
|
|
|
virtual PRBool BalanceColumnWidths(nsIPresContext* aPresContext,
|
2001-03-13 06:38:59 +00:00
|
|
|
const nsHTMLReflowState& aReflowState)=0;
|
1998-08-31 21:23:28 +00:00
|
|
|
|
2001-08-06 13:58:46 +00:00
|
|
|
/**
|
|
|
|
* Calculate the basis for percent width calculations of the table elements
|
|
|
|
* @param aReflowState - the reflow state of the table
|
|
|
|
* @param aAvailWidth - the available width for the table
|
|
|
|
* @param aPixelToTwips - the number of twips in a pixel.
|
|
|
|
* @return - the basis for percent calculations
|
|
|
|
*/
|
2002-02-19 15:48:28 +00:00
|
|
|
virtual nscoord CalcPctAdjTableWidth(nsIPresContext& aPresContext,
|
|
|
|
const nsHTMLReflowState& aReflowState,
|
2001-08-06 13:58:46 +00:00
|
|
|
nscoord aAvailWidth,
|
|
|
|
float aPixelToTwips)=0;
|
1999-10-02 00:02:54 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
virtual void SizeOf(nsISizeOfHandler* aSizer, PRUint32* aResult) const = 0;
|
|
|
|
#endif
|
1998-04-30 17:57:09 +00:00
|
|
|
};
|
|
|
|
|
1998-05-08 21:12:12 +00:00
|
|
|
#endif
|
|
|
|
|