tablelayout.h
来自「hl2 source code. Do not use it illegal.」· C头文件 代码 · 共 62 行
H
62 行
/*----------------------------------------------------------------------
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 + =
减小字号Ctrl + -
显示快捷键?