| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885 |
- #include "stdafx.h"
- #include "CP_Main.h"
- #include "Misc.h"
- #include "OptionsSheet.h"
- #include "shared/TextConvert.h"
- #include "AlphaBlend.h"
- #include "Tlhelp32.h"
- CString GetIPAddress()
- {
- WORD wVersionRequested;
- WSADATA wsaData;
- char name[255];
- CString IP;
- PHOSTENT hostinfo;
- wVersionRequested = MAKEWORD(2,0);
-
- if (WSAStartup(wVersionRequested, &wsaData)==0)
- {
- if(gethostname(name, sizeof(name))==0)
- {
- if((hostinfo=gethostbyname(name)) != NULL)
- {
- IP = inet_ntoa(*(struct in_addr*)* hostinfo->h_addr_list);
- }
- }
-
- WSACleanup();
- }
- IP.MakeUpper();
- return IP;
- }
- CString GetComputerName()
- {
- TCHAR ComputerName[MAX_COMPUTERNAME_LENGTH+1] = _T("");
- DWORD Size=MAX_COMPUTERNAME_LENGTH+1;
- GetComputerName(ComputerName, &Size);
- CString cs(ComputerName);
- cs.MakeUpper();
- return cs;
- }
- void AppendToFile(const TCHAR* fn, const TCHAR* msg)
- {
- #ifdef _UNICODE
- FILE *file = _wfopen(fn, _T("a"));
- #else
- FILE *file = fopen(fn, _T("a"));
- #endif
- ASSERT( file );
- if(file != NULL)
- {
- #ifdef _UNICODE
- fwprintf(file, _T("%s"), msg);
- #else
- fprintf(file, _T("%s"),msg);
- #endif
- fclose(file);
- }
- }
- void log(const TCHAR* msg, bool bFromSendRecieve, CString csFile, long lLine)
- {
- ASSERT(AfxIsValidString(msg));
- SYSTEMTIME st;
- GetSystemTime(&st);
-
- CString csText;
- csText.Format(_T("[%d/%d/%d %02d:%02d:%02d.%03d - "), st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds);
- CString csFileLine;
- csFile = GetFileName(csFile);
- csFileLine.Format(_T("%s %d] "), csFile, lLine);
- csText += csFileLine;
-
- csText += msg;
- csText += "\n";
- #ifndef _DEBUG
- if(CGetSetOptions::m_bOutputDebugString)
- #endif
- {
- OutputDebugString(csText);
- }
- #ifndef _DEBUG
- if(!bFromSendRecieve)
- {
- if(!g_Opt.m_bEnableDebugLogging)
- return;
- }
- #endif
-
- CString csExeFile = CGetSetOptions::GetPath(PATH_LOG_FILE);
- csExeFile += "Ditto.log";
- AppendToFile(csExeFile, csText);
- }
- void logsendrecieveinfo(CString cs, CString csFile, long lLine)
- {
- if(g_Opt.m_bLogSendReceiveErrors)
- log(cs, true, csFile, lLine);
- }
- CString GetErrorString( int err )
- {
- CString str;
- LPVOID lpMsgBuf;
-
- ::FormatMessage(
- FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM,
- NULL,
- err,
- MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), // Default language
- (LPTSTR) &lpMsgBuf,
- 0,
- NULL
- );
- str = (LPCTSTR) lpMsgBuf;
- // Display the string.
- // ::MessageBox( NULL, lpMsgBuf, "GetLastError", MB_OK|MB_ICONINFORMATION );
- ::LocalFree( lpMsgBuf );
- return str;
- }
- CString StrF(const TCHAR * pszFormat, ...)
- {
- ASSERT( AfxIsValidString( pszFormat ) );
- CString str;
- va_list argList;
- va_start( argList, pszFormat );
- str.FormatV( pszFormat, argList );
- va_end( argList );
- return str;
- }
- BYTE GetEscapeChar( BYTE ch )
- {
- switch(ch)
- {
- case '\'': return '\''; // Single quotation mark (') = 39 or 0x27
- case '\"': return '\"'; // Double quotation mark (") = 34 or 0x22
- case '?': return '\?'; // Question mark (?) = 63 or 0x3f
- case '\\': return '\\'; // Backslash (\) = 92 or 0x5c
- case 'a': return '\a'; // Alert (BEL) = 7
- case 'b': return '\b'; // Backspace (BS) = 8
- case 'f': return '\f'; // Formfeed (FF) = 12 or 0x0c
- case 'n': return '\n'; // Newline (NL or LF) = 10 or 0x0a
- case 'r': return '\r'; // Carriage Return (CR) = 13 or 0x0d
- case 't': return '\t'; // Horizontal tab (HT) = 9
- case 'v': return '\v'; // Vertical tab (VT) = 11 or 0x0b
- case '0': return '\0'; // Null character (NUL) = 0
- }
- return 0; // invalid
- }
- CString RemoveEscapes( const TCHAR* str )
- {
- ASSERT( str );
- CString ret;
- TCHAR* pSrc = (TCHAR*) str;
- TCHAR* pDest = ret.GetBuffer((int)STRLEN(pSrc));
- TCHAR* pStart = pDest;
- while( *pSrc != '\0' )
- {
- if( *pSrc == '\\' )
- {
- pSrc++;
- *pDest = GetEscapeChar((BYTE)pSrc );
- }
- else
- *pDest = *pSrc;
- pSrc++;
- pDest++;
- }
- ret.ReleaseBuffer((int)(pDest - pStart));
- return ret;
- }
- CString GetWndText( HWND hWnd )
- {
- CString text;
- if( !IsWindow(hWnd) )
- return "! NOT A VALID WINDOW !";
- CWnd* pWnd = CWnd::FromHandle(hWnd);
- pWnd->GetWindowText(text);
- return text;
- }
- bool IsAppWnd( HWND hWnd )
- {
- DWORD dwMyPID = ::GetCurrentProcessId();
- DWORD dwTestPID;
- ::GetWindowThreadProcessId( hWnd, &dwTestPID );
- return dwMyPID == dwTestPID;
- }
- /*----------------------------------------------------------------------------*\
- Global Memory Helper Functions
- \*----------------------------------------------------------------------------*/
- // make sure the given HGLOBAL is valid.
- BOOL IsValid(HGLOBAL hGlobal)
- {
- void* pvData = ::GlobalLock(hGlobal);
- ::GlobalUnlock(hGlobal);
- return (pvData != NULL);
- }
- // asserts if hDest isn't big enough
- void CopyToGlobalHP(HGLOBAL hDest, LPVOID pBuf, SIZE_T ulBufLen)
- {
- ASSERT(hDest && pBuf && ulBufLen);
- LPVOID pvData = GlobalLock(hDest);
- ASSERT(pvData);
- SIZE_T size = GlobalSize(hDest);
- ASSERT(size >= ulBufLen); // assert if hDest isn't big enough
- memcpy(pvData, pBuf, ulBufLen);
- GlobalUnlock(hDest);
- }
- void CopyToGlobalHH(HGLOBAL hDest, HGLOBAL hSource, SIZE_T ulBufLen)
- {
- ASSERT(hDest && hSource && ulBufLen);
- LPVOID pvData = GlobalLock(hSource);
- ASSERT(pvData );
- SIZE_T size = GlobalSize(hSource);
- ASSERT(size >= ulBufLen); // assert if hSource isn't big enough
- CopyToGlobalHP(hDest, pvData, ulBufLen);
- GlobalUnlock(hSource);
- }
- HGLOBAL NewGlobalP(LPVOID pBuf, SIZE_T nLen)
- {
- ASSERT(pBuf && nLen);
- HGLOBAL hDest = GlobalAlloc(GMEM_MOVEABLE | GMEM_SHARE, nLen);
- ASSERT(hDest );
- CopyToGlobalHP(hDest, pBuf, nLen);
- return hDest;
- }
- HGLOBAL NewGlobal(SIZE_T nLen)
- {
- ASSERT(nLen);
- HGLOBAL hDest = GlobalAlloc(GMEM_MOVEABLE | GMEM_SHARE, nLen);
- return hDest;
- }
- HGLOBAL NewGlobalH(HGLOBAL hSource, SIZE_T nLen)
- {
- ASSERT(hSource && nLen);
- LPVOID pvData = GlobalLock(hSource);
- HGLOBAL hDest = NewGlobalP(pvData, nLen);
- GlobalUnlock(hSource);
- return hDest;
- }
- int CompareGlobalHP(HGLOBAL hLeft, LPVOID pBuf, SIZE_T ulBufLen)
- {
- ASSERT(hLeft && pBuf && ulBufLen);
- LPVOID pvData = GlobalLock(hLeft);
-
- ASSERT(pvData);
- ASSERT(ulBufLen <= GlobalSize(hLeft));
- int result = memcmp(pvData, pBuf, ulBufLen);
-
- GlobalUnlock(hLeft);
- return result;
- }
- int CompareGlobalHH( HGLOBAL hLeft, HGLOBAL hRight, SIZE_T ulBufLen)
- {
- ASSERT(hLeft && hRight && ulBufLen);
- ASSERT(ulBufLen <= GlobalSize(hRight));
- LPVOID pvData = GlobalLock(hRight);
- ASSERT(pvData);
- int result = CompareGlobalHP(hLeft, pvData, ulBufLen);
- GlobalUnlock(hLeft);
- return result;
- }
- //Do not change these these are stored in the database
- CLIPFORMAT GetFormatID(LPCTSTR cbName)
- {
- if(STRCMP(cbName, _T("CF_TEXT")) == 0)
- return CF_TEXT;
- else if(STRCMP(cbName, _T("CF_METAFILEPICT")) == 0)
- return CF_METAFILEPICT;
- else if(STRCMP(cbName, _T("CF_SYLK")) == 0)
- return CF_SYLK;
- else if(STRCMP(cbName, _T("CF_DIF")) == 0)
- return CF_DIF;
- else if(STRCMP(cbName, _T("CF_TIFF")) == 0)
- return CF_TIFF;
- else if(STRCMP(cbName, _T("CF_OEMTEXT")) == 0)
- return CF_OEMTEXT;
- else if(STRCMP(cbName, _T("CF_DIB")) == 0)
- return CF_DIB;
- else if(STRCMP(cbName, _T("CF_PALETTE")) == 0)
- return CF_PALETTE;
- else if(STRCMP(cbName, _T("CF_PENDATA")) == 0)
- return CF_PENDATA;
- else if(STRCMP(cbName, _T("CF_RIFF")) == 0)
- return CF_RIFF;
- else if(STRCMP(cbName, _T("CF_WAVE")) == 0)
- return CF_WAVE;
- else if(STRCMP(cbName, _T("CF_UNICODETEXT")) == 0)
- return CF_UNICODETEXT;
- else if(STRCMP(cbName, _T("CF_ENHMETAFILE")) == 0)
- return CF_ENHMETAFILE;
- else if(STRCMP(cbName, _T("CF_HDROP")) == 0)
- return CF_HDROP;
- else if(STRCMP(cbName, _T("CF_LOCALE")) == 0)
- return CF_LOCALE;
- else if(STRCMP(cbName, _T("CF_OWNERDISPLAY")) == 0)
- return CF_OWNERDISPLAY;
- else if(STRCMP(cbName, _T("CF_DSPTEXT")) == 0)
- return CF_DSPTEXT;
- else if(STRCMP(cbName, _T("CF_DSPBITMAP")) == 0)
- return CF_DSPBITMAP;
- else if(STRCMP(cbName, _T("CF_DSPMETAFILEPICT")) == 0)
- return CF_DSPMETAFILEPICT;
- else if(STRCMP(cbName, _T("CF_DSPENHMETAFILE")) == 0)
- return CF_DSPENHMETAFILE;
-
-
- return ::RegisterClipboardFormat(cbName);
- }
- //Do not change these these are stored in the database
- CString GetFormatName(CLIPFORMAT cbType)
- {
- switch(cbType)
- {
- case CF_TEXT:
- return _T("CF_TEXT");
- case CF_BITMAP:
- return _T("CF_BITMAP");
- case CF_METAFILEPICT:
- return _T("CF_METAFILEPICT");
- case CF_SYLK:
- return _T("CF_SYLK");
- case CF_DIF:
- return _T("CF_DIF");
- case CF_TIFF:
- return _T("CF_TIFF");
- case CF_OEMTEXT:
- return _T("CF_OEMTEXT");
- case CF_DIB:
- return _T("CF_DIB");
- case CF_PALETTE:
- return _T("CF_PALETTE");
- case CF_PENDATA:
- return _T("CF_PENDATA");
- case CF_RIFF:
- return _T("CF_RIFF");
- case CF_WAVE:
- return _T("CF_WAVE");
- case CF_UNICODETEXT:
- return _T("CF_UNICODETEXT");
- case CF_ENHMETAFILE:
- return _T("CF_ENHMETAFILE");
- case CF_HDROP:
- return _T("CF_HDROP");
- case CF_LOCALE:
- return _T("CF_LOCALE");
- case CF_OWNERDISPLAY:
- return _T("CF_OWNERDISPLAY");
- case CF_DSPTEXT:
- return _T("CF_DSPTEXT");
- case CF_DSPBITMAP:
- return _T("CF_DSPBITMAP");
- case CF_DSPMETAFILEPICT:
- return _T("CF_DSPMETAFILEPICT");
- case CF_DSPENHMETAFILE:
- return _T("CF_DSPENHMETAFILE");
- default:
- //Not a default type get the name from the clipboard
- if (cbType != 0)
- {
- TCHAR szFormat[256];
- GetClipboardFormatName(cbType, szFormat, 256);
- return szFormat;
- }
- break;
- }
-
- return "ERROR";
- }
- CString GetFilePath(CString csFileName)
- {
- long lSlash = csFileName.ReverseFind('\\');
-
- if(lSlash > -1)
- {
- csFileName = csFileName.Left(lSlash + 1);
- }
-
- return csFileName;
- }
- CString GetFileName(CString csFileName)
- {
- long lSlash = csFileName.ReverseFind('\\');
- if(lSlash > -1)
- {
- csFileName = csFileName.Right(csFileName.GetLength() - lSlash - 1);
- }
- return csFileName;
- }
- /****************************************************************************************************
- BOOL CALLBACK MyMonitorEnumProc(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData)
- ***************************************************************************************************/
- typedef struct
- {
- long lFlags; // Flags
- LPRECT pVirtualRect; // Ptr to rect that receives the results, or the src of the monitor search method
- int iMonitor; // Ndx to the mointor to look at, -1 for all, -or- result of the monitor search method
- int nMonitorCount; // Total number of monitors found, -1 for monitor search method
- } MONITOR_ENUM_PARAM;
- #define MONITOR_SEARCH_METOHD 0x00000001
- BOOL CALLBACK MyMonitorEnumProc(HMONITOR hMonitor, HDC hdcMonitor, LPRECT lprcMonitor, LPARAM dwData)
- {
- // Typecast param
- MONITOR_ENUM_PARAM* pParam = (MONITOR_ENUM_PARAM*)dwData;
- if(pParam)
- {
- // If a dest rect was passed
- if(pParam->pVirtualRect)
- {
- // If MONITOR_SEARCH_METOHD then we are being asked for the index of the monitor
- // that the rect falls inside of
- if(pParam->lFlags & MONITOR_SEARCH_METOHD)
- {
- if( (pParam->pVirtualRect->right < lprcMonitor->left) ||
- (pParam->pVirtualRect->left > lprcMonitor->right) ||
- (pParam->pVirtualRect->bottom < lprcMonitor->top) ||
- (pParam->pVirtualRect->top > lprcMonitor->bottom))
- {
- // Nothing
- }
- else
- {
- // This is the one
- pParam->iMonitor = pParam->nMonitorCount;
-
- // Stop the enumeration
- return FALSE;
- }
- }
- else
- {
- if(pParam->iMonitor == pParam->nMonitorCount)
- {
- *pParam->pVirtualRect = *lprcMonitor;
- }
- else
- if(pParam->iMonitor == -1)
- {
- pParam->pVirtualRect->left = min(pParam->pVirtualRect->left, lprcMonitor->left);
- pParam->pVirtualRect->top = min(pParam->pVirtualRect->top, lprcMonitor->top);
- pParam->pVirtualRect->right = max(pParam->pVirtualRect->right, lprcMonitor->right);
- pParam->pVirtualRect->bottom = max(pParam->pVirtualRect->bottom, lprcMonitor->bottom);
- }
- }
- }
-
- // Up the count if necessary
- pParam->nMonitorCount++;
- }
- return TRUE;
- }
- int GetScreenWidth(void)
- {
- OSVERSIONINFO OS_Version_Info;
- DWORD dwPlatform = 0;
-
- if(GetVersionEx(&OS_Version_Info) != 0)
- {
- dwPlatform = OS_Version_Info.dwPlatformId;
- }
-
- if(dwPlatform == VER_PLATFORM_WIN32_NT)
- {
- int width, height;
-
- width = GetSystemMetrics(SM_CXSCREEN);
- height = GetSystemMetrics(SM_CYSCREEN);
- switch(width)
- {
- default:
- case 640:
- case 800:
- case 1024:
- return(width);
- case 1280:
- if(height == 480)
- {
- return(width / 2);
- }
- return(width);
- case 1600:
- if(height == 600)
- {
- return(width / 2);
- }
- return(width);
- case 2048:
- if(height == 768)
- {
- return(width / 2);
- }
- return(width);
- }
- }
- else
- {
- return(GetSystemMetrics(SM_CXSCREEN));
- }
- }
- int GetScreenHeight(void)
- {
- OSVERSIONINFO OS_Version_Info;
- DWORD dwPlatform = 0;
-
- if(GetVersionEx(&OS_Version_Info) != 0)
- {
- dwPlatform = OS_Version_Info.dwPlatformId;
- }
-
- if(dwPlatform == VER_PLATFORM_WIN32_NT)
- {
- int width, height;
-
- width = GetSystemMetrics(SM_CXSCREEN);
- height = GetSystemMetrics(SM_CYSCREEN);
- switch(height)
- {
- default:
- case 480:
- case 600:
- case 768:
- return(height);
- case 960:
- if(width == 640)
- {
- return(height / 2);
- }
- return(height);
- case 1200:
- if(width == 800)
- {
- return(height / 2);
- }
- return(height);
- case 1536:
- if(width == 1024)
- {
- return(height / 2);
- }
- return(height);
- }
- }
- else
- {
- return(GetSystemMetrics(SM_CYSCREEN));
- }
- }
- int GetMonitorFromRect(LPRECT lpMonitorRect)
- {
- // Build up the param
- MONITOR_ENUM_PARAM EnumParam;
- ZeroMemory(&EnumParam, sizeof(EnumParam));
- EnumParam.lFlags = MONITOR_SEARCH_METOHD;
- EnumParam.pVirtualRect = lpMonitorRect;
- EnumParam.iMonitor = -1;
-
- // Enum Displays
- EnumDisplayMonitors(NULL, NULL, MyMonitorEnumProc, (long)&EnumParam);
-
- // Return the result
- return EnumParam.iMonitor;
- }
- void GetMonitorRect(int iMonitor, LPRECT lpDestRect)
- {
- // Build up the param
- MONITOR_ENUM_PARAM EnumParam;
- ZeroMemory(&EnumParam, sizeof(EnumParam));
- EnumParam.iMonitor = iMonitor;
- EnumParam.pVirtualRect = lpDestRect;
-
- // Zero out dest rect
- lpDestRect->bottom = lpDestRect->left = lpDestRect->right = lpDestRect->top = 0;
-
- // Enum Displays
- EnumDisplayMonitors(NULL, NULL, MyMonitorEnumProc, (long)&EnumParam);
-
- // If not successful, default to the screen dimentions
- if(lpDestRect->right == 0 || lpDestRect->bottom == 0)
- {
- lpDestRect->right = GetScreenWidth();
- lpDestRect->bottom = GetScreenHeight();
- }
- }
- /*------------------------------------------------------------------*\
- ID based Globals
- \*------------------------------------------------------------------*/
- long NewGroupID(int parentID, CString text)
- {
- long lID=0;
- CTime time;
- time = CTime::GetCurrentTime();
-
- try
- {
- //sqlite doesn't like single quotes ' replace them with double ''
- if(text.IsEmpty())
- text = time.Format("NewGroup %y/%m/%d %H:%M:%S");
- text.Replace(_T("'"), _T("''"));
- CString cs;
- cs.Format(_T("insert into Main values(NULL, %d, '%s', 0, %d, 0, 1, %d, '');"),
- (long)time.GetTime(),
- text,
- (long)time.GetTime(),
- parentID);
- theApp.m_db.execDML(cs);
- lID = (long)theApp.m_db.lastRowId();
- }
- CATCH_SQLITE_EXCEPTION_AND_RETURN(0)
-
- return lID;
- }
- BOOL DeleteAllIDs()
- {
- try
- {
- theApp.m_db.execDML(_T("DELETE FROM Data;"));
- theApp.m_db.execDML(_T("DELETE FROM Main;"));
- }
- CATCH_SQLITE_EXCEPTION
- return TRUE;
- }
- BOOL DeleteFormats(int parentID, ARRAY& formatIDs)
- {
- if(formatIDs.GetSize() <= 0)
- return TRUE;
-
- try
- {
- //Delete the requested data formats
- INT_PTR count = formatIDs.GetSize();
- for(int i = 0; i < count; i++)
- {
- theApp.m_db.execDMLEx(_T("DELETE FROM Data WHERE lID = %d;"), formatIDs[i]);
- }
- CClip clip;
- if(clip.LoadFormats(parentID))
- {
- DWORD CRC = clip.GenerateCRC();
- //Update the main table with new size
- theApp.m_db.execDMLEx(_T("UPDATE Main SET CRC = %d WHERE lID = %d"), CRC, parentID);
- }
- }
- CATCH_SQLITE_EXCEPTION
-
- return TRUE;
- }
- BOOL EnsureWindowVisible(CRect *pcrRect)
- {
- int nMonitor = GetMonitorFromRect(pcrRect);
- if(nMonitor < 0)
- {
- GetMonitorRect(0, pcrRect);
- pcrRect->right = pcrRect->left + 300;
- pcrRect->bottom = pcrRect->top + 300;
- return TRUE;
- }
- CRect crMonitor;
- GetMonitorRect(nMonitor, crMonitor);
- //Validate the left
- long lDiff = pcrRect->left - crMonitor.left;
- if(lDiff < 0)
- {
- pcrRect->left += abs(lDiff);
- pcrRect->right += abs(lDiff);
- }
- //Right side
- lDiff = pcrRect->right - crMonitor.right;
- if(lDiff > 0)
- {
- pcrRect->left -= abs(lDiff);
- pcrRect->right -= abs(lDiff);
- }
- //Top
- lDiff = pcrRect->top - crMonitor.top;
- if(lDiff < 0)
- {
- pcrRect->top += abs(lDiff);
- pcrRect->bottom += abs(lDiff);
- }
- //Bottom
- lDiff = pcrRect->bottom - crMonitor.bottom;
- if(lDiff > 0)
- {
- pcrRect->top -= abs(lDiff);
- pcrRect->bottom -= abs(lDiff);
- }
- return TRUE;
- }
- __int64 GetLastWriteTime(const CString &csFile)
- {
- __int64 nLastWrite = 0;
- CFileFind finder;
- BOOL bResult = finder.FindFile(csFile);
- if (bResult)
- {
- finder.FindNextFile();
- FILETIME ft;
- finder.GetLastWriteTime(&ft);
- memcpy(&nLastWrite, &ft, sizeof(ft));
- }
- return nLastWrite;
- }
- CString GetProcessName(HWND hWnd)
- {
- DWORD Id;
- GetWindowThreadProcessId(hWnd, &Id);
- PROCESSENTRY32 processEntry = { 0 };
- HANDLE hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
- processEntry.dwSize = sizeof(PROCESSENTRY32);
- if (Process32First(hSnapShot, &processEntry))
- {
- do
- {
- if (processEntry.th32ProcessID == Id)
- {
- return processEntry.szExeFile;
- }
- } while(Process32Next(hSnapShot, &processEntry));
- }
- CloseHandle(hSnapShot);
- return "";
- }
- BOOL IsVista()
- {
- OSVERSIONINFO osver;
- osver.dwOSVersionInfoSize = sizeof( OSVERSIONINFO );
- if (::GetVersionEx( &osver ) &&
- osver.dwPlatformId == VER_PLATFORM_WIN32_NT &&
- (osver.dwMajorVersion >= 6 ) )
- {
- return TRUE;
- }
- return FALSE;
- }
- bool IsRunningLimited()
- {
- LPCTSTR pszSubKey = _T("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\System");
- LPCTSTR pszValue = _T("EnableLUA");
- DWORD dwType = 0;
- DWORD dwValue = 0;
- DWORD dwValueSize = sizeof(DWORD);
- if(ERROR_SUCCESS != SHGetValue(HKEY_LOCAL_MACHINE, pszSubKey, pszValue, &dwType, &dwValue, &dwValueSize))
- {
- //failed to read the reg key, either it's not there or we don't have access to the registry
- //If we are vista then assume we don't have access and we are running as a limited app
- //otherwise we are xp and the reg key probably doesn't exist and we are not a limited running app
- if(IsVista())
- {
- OutputDebugString(_T("Ditto - Failed to read registry entry finding UAC, Running as limited application"));
- return true;
- }
- }
- if(dwValue == 1)
- {
- OutputDebugString(_T("Ditto - UAC ENABLED, Running as limited application"));
- return true;
- }
- OutputDebugString(_T("Ditto - Running as standard application"));
- return false;
- }
- void DeleteReceivedFiles(CString csDir)
- {
- if(csDir.Find(_T("\\ReceivedFiles\\")) == -1)
- return;
- FIX_CSTRING_PATH(csDir);
- CTime ctOld = CTime::GetCurrentTime();
- CTime ctFile;
- ctOld -= CTimeSpan(0, 0, 0, 1);
- CFileFind Find;
- CString csFindString;
- csFindString.Format(_T("%s*.*"), csDir);
- BOOL bFound = Find.FindFile(csFindString);
- while(bFound)
- {
- bFound = Find.FindNextFile();
- if(Find.IsDots())
- continue;
- if(Find.IsDirectory())
- {
- CString csDir(Find.GetFilePath());
- DeleteReceivedFiles(csDir);
- RemoveDirectory(csDir);
- }
- if(Find.GetLastAccessTime(ctFile))
- {
- //Delete the remote copied file if it has'nt been used for the last day
- if(ctFile < ctOld)
- {
- DeleteFile(Find.GetFilePath());
- }
- }
- else
- {
- DeleteFile(Find.GetFilePath());
- }
- }
- }
|