本文整理汇总了C++中CGridCellBase::GetFont方法的典型用法代码示例。如果您正苦于以下问题:C++ CGridCellBase::GetFont方法的具体用法?C++ CGridCellBase::GetFont怎么用?C++ CGridCellBase::GetFont使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CGridCellBase
的用法示例。
在下文中一共展示了CGridCellBase::GetFont方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetGrid
void CGridCellBase::operator=(const CGridCellBase& cell)
{
SetGrid(cell.GetGrid()); // do first in case of dependencies
SetText(cell.GetText());
SetImage(cell.GetImage());
SetData(cell.GetData());
SetState(cell.GetState());
SetFormat(cell.GetFormat());
SetTextClr(cell.GetTextClr());
SetBackClr(cell.GetBackClr());
SetFont(cell.IsDefaultFont()? NULL : cell.GetFont());
SetMargin(cell.GetMargin());
}
示例2: InsertInstrument
void CInstrumentGridCtrl::InsertInstrument(int rowIndex, const Instrument& instrument){
int columnIndex = 0;
GV_ITEM item;
item.mask = GVIF_TEXT;
item.row = rowIndex;
item.col = columnIndex;
item.strText = DataConverter::ConvertIntToString(rowIndex).c_str();
this->SetItem(&item);
columnIndex++;
item.col = columnIndex;
item.strText = instrument.GetInstrumentType().c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = instrument.GetInstrumentName().c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = instrument.GetInstrumentCode().c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = DataConverter::ConvertIntToString(instrument.GetContract().GetFeedingSourceID()).c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
item.col = columnIndex;
item.strText = DataConverter::ConvertIntToString(instrument.GetLimitOrderBook().GetFeedingSourceID()).c_str();
this->SetItem(&item);
this->SetItemState(rowIndex, columnIndex, GVIS_READONLY);
columnIndex++;
for(int i=0; i<this->columnCount; i++){
CGridCellBase* cellBase = this->GetCell(rowIndex, i);
LOGFONT* tempLogFont = cellBase->GetFont();
tempLogFont->lfHeight= this->fontSize;
cellBase->SetFont(tempLogFont);
}
}
示例3: InitHeader
void CInstrumentGridCtrl::InitHeader(){
const tchar* columnTitles[] = {_T("Type"), _T("Name"), _T("Code"), _T("Contract"), _T("LimitOrderBook")};
const COLORREF GREY = RGB(160, 160, 160);
int colCount = this->GetColumnCount();
for (int i = 0; i < colCount; i++){
GV_ITEM item;
item.mask = GVIF_TEXT;
item.row = 0;
item.col = i;
item.crBkClr = GREY;
item.strText = columnTitles[i];
BOOL temp = this->SetItem(&item);
CGridCellBase* cellBase = this->GetCell(0, i);
LOGFONT* tempLogFont = cellBase->GetFont();
tempLogFont->lfHeight= this->fontSize;;
cellBase->SetFont(tempLogFont);
}
}
示例4: SetGrid
void CGridCellBase::operator=( CGridCellBase& cell)
{
if (this == &cell) return;
SetGrid(cell.GetGrid()); // do first in case of dependencies
SetText(cell.GetText());
SetImage(cell.GetImage());
SetData(cell.GetData());
SetState(cell.GetState());
SetFormat(cell.GetFormat());
SetTextClr(cell.GetTextClr());
SetBackClr(cell.GetBackClr());
SetFont(cell.IsDefaultFont()? NULL : cell.GetFont());
SetMargin(cell.GetMargin());
//Used for merge cells
//by Huang Wei
SetMergeCellID(cell.GetMergeCellID());
SetMergeRange(cell.GetMergeRange());
Show(cell.IsShow());
}