123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- // stdafx.cpp : source file that includes just the standard includes
- // DBServer.pch will be the pre-compiled header
- // stdafx.obj will contain the pre-compiled type information
- #include "stdafx.h"
- /********************************************************************/
- /* */
- /* Function name : BrowseForFolder */
- /* Description : Browse for folder using SHBrowseForFolder. */
- /* */
- /********************************************************************/
- CString BrowseForFolder(HWND hWnd, LPCSTR lpszTitle, UINT nFlags)
- {
- // We're going to use the shell to display a
- // "Choose Directory" dialog box for the user.
- CString strResult = "";
-
- LPMALLOC lpMalloc;
-
- if (::SHGetMalloc(&lpMalloc) != NOERROR)
- {
- // failed to get allocator
- return strResult;
- }
- char szBuffer[_MAX_PATH];
- char szDisplayName[_MAX_PATH];
- BROWSEINFO browseInfo;
- browseInfo.hwndOwner = hWnd;
- // set root at Desktop
- browseInfo.pidlRoot = NULL;
- browseInfo.pszDisplayName = szDisplayName;
- browseInfo.lpszTitle = lpszTitle;
- browseInfo.ulFlags = nFlags;
- browseInfo.lpfn = NULL;
- browseInfo.lParam = 0;
-
- LPITEMIDLIST lpItemIDList;
- if ((lpItemIDList = ::SHBrowseForFolder(&browseInfo)) != NULL)
- {
- // Get the path of the selected folder from the item ID list.
- if (::SHGetPathFromIDList(lpItemIDList, szBuffer))
- {
- // At this point, szBuffer contains the path the user chose.
- if (szBuffer[0] == '\0')
- {
- // SHGetPathFromIDList failed, or SHBrowseForFolder failed.
- AfxMessageBox("Failed to get directory", MB_ICONSTOP|MB_OK);
- return strResult;
- }
-
- // We have a path in szBuffer!
- strResult = szBuffer;
- return strResult;
- }
- else
- {
- // The thing referred to by lpItemIDList
- // might not have been a file system object.
- // For whatever reason, SHGetPathFromIDList didn't work!
- AfxMessageBox("Failed to get directory", MB_ICONSTOP|MB_OK);
- return strResult; // strResult is empty
- }
- lpMalloc->Free(lpItemIDList);
- lpMalloc->Release();
- }
- return strResult;
- }
- void DoEvents()
- {
- MSG msg;
- // window message
- while (PeekMessage(&msg,NULL,NULL,NULL,PM_REMOVE))
- {
- TranslateMessage(&msg);
- DispatchMessage(&msg);
- }
- }
- /********************************************************************/
- /* */
- /* Function name : GetAppDir */
- /* Description : Get application directory. */
- /* */
- /********************************************************************/
- void GetAppDir(CString& strAppDir)
- {
- TCHAR szFullPath[MAX_PATH];
- TCHAR szDir[_MAX_DIR];
- TCHAR szDrive[_MAX_DRIVE];
- // Get application's full path.
- ::GetModuleFileName(NULL, szFullPath, MAX_PATH);
- // Break full path into seperate components.
- _splitpath(szFullPath, szDrive, szDir, NULL, NULL);
- // Store application's drive and path
- strAppDir.Format(_T("%s%s"), szDrive, szDir);
- }
- PFNSHGETFOLDERPATHA GetFuncPtr_SHGetFolderPathA()
- {
- static HMODULE hMod = NULL;
- PFNSHGETFOLDERPATHA pSHGetFolderPath = NULL;
- // Load SHFolder.dll only once
- if (!hMod)
- hMod = LoadLibrary("SHFolder.dll");
- // Obtain a pointer to the SHGetFolderPathA function
- if (hMod)
- pSHGetFolderPath = (PFNSHGETFOLDERPATHA)GetProcAddress(hMod, "SHGetFolderPathA");
- return pSHGetFolderPath;
- }
- /********************************************************************/
- /* */
- /* Function name : CreateStartMenuShortcut */
- /* Description : Create a shortcut using the IShellLink interface.*/
- /* */
- /********************************************************************/
- HRESULT CreateStartMenuShortcut(LPSTR lpszShortcutFile, LPSTR lpszDescription, LPTSTR lpszRelativeFolder)
- {
- HRESULT hr;
- PFNSHGETFOLDERPATHA pSHGetFolderPath = NULL;
- TCHAR lpszLink[MAX_PATH];
- BOOL bFound = FALSE;
- pSHGetFolderPath = GetFuncPtr_SHGetFolderPathA();
- // Find the current user's Start Menu Programs folder
- if (pSHGetFolderPath)
- bFound = SUCCEEDED(pSHGetFolderPath(NULL, CSIDL_PROGRAMS, NULL, 0, lpszLink));
- if (bFound)
- {
- // Proceed to create the shortcut
- IShellLink *pIShellLink = NULL;
- IPersistFile *ppf = NULL;
- WCHAR pLinkUnicode[MAX_PATH];
- CoInitialize(NULL);
- // Get a pointer to the IShellLink interface.
- hr = CoCreateInstance(CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER,
- IID_IShellLink, (void **)&pIShellLink);
- if (SUCCEEDED(hr))
- {
- // Get a pointer to IPersistFile interface for saving shortcut
- hr = pIShellLink->QueryInterface(IID_IPersistFile, (void **)&ppf);
- if (SUCCEEDED(hr))
- {
- hr = pIShellLink->SetPath(lpszShortcutFile);
- hr = pIShellLink->SetDescription(lpszDescription);
- if (SUCCEEDED(hr))
- {
- // Add the target folder to the Start Menu Programs path
- lstrcat(lpszLink, "\\");
- lstrcat(lpszLink, lpszRelativeFolder);
- lstrcat(lpszLink, "\\");
-
- // Create the directory if it does not exist
- CreateDirectory(lpszLink,NULL);
- // Add the file name for the shortcut
- lstrcat(lpszLink, lpszDescription);
- lstrcat(lpszLink, ".lnk");
- // Convert string to Unicode, and call IPersistFile::Save()
- MultiByteToWideChar(CP_ACP, 0, lpszLink, -1, pLinkUnicode, MAX_PATH);
- hr = ppf->Save(pLinkUnicode, TRUE);
- }
- ppf->Release();
- }
- pIShellLink->Release();
- }
- CoUninitialize();
- }
- return hr;
- }
- /********************************************************************/
- /* */
- /* Function name : RemoveStartMenuShortcut */
- /* Description : Create a shortcut using the IShellLink interface.*/
- /* */
- /********************************************************************/
- void RemoveStartMenuShortcut(LPSTR lpszDescription, LPTSTR lpszRelativeFolder)
- {
- PFNSHGETFOLDERPATHA pSHGetFolderPath = NULL;
- TCHAR lpszLink[MAX_PATH];
- BOOL bFound = FALSE;
- pSHGetFolderPath = GetFuncPtr_SHGetFolderPathA();
- // Find the current user's Start Menu Programs folder
- if (pSHGetFolderPath)
- bFound = SUCCEEDED(pSHGetFolderPath(NULL, CSIDL_PROGRAMS, NULL, 0, lpszLink));
- if (bFound)
- {
- // Add the target folder to the Start Menu Programs path
- lstrcat(lpszLink, "\\");
- lstrcat(lpszLink, lpszRelativeFolder);
- lstrcat(lpszLink, "\\");
- // Add the file name for the shortcut
- lstrcat(lpszLink, lpszDescription);
- lstrcat(lpszLink, ".lnk");
- DeleteFile(lpszLink); // ɾ³ý*.lnk;
- }
- }
- /********************************************************************/
- /* */
- /* Function name : GetShortcutTarget */
- /* Description : Get target filename from shortcut. */
- /* */
- /********************************************************************/
- CString GetShortcutTarget(LPCTSTR lpszFilename)
- {
- CoInitialize(0);
- CString strResult;
- HRESULT hResult;
- IShellLink *psl;
- char szPath[MAX_PATH];
- WIN32_FIND_DATA findData;
- // Get a pointer to the IShellLink interface.
- hResult = CoCreateInstance (CLSID_ShellLink, NULL, CLSCTX_INPROC_SERVER, IID_IShellLink, (void **)&psl);
- if (SUCCEEDED(hResult))
- {
- IPersistFile *ppf;
- // Get a pointer to the IPersistFile interface.
- hResult = psl->QueryInterface (IID_IPersistFile, (void **)&ppf);
- if (SUCCEEDED(hResult))
- {
- WCHAR wsz [MAX_PATH]; // buffer for Unicode string
- // Ensure that the string consists of Unicode characters.
- MultiByteToWideChar (CP_ACP, 0, lpszFilename, -1, wsz, MAX_PATH);
- // Load the shortcut.
- hResult = ppf->Load (wsz, STGM_READ);
- if (SUCCEEDED (hResult))
- {
- // Resolve the shortcut.
- hResult = psl->Resolve (0, SLR_ANY_MATCH|SLR_NO_UI);
- if (SUCCEEDED (hResult))
- {
- lstrcpy (szPath, lpszFilename);
- // Get the path to the shortcut target.
- hResult = psl->GetPath(szPath, MAX_PATH, (WIN32_FIND_DATA *)&findData, 0);
- strResult = szPath;
- }
- }
- // Release the pointer to IPersistFile.
- ppf->Release ();
- }
- // Release the pointer to IShellLink.
- psl->Release ();
- }
- CoUninitialize();
- if (SUCCEEDED(hResult))
- return strResult;
- else
- return "";
- }
- // Pump messages while waiting for event
- BOOL WaitWithMessageLoop(HANDLE hEvent, int nTimeout)
- {
- DWORD dwRet;
- while (1)
- {
- // wait for event or message, if it's a message, process it and return to waiting state
- dwRet = MsgWaitForMultipleObjects(1, &hEvent, FALSE, nTimeout, QS_ALLINPUT);
- if (dwRet == WAIT_OBJECT_0)
- {
- TRACE0("WaitWithMessageLoop() event triggered.\n");
- return TRUE;
- }
- else
- if (dwRet == WAIT_OBJECT_0 + 1)
- {
- // process window messages
- AfxGetApp()->PumpMessage();
- }
- else
- if (dwRet == WAIT_TIMEOUT)
- {
- // timed out !
- return FALSE;
- }
- else
- {
- // WAIT_ABANDONED_0 ...
- return TRUE;
- }
- }
- }
- /********************************************************************/
- /* */
- /* Function name : AutoSizeColumns */
- /* Description : */
- /* */
- /********************************************************************/
- void AutoSizeColumns(CListCtrl *pListCtrl)
- {
- // Call this after your the control is filled
- pListCtrl->SetRedraw(FALSE);
- int mincol = 0;
- int maxcol = pListCtrl->GetHeaderCtrl()->GetItemCount()-1;
- for (int col = mincol; col <= maxcol; col++)
- {
- pListCtrl->SetColumnWidth(col, LVSCW_AUTOSIZE);
- int wc1 = pListCtrl->GetColumnWidth(col);
- pListCtrl->SetColumnWidth(col, LVSCW_AUTOSIZE_USEHEADER);
- int wc2 = pListCtrl->GetColumnWidth(col);
- // 10 is minumim column width
- int wc = max(10, max(wc1,wc2));
- pListCtrl->SetColumnWidth(col,wc);
- }
- pListCtrl->SetRedraw(TRUE);
- }
- /********************************************************************/
- /* */
- /* Function name : MakeSureDirectoryPathExists */
- /* Description : This function creates all the directories in */
- /* the specified DirPath, beginning with the root. */
- /* This is a clone a Microsoft function with the */
- /* same name. */
- /* */
- /********************************************************************/
- BOOL MakeSureDirectoryPathExists(LPCTSTR lpszDirPath)
- {
- CString strDirPath = lpszDirPath;
-
- int nPos = 0;
-
- while((nPos = strDirPath.Find('\\', nPos+1)) != -1)
- {
- CreateDirectory(strDirPath.Left(nPos), NULL);
- }
- return CreateDirectory(strDirPath, NULL);
- }
- /********************************************************************/
- /* */
- /* Function name : IsNumeric */
- /* Description : Check if specified data is numeric */
- /* */
- /********************************************************************/
- BOOL IsNumeric(char *buff)
- {
- // validate data
- char *ptr = buff;
- while(*ptr)
- {
- if (isdigit(*ptr))
- {
- ptr++;
- }
- else
- return FALSE;
- }
- return TRUE;
- }
|