📄 tablelayout.h
字号:
/*----------------------------------------------------------------------
Copyright (c) 1998 Gipsysoft. All Rights Reserved.
Please see the file "licence.txt" for licencing details.
File: tablelayout.cpp
Owner: russf@gipsysoft.com
Author: rich@woodbridgeinternalmed.com
Purpose: Lays out the cells of a table
----------------------------------------------------------------------*/
#ifndef HTMLTABLELAYOUT_H
#define HTMLTABLELAYOUT_H
#ifndef HTMLPARSE_H
#include "htmlparse.h"
#endif // HTMLPARSE_H
// Object used to lay out a table
class CHTMLTableLayout
{
public:
CHTMLTableLayout(CHTMLTable* ptab, CDrawContext& dc, int nMaxWidth, int nZoomLevel );
int GetTableWidth() const { return m_nTableWidth; }
int GetColumnWidth(int nCol )
{
ASSERT(nCol >= 0 && nCol < m_nCols);
return m_pTab->m_arrLayoutWidth[nCol];
}
private:
// Method is used to measure the contents of a document
CSize MeasureDocument(CHTMLDocument* pdoc, int nWidth);
// Determint extrema for a cell
void MeasureCell(CHTMLTableCell* pCell, int nCol);
void MeasureCells();
bool LayoutMaximum();
void GetDesiredWidths();
int CalculateTableSize();
int GetSpaceNeeded();
void LayoutAllSpace(int nSpaceAvailable, int nSpaceNeeded);
void LayoutSpaceProportional(int nSpaceAvailable, int nSpaceNeeded);
void Layout();
CHTMLTable* m_pTab;
int m_nMaxWidth;
CDrawContext& m_dc;
int m_nCols, m_nRows;
int m_nMinTableWidth, m_nMaxTableWidth;
int m_nTableWidth;
int m_nZoomLevel;
private:
CHTMLTableLayout();
CHTMLTableLayout( const CHTMLTableLayout& );
CHTMLTableLayout& operator =( const CHTMLTableLayout& );
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -