Lines Matching refs:pathinfo
728 pathinfo = m_info->pathinfo; in font_path_dialog()
802 DDX_Text(pDX, IDC_FONT_PATH, pathinfo.pathname); in DoDataExchange()
830 SetDlgItemText(IDC_FONT_PATH, pathinfo.pathname); in DoDataExchange()
893 SaveToPathInfo(pathinfo, pathname); in OnBnClickedBrowse()
895 SetDlgItemText(IDC_FONT_PATH, pathinfo.pathname); in OnBnClickedBrowse()
944 if (pathinfo.pathname.IsEmpty()) in OnBnClickedOk()
975 m_info->pathinfo = pathinfo; in OnBnClickedOk()
1026 switch(pathinfo.pathtype) in SetPathPrefix()
1046 if (!pathinfo.pathname.IsEmpty()) in SetPathProjectRelative()
1048 CString abspath = MakeAbsolutePathname(pathinfo); in SetPathProjectRelative()
1049 pathinfo.pathtype = PATH_TYPE_PROJECT_RELATIVE; in SetPathProjectRelative()
1050 SaveToPathInfo(pathinfo, abspath); in SetPathProjectRelative()
1051 SetDlgItemText(IDC_FONT_PATH, pathinfo.pathname); in SetPathProjectRelative()
1058 if (!pathinfo.pathname.IsEmpty()) in SetPathStudioRelative()
1060 CString abspath = MakeAbsolutePathname(pathinfo); in SetPathStudioRelative()
1061 pathinfo.pathtype = PATH_TYPE_INSTALL_RELATIVE; in SetPathStudioRelative()
1062 SaveToPathInfo(pathinfo, abspath); in SetPathStudioRelative()
1063 SetDlgItemText(IDC_FONT_PATH, pathinfo.pathname); in SetPathStudioRelative()
1070 if (!pathinfo.pathname.IsEmpty()) in SetPathAbsolute()
1072 CString abspath = MakeAbsolutePathname(pathinfo); in SetPathAbsolute()
1073 pathinfo.pathtype = PATH_TYPE_ABSOLUTE; in SetPathAbsolute()
1074 SaveToPathInfo(pathinfo, abspath); in SetPathAbsolute()
1075 SetDlgItemText(IDC_FONT_PATH, pathinfo.pathname); in SetPathAbsolute()
1082 GetDlgItemText(IDC_FONT_PATH, pathinfo.pathname); in OnKillFontPathEdit()
1092 if (m_info->is_default && pathinfo.pathname.IsEmpty()) in OnPathnameChange()