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


C++ CArchive::IsBufferEmpty方法代码示例

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


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

示例1: Serialize


//.........这里部分代码省略.........
			//pView->m_SettingFilePath = ar.m_strFileName;
			CString tempFilePath = ar.m_strFileName;

			int i = tempFilePath.ReverseFind('\\');//실행 파일 이름을 지우기 위해서 왼쪽에 있는 '/'를 찾는다.
			CString currPath = tempFilePath.Right(tempFilePath.GetLength() - i);
			tempFilePath = m_tclFilePath + currPath;
			
			pView->m_TclFilesListBox.GetText(lbIndex, execArg);
			i = execArg.ReverseFind('\\');//실행 파일 이름을 지우기 위해서 왼쪽에 있는 '/'를 찾는다.
			execArg = execArg.Right(execArg.GetLength() - i);// 파일이름과 확장자만 얻는다.
			execArg = m_tclFilePath + execArg;

			ar << execArg;

			// 다중 쉘API 호출시 창 확대
			((CMainFrame*)(pWnd->GetActiveFrame()))->SetWindowPos(NULL,0,0,1300,700,SWP_NOMOVE);
		}
		// 멀티커맨드라인 체그박스저장
		for(int lbIndex = 0; lbIndex < lbTclFilesCnt; lbIndex++)
		{
			ar << pView->m_TclFilesListBox.GetCheck(lbIndex);;
		}
		// 멀티커맨드라인라면 생략
		if(lbTclFilesCnt){
			// mtcl 창닫기
			ar << pView->m_MTCL_ExitCheckBox.GetCheck();
		}else{
			// 하위폴더 검색 유무
			ar << pView->m_ChkSubFolder.GetCheck();
			// 결과리스트 보기 유무
			ar << pView->m_ViewList.GetCheck();
			// 빈폴더 제거 유무
			ar << pView->m_EmptyFolderCheck.GetCheck();
			// stcl 창닫기
			ar << pView->m_ExitCheckBox.GetCheck();
		}
		//===================== 저장할 데이터를 이하에 구현=====================
	}
	else
	{
		// TODO: 여기에 로딩 코드를 추가합니다.

		BOOL isEmpty = ar.IsBufferEmpty();
		BOOL isMultiCommand = !(ar.m_strFileName.Right(5)).Compare(".mtcl");

		pView->m_FirstLoaded = FALSE;
		ar >> execArg;
		pView->SetDlgItemText(IDC_EDIT3, execArg);
		ar >> execArg;
		pView->SetDlgItemText(IDC_EXEC_FILE, execArg);
		ar >> execArg;
		pView->SetDlgItemText(IDC_SRC_FILE, execArg);
		ar >> execArg;
		pView->SetDlgItemText(IDC_PATH, execArg);
		ar >> execArg;
		pView->SetDlgItemText(IDC_EDIT4, execArg);


		/*if(!execArg.IsEmpty())
			pView->m_ExtName.SetCheck(TRUE);
		else
			pView->m_ExtName.SetCheck(FALSE);
		*/
		ar >> pView->m_ExecFileName;
		ar >> pView->m_PreCmdOptStr;
		
		int lbCnt = 0;
		
		ar >> lbCnt;
		pView->m_ListBox_Out.ResetContent();
		for(int lbIndex = 0; lbIndex < lbCnt; lbIndex++)
		{
			ar >> execArg;
			pView->m_ListBox_Out.AddString(execArg);
			
		}
		
		pView->SetDlgItemText(IDC_EDIT5, pView->m_PreCmdOptStr);

		pView->DisplayCommand(FALSE);

		pView->m_FirstLoaded = TRUE;
		
		int nCheck = 0;
		ar >> nCheck;
		pView->m_Check_EnableErrPop.SetCheck(nCheck);
		
		pView->SetDlgItemText(IDC_EDIT6, "");
		if(!ar.IsBufferEmpty())
		{	
			ar >> execArg;
			pView->SetDlgItemText(IDC_EDIT6, execArg);
		}
		
		pView->SetDlgItemText(IDC_EDIT7, "");
		if(!ar.IsBufferEmpty())
		{	
			ar >> execArg;
			pView->SetDlgItemText(IDC_EDIT7, execArg);
		}
开发者ID:JIStone,项目名称:totalcommandline,代码行数:101,代码来源:FormViewShellDoc.cpp


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