当前位置: 首页>>代码示例>>C++>>正文


C++ CHexEditApp::WriteProfileInt方法代码示例

本文整理汇总了C++中CHexEditApp::WriteProfileInt方法的典型用法代码示例。如果您正苦于以下问题:C++ CHexEditApp::WriteProfileInt方法的具体用法?C++ CHexEditApp::WriteProfileInt怎么用?C++ CHexEditApp::WriteProfileInt使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CHexEditApp的用法示例。


在下文中一共展示了CHexEditApp::WriteProfileInt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: OnFileNameOK

BOOL CHexFileDialog::OnFileNameOK()
{
	// Remember current window pos for when window is reopened
	CRect rr;
	GetParent()->GetWindowRect(&rr);
	theApp.WriteProfileInt("Window-Settings", strName+"X1", rr.left);
	theApp.WriteProfileInt("Window-Settings", strName+"Y1", rr.top);
	theApp.WriteProfileInt("Window-Settings", strName+"X2", rr.right);
	theApp.WriteProfileInt("Window-Settings", strName+"Y2", rr.bottom);

	// Remember current list view mode
	ASSERT(GetParent() != NULL);
	CWnd *psdv  = FindWindowEx(GetParent()->m_hWnd, NULL, "SHELLDLL_DefView", NULL);
	ASSERT(psdv != NULL);
	CWnd *plv   = FindWindowEx(psdv->m_hWnd, NULL, "SysListView32", NULL);
	ASSERT(plv != NULL);

	int mode = 0;
	switch (plv->SendMessage(LVM_FIRST + 143 /*LVM_GETVIEW*/))
	{
	case LVS_ICON:
	case LVS_SMALLICON:
		mode = ICON;
		break;
	case LVS_REPORT:
		mode = REPORT;
		break;
	case LVS_LIST:
		mode = LIST;
		break;
	default:
		mode = TILE;
		break;
	}
	theApp.WriteProfileInt("Window-Settings", strName+"Mode", mode);

	return CFileDialog::OnFileNameOK();
}
开发者ID:KB3NZQ,项目名称:hexedit4,代码行数:38,代码来源:Dialog.cpp


注:本文中的CHexEditApp::WriteProfileInt方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。