2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-02-10 03:38:01 +03:00
|
|
|
#ifndef nsITableCellLayout_h__
|
|
|
|
#define nsITableCellLayout_h__
|
|
|
|
|
2009-01-12 22:20:59 +03:00
|
|
|
#include "nsQueryFrame.h"
|
1999-02-10 03:38:01 +03:00
|
|
|
|
2017-06-17 03:49:09 +03:00
|
|
|
#define MAX_ROWSPAN 65534 // the cellmap can not handle more.
|
|
|
|
#define MAX_COLSPAN \
|
|
|
|
1000 // limit as IE and opera do. If this ever changes,
|
|
|
|
// change COL_SPAN_OFFSET/COL_SPAN_SHIFT accordingly.
|
|
|
|
|
1999-02-10 03:38:01 +03:00
|
|
|
/**
|
|
|
|
* nsITableCellLayout
|
|
|
|
* interface for layout objects that act like table cells.
|
2017-10-17 22:39:36 +03:00
|
|
|
* XXXbz This interface should really go away...
|
1999-02-10 03:38:01 +03:00
|
|
|
*
|
|
|
|
* @author sclark
|
|
|
|
*/
|
2009-01-12 22:20:59 +03:00
|
|
|
class nsITableCellLayout {
|
1999-02-10 03:38:01 +03:00
|
|
|
public:
|
2009-09-12 20:49:24 +04:00
|
|
|
NS_DECL_QUERYFRAME_TARGET(nsITableCellLayout)
|
1999-02-10 03:38:01 +03:00
|
|
|
|
1999-08-04 06:04:45 +04:00
|
|
|
/** return the mapped cell's row and column indexes (starting at 0 for each)
|
|
|
|
*/
|
2019-05-01 11:47:10 +03:00
|
|
|
NS_IMETHOD GetCellIndexes(int32_t& aRowIndex, int32_t& aColIndex) = 0;
|
1999-02-10 03:38:01 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|