MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / OnClickedSelect

Method OnClickedSelect

cppcryptfs/ui/MountPropertyPage.cpp:697–717  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695
696
697void CMountPropertyPage::OnClickedSelect()
698{
699 // TODO: Add your control notification handler code here
700
701 CFolderDialog fdlg;
702
703 fdlg.m_bi.ulFlags |= BIF_NONEWFOLDERBUTTON;
704
705 if (fdlg.DoModal() == IDCANCEL)
706 return;
707
708 CString cpath = fdlg.GetPathName();
709
710 if (cpath.GetLength()) {
711 CWnd *pWnd = GetDlgItem(IDC_PATH);
712 if (pWnd)
713 pWnd->SetWindowTextW(cpath);
714 }
715
716
717}
718
719
720void CMountPropertyPage::OnClickedMount()

Callers

nothing calls this directly

Calls 2

GetPathNameMethod · 0.80
DoModalMethod · 0.45

Tested by

no test coverage detected