123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686 |
- #include "stdafx.h"
- #include "CP_Main.h"
- #include "Misc.h"
- #include "OptionsSheet.h"
- #ifdef AFTER_98
- #include "AlphaBlend.h"
- #endif
- // Debug Functions
- void AppendToFile( const char* fn, const char* msg )
- {
- FILE *file = fopen(fn, "a");
- ASSERT( file );
- fprintf(file, msg);
- fclose(file);
- }
- void Log( const char* msg )
- {
- ASSERT( AfxIsValidString(msg) );
- CTime time = CTime::GetCurrentTime();
- CString csText = time.Format("[%Y/%m/%d %I:%M:%S %p] ");
- //CString csTemp;
- // csTemp.Format( "%04x ", AfxGetInstanceHandle() );
- csText += msg;
- csText += "\n";
- AppendToFile( "Ditto.log", csText ); //(LPCTSTR)
- }
- 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;
- }
- void SetThreadName(DWORD dwThreadID, LPCTSTR szThreadName)
- {
- THREADNAME_INFO info;
- info.dwType = 0x1000;
- info.szName = szThreadName;
- info.dwThreadID = dwThreadID;
- info.dwFlags = 0;
- __try
- {
- RaiseException(MS_VC_EXCEPTION, 0, sizeof(info) / sizeof(DWORD), (DWORD *)&info);
- }
- __except (EXCEPTION_CONTINUE_EXECUTION)
- {
- }
- }
- // Utility Functions
- CString StrF(const char * 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 char* str )
- {
- ASSERT( str );
- CString ret;
- char* pSrc = (char*) str;
- char* pDest = ret.GetBuffer( strlen(pSrc) );
- char* pStart = pDest;
- while( *pSrc != '\0' )
- {
- if( *pSrc == '\\' )
- {
- pSrc++;
- *pDest = GetEscapeChar( *pSrc );
- }
- else
- *pDest = *pSrc;
- pSrc++;
- pDest++;
- }
- ret.ReleaseBuffer( 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;
- }
- HWND GetFocusWnd(CPoint *pPointCaret)
- {
- HWND hWndFocus = NULL;
- if (pPointCaret)
- *pPointCaret = CPoint(-1, -1);
-
- HWND hWndForground = GetForegroundWindow(); // Get the desktop's foreground window
- if (hWndForground != NULL)
- {
- DWORD ProcID;
- DWORD ThreadID = GetWindowThreadProcessId(hWndForground, &ProcID);
-
- // Attach other thread's message queue to our own to ensure GetFocus() is working properly
- BOOL ARes = AttachThreadInput(ThreadID, GetCurrentThreadId(), TRUE);
- if (ARes)
- {
- // Get the other thread's focussed window
- CWnd *pWnd = CWnd::FromHandle(hWndForground);
- if (pWnd)
- {
- CWnd *pWndFocus = pWnd->GetFocus();
- if (pWndFocus)
- {
- hWndFocus = pWndFocus->m_hWnd;
- if (pPointCaret)
- {
- *pPointCaret = pWndFocus->GetCaretPos();
- pWndFocus->ClientToScreen(pPointCaret);
- }
- }
- }
- // Detach other thread's message queue from our own again
- ARes = AttachThreadInput(ThreadID, GetCurrentThreadId(), FALSE);
- }
- }
- return hWndFocus;
- }
- /*----------------------------------------------------------------------------*\
- Global Memory Helper Functions
- \*----------------------------------------------------------------------------*/
- // asserts if hDest isn't big enough
- void CopyToGlobalHP( HGLOBAL hDest, LPVOID pBuf, ULONG ulBufLen )
- {
- ASSERT( hDest && pBuf && ulBufLen );
- LPVOID pvData = GlobalLock(hDest);
- ASSERT( pvData );
- ULONG 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, ULONG ulBufLen )
- {
- ASSERT( hDest && hSource && ulBufLen );
- LPVOID pvData = GlobalLock(hSource);
- ASSERT( pvData );
- ULONG size = GlobalSize(hSource);
- ASSERT( size >= ulBufLen ); // assert if hSource isn't big enough
- CopyToGlobalHP(hDest, pvData, ulBufLen);
- GlobalUnlock(hSource);
- }
- HGLOBAL NewGlobalP( LPVOID pBuf, UINT nLen )
- {
- ASSERT( pBuf && nLen );
- HGLOBAL hDest = GlobalAlloc( GMEM_MOVEABLE | GMEM_SHARE, nLen );
- ASSERT( hDest );
- CopyToGlobalHP( hDest, pBuf, nLen );
- return hDest;
- }
- HGLOBAL NewGlobalH( HGLOBAL hSource, UINT nLen )
- {
- ASSERT( hSource && nLen );
- LPVOID pvData = GlobalLock( hSource );
- HGLOBAL hDest = NewGlobalP( pvData, nLen );
- GlobalUnlock( hSource );
- return hDest;
- }
- int CompareGlobalHP( HGLOBAL hLeft, LPVOID pBuf, ULONG 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, ULONG 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;
- }
- long DoOptions(CWnd *pParent)
- {
- //Don't let it open up more than once
- if(theApp.m_bShowingOptions)
- return FALSE;
- theApp.m_bShowingOptions = true;
-
- COptionsSheet Sheet("Copy Pro Options", pParent);
- int nRet = Sheet.DoModal();
- theApp.m_bShowingOptions = false;
- return nRet;
- }
- //Do not change these these are stored in the database
- CLIPFORMAT GetFormatID(LPCSTR cbName)
- {
- if(strcmp(cbName, "CF_TEXT") == 0)
- return CF_TEXT;
- else if(strcmp(cbName, "CF_METAFILEPICT") == 0)
- return CF_METAFILEPICT;
- else if(strcmp(cbName, "CF_SYLK") == 0)
- return CF_SYLK;
- else if(strcmp(cbName, "CF_DIF") == 0)
- return CF_DIF;
- else if(strcmp(cbName, "CF_TIFF") == 0)
- return CF_TIFF;
- else if(strcmp(cbName, "CF_OEMTEXT") == 0)
- return CF_OEMTEXT;
- else if(strcmp(cbName, "CF_DIB") == 0)
- return CF_DIB;
- else if(strcmp(cbName, "CF_PALETTE") == 0)
- return CF_PALETTE;
- else if(strcmp(cbName, "CF_PENDATA") == 0)
- return CF_PENDATA;
- else if(strcmp(cbName, "CF_RIFF") == 0)
- return CF_RIFF;
- else if(strcmp(cbName, "CF_WAVE") == 0)
- return CF_WAVE;
- else if(strcmp(cbName, "CF_UNICODETEXT") == 0)
- return CF_UNICODETEXT;
- else if(strcmp(cbName, "CF_ENHMETAFILE") == 0)
- return CF_ENHMETAFILE;
- else if(strcmp(cbName, "CF_HDROP") == 0)
- return CF_HDROP;
- else if(strcmp(cbName, "CF_LOCALE") == 0)
- return CF_LOCALE;
- else if(strcmp(cbName, "CF_OWNERDISPLAY") == 0)
- return CF_OWNERDISPLAY;
- else if(strcmp(cbName, "CF_DSPTEXT") == 0)
- return CF_DSPTEXT;
- else if(strcmp(cbName, "CF_DSPBITMAP") == 0)
- return CF_DSPBITMAP;
- else if(strcmp(cbName, "CF_DSPMETAFILEPICT") == 0)
- return CF_DSPMETAFILEPICT;
- else if(strcmp(cbName, "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 "CF_TEXT";
- case CF_BITMAP:
- return "CF_BITMAP";
- case CF_METAFILEPICT:
- return "CF_METAFILEPICT";
- case CF_SYLK:
- return "CF_SYLK";
- case CF_DIF:
- return "CF_DIF";
- case CF_TIFF:
- return "CF_TIFF";
- case CF_OEMTEXT:
- return "CF_OEMTEXT";
- case CF_DIB:
- return "CF_DIB";
- case CF_PALETTE:
- return "CF_PALETTE";
- case CF_PENDATA:
- return "CF_PENDATA";
- case CF_RIFF:
- return "CF_RIFF";
- case CF_WAVE:
- return "CF_WAVE";
- case CF_UNICODETEXT:
- return "CF_UNICODETEXT";
- case CF_ENHMETAFILE:
- return "CF_ENHMETAFILE";
- case CF_HDROP:
- return "CF_HDROP";
- case CF_LOCALE:
- return "CF_LOCALE";
- case CF_OWNERDISPLAY:
- return "CF_OWNERDISPLAY";
- case CF_DSPTEXT:
- return "CF_DSPTEXT";
- case CF_DSPBITMAP:
- return "CF_DSPBITMAP";
- case CF_DSPMETAFILEPICT:
- return "CF_DSPMETAFILEPICT";
- case CF_DSPENHMETAFILE:
- return "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;
- }
- /*------------------------------------------------------------------*\
- CGetSetOptions
- \*------------------------------------------------------------------*/
- BOOL CGetSetOptions::m_bUseCtrlNumAccel;
- BOOL CGetSetOptions::m_bAllowDuplicates;
- BOOL CGetSetOptions::m_bUpdateTimeOnPaste;
- BOOL CGetSetOptions::m_bSaveMultiPaste;
- BOOL CGetSetOptions::m_bShowPersistent;
- BOOL CGetSetOptions::m_bHistoryStartTop;
- long CGetSetOptions::m_bDescTextSize;
- BOOL CGetSetOptions::m_bDescShowLeadingWhiteSpace;
- CGetSetOptions g_Opt;
- CGetSetOptions::CGetSetOptions()
- {
- m_bUseCtrlNumAccel = GetUseCtrlNumForFirstTenHotKeys();
- m_bAllowDuplicates = GetAllowDuplicates();
- m_bUpdateTimeOnPaste = GetUpdateTimeOnPaste();
- m_bSaveMultiPaste = GetSaveMultiPaste();
- m_bShowPersistent = GetShowPersistent();
- m_bHistoryStartTop = GetHistoryStartTop();
- m_bDescTextSize = GetDescTextSize();
- m_bDescShowLeadingWhiteSpace = GetDescShowLeadingWhiteSpace();
- }
- CGetSetOptions::~CGetSetOptions()
- {
- }
- long CGetSetOptions::GetProfileLong(CString csName, long bDefaultValue)
- {
- HKEY hkKey;
- long lResult = RegOpenKeyEx(HKEY_CURRENT_USER, _T(REG_PATH),
- NULL, KEY_READ, &hkKey);
-
- if(lResult != ERROR_SUCCESS)
- return bDefaultValue;
- DWORD buffer;
- DWORD len = sizeof(buffer);
- DWORD type;
- lResult = ::RegQueryValueEx(hkKey, csName, 0, &type, (LPBYTE)&buffer, &len);
-
- RegCloseKey(hkKey);
-
- if(lResult == ERROR_SUCCESS)
- return (long)buffer;
- return bDefaultValue;
- }
- CString CGetSetOptions::GetProfileString(CString csName, CString csDefault)
- {
- HKEY hkKey;
- long lResult = RegOpenKeyEx(HKEY_CURRENT_USER, _T(REG_PATH),
- NULL, KEY_READ, &hkKey);
-
- char szString[256];
- DWORD dwBufLen = 256;
-
- lResult = ::RegQueryValueEx(hkKey , csName, NULL, NULL, (LPBYTE)szString, &dwBufLen);
- if(lResult != ERROR_SUCCESS)
- return csDefault;
- return CString(szString);
- }
- BOOL CGetSetOptions::SetProfileLong(CString csName, long lValue)
- {
- HKEY hkKey;
- DWORD dWord;
- long lResult = RegCreateKeyEx(HKEY_CURRENT_USER, _T(REG_PATH), NULL,
- NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS,
- NULL, &hkKey, &dWord);
- if(lResult != ERROR_SUCCESS)
- return FALSE;
- DWORD val = (DWORD)lValue;
- lResult = ::RegSetValueEx(hkKey, csName, 0, REG_DWORD, (LPBYTE)&val, sizeof(DWORD));
- RegCloseKey(hkKey);
- return lResult == ERROR_SUCCESS;
- }
- BOOL CGetSetOptions::SetProfileString(CString csName, CString csValue)
- {
- HKEY hkKey;
- DWORD dWord;
- long lResult = RegCreateKeyEx(HKEY_CURRENT_USER, _T(REG_PATH), NULL,
- NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS,
- NULL, &hkKey, &dWord);
- if(lResult != ERROR_SUCCESS)
- return FALSE;
- ::RegSetValueEx(hkKey, csName, NULL, REG_SZ,
- (BYTE*)(LPCTSTR)csValue, csValue.GetLength()+sizeof(TCHAR));
- RegCloseKey(hkKey);
- return lResult == ERROR_SUCCESS;
- }
- BOOL CGetSetOptions::GetShowIconInSysTray()
- {
- return GetProfileLong("ShowIconInSystemTray", TRUE);
- }
- BOOL CGetSetOptions::SetShowIconInSysTray(BOOL bShow)
- {
- return SetProfileLong("ShowIconInSystemTray", bShow);
- }
- BOOL CGetSetOptions::SetEnableTransparency(BOOL bCheck)
- {
- return SetProfileLong("EnableTransparency", bCheck);
- }
- BOOL CGetSetOptions::GetEnableTransparency()
- {
- return GetProfileLong("EnableTransparency", FALSE);
- }
- BOOL CGetSetOptions::SetTransparencyPercent(long lPercent)
- {
- #ifdef AFTER_98
- if(lPercent > OPACITY_MAX)
- lPercent = OPACITY_MAX;
- if(lPercent < 0)
- lPercent = 0;
- return SetProfileLong("TransparencyPercent", lPercent);
- #endif
- return FALSE;
- }
- long CGetSetOptions::GetTransparencyPercent()
- {
- #ifdef AFTER_98
- long lValue = GetProfileLong("TransparencyPercent", 14);
- if(lValue > OPACITY_MAX) lValue = OPACITY_MAX;
- if(lValue < 0) lValue = 0;
- return lValue;
- #endif
- return 0;
- }
- BOOL CGetSetOptions::SetLinesPerRow(long lLines)
- {
- return SetProfileLong("LinesPerRow", lLines);
- }
- long CGetSetOptions::GetLinesPerRow()
- {
- return GetProfileLong("LinesPerRow", 2);
- }
- BOOL CGetSetOptions::GetRunOnStartUp()
- {
- HKEY hkRun;
-
- LONG nResult = RegOpenKeyEx(HKEY_CURRENT_USER,
- _T("Software\\Microsoft\\Windows\\CurrentVersion\\Run"),
- NULL, KEY_READ, &hkRun);
-
- if(nResult != ERROR_SUCCESS)
- return FALSE;
- nResult = RegQueryValueEx(hkRun, GetAppName(), NULL, NULL, NULL, NULL);
- RegCloseKey(hkRun);
- return nResult == ERROR_SUCCESS;
- }
- void CGetSetOptions::SetRunOnStartUp(BOOL bRun)
- {
- if(bRun == GetRunOnStartUp())
- return;
- HKEY hkRun;
- LONG nResult = RegOpenKeyEx(HKEY_CURRENT_USER,
- _T("Software\\Microsoft\\Windows\\CurrentVersion\\Run"),
- NULL, KEY_ALL_ACCESS, &hkRun);
- if(nResult != ERROR_SUCCESS)
- return;
- if(bRun)
- {
- CString sExeName = GetExeFileName();
- ::RegSetValueEx(hkRun, GetAppName(), NULL, REG_SZ,
- (BYTE*)(LPCTSTR)sExeName, sExeName.GetLength()+sizeof(TCHAR));
- }
- else
- {
- ::RegDeleteValue(hkRun, GetAppName());
- }
- ::RegCloseKey(hkRun);
- }
- CString CGetSetOptions::GetExeFileName()
- {
- CString sExeName;
- GetModuleFileName(NULL, sExeName.GetBuffer(_MAX_PATH),_MAX_PATH);
- sExeName.ReleaseBuffer();
- return sExeName;
- }
- CString CGetSetOptions::GetAppName()
- {
- return "Ditto";
- }
- BOOL CGetSetOptions::SetQuickPastePosition(long lPosition)
- {
- return SetProfileLong("ShowQuickPastePosition", lPosition);
- }
- long CGetSetOptions::GetQuickPastePosition()
- {
- return GetProfileLong("ShowQuickPastePosition", POS_AT_PREVIOUS);
- }
- BOOL CGetSetOptions::SetQuickPasteSize(CSize size)
- {
- BOOL bRet = SetProfileLong("QuickPasteCX", size.cx);
- bRet = SetProfileLong("QuickPasteCY", size.cy);
- return bRet;
- }
- void CGetSetOptions::GetQuickPasteSize(CSize &size)
- {
- size.cx = GetProfileLong("QuickPasteCX", 300);
- size.cy = GetProfileLong("QuickPasteCY", 300);
- }
- BOOL CGetSetOptions::SetQuickPastePoint(CPoint point)
- {
- BOOL bRet = SetProfileLong("QuickPasteX", point.x);
- bRet = SetProfileLong("QuickPasteY", point.y);
- return bRet;
- }
- void CGetSetOptions::GetQuickPastePoint(CPoint &point)
- {
- point.x = GetProfileLong("QuickPasteX", 300);
- point.y = GetProfileLong("QuickPasteY", 300);
- }
- long CGetSetOptions::GetCopyGap()
- {
- return GetProfileLong("CopyGap", 150);
- }
- BOOL CGetSetOptions::SetDBPath(CString csPath)
- {
- return SetProfileString("DBPath", csPath);
- }
- CString CGetSetOptions::GetDBPath(BOOL bDefault/* = TRUE*/)
- {
- //First check the reg string
- CString csDefaultPath = GetProfileString("DBPath", "");
- //If there is nothing in the regesty then get the default
- //In the users application data in my documents
- if(bDefault)
- {
- if(csDefaultPath.IsEmpty())
- csDefaultPath = GetDefaultDBName();
- }
-
- return csDefaultPath;
- }
- void CGetSetOptions::SetCheckForMaxEntries(BOOL bVal)
- {
- SetProfileLong("CheckForMaxEntries", bVal);
- }
- BOOL CGetSetOptions::GetCheckForMaxEntries()
- {
- return GetProfileLong("CheckForMaxEntries", 0);
- }
- void CGetSetOptions::SetCheckForExpiredEntries(BOOL bVal)
- {
- SetProfileLong("CheckForExpiredEntries", bVal);
- }
- BOOL CGetSetOptions::GetCheckForExpiredEntries()
- {
- return GetProfileLong("CheckForExpiredEntries", 0);
- }
- void CGetSetOptions::SetMaxEntries(long lVal)
- {
- SetProfileLong("MaxEntries", lVal);
- }
- long CGetSetOptions::GetMaxEntries()
- {
- return GetProfileLong("MaxEntries", 500);
- }
- void CGetSetOptions::SetExpiredEntries(long lVal)
- {
- SetProfileLong("ExpiredEntries", lVal);
- }
- long CGetSetOptions::GetExpiredEntries()
- {
- return GetProfileLong("ExpiredEntries", 5);
- }
- void CGetSetOptions::SetTripCopyCount(long lVal)
- {
- // negative means a relative offset
- if(lVal < 0)
- lVal = GetTripCopyCount() - lVal; // add the absolute value
- if(GetTripDate() == 0)
- SetTripDate(-1);
- SetProfileLong("TripCopies", lVal);
- }
- long CGetSetOptions::GetTripCopyCount()
- {
- return GetProfileLong("TripCopies", 0);
- }
- void CGetSetOptions::SetTripPasteCount(long lVal)
- {
- // negative means a relative offset
- if(lVal < 0)
- lVal = GetTripPasteCount() - lVal; // add the absolute value
- if(GetTripDate() == 0)
- SetTripDate(-1);
- SetProfileLong("TripPastes", lVal);
- }
- long CGetSetOptions::GetTripPasteCount()
- {
- return GetProfileLong("TripPastes", 0);
- }
- void CGetSetOptions::SetTripDate(long lDate)
- {
- if(lDate == -1)
- lDate = (long)CTime::GetCurrentTime().GetTime();
- SetProfileLong("TripDate", lDate);
- }
- long CGetSetOptions::GetTripDate()
- {
- return GetProfileLong("TripDate", 0);
- }
- void CGetSetOptions::SetTotalCopyCount(long lVal)
- {
- // negative means a relative offset
- if(lVal < 0)
- lVal = GetTotalCopyCount() - lVal; // add the absolute value
- if(GetTotalDate() == 0)
- SetTotalDate(-1);
- SetProfileLong("TotalCopies", lVal);
- }
- long CGetSetOptions::GetTotalCopyCount()
- {
- return GetProfileLong("TotalCopies", 0);
- }
- void CGetSetOptions::SetTotalPasteCount(long lVal)
- {
- // negative means a relative offset
- if(lVal < 0)
- lVal = GetTotalPasteCount() - lVal; // add the absolute value
- if(GetTotalDate() == 0)
- SetTotalDate(-1);
- SetProfileLong("TotalPastes", lVal);
- }
- long CGetSetOptions::GetTotalPasteCount()
- {
- return GetProfileLong("TotalPastes", 0);
- }
- void CGetSetOptions::SetTotalDate(long lDate)
- {
- if(lDate == -1)
- lDate = (long)CTime::GetCurrentTime().GetTime();
- SetProfileLong("TotalDate", lDate);
- }
- long CGetSetOptions::GetTotalDate()
- {
- return GetProfileLong("TotalDate", 0);
- }
- void CGetSetOptions::SetCompactAndRepairOnExit(BOOL bVal)
- {
- SetProfileLong("CompactAndRepairOnExit", bVal);
- }
- BOOL CGetSetOptions::GetCompactAndRepairOnExit()
- {
- return GetProfileLong("CompactAndRepairOnExit", 0);
- }
- // the implementations for the following functions were moved out-of-line.
- // when they were declared inline, the compiler failed to notice when
- // these functions were changed (the linker used an old compiled version)
- // (maybe because they are also static?)
- CString CGetSetOptions::GetUpdateFilePath() { return GetProfileString("UpdateFilePath", ""); }
- BOOL CGetSetOptions::SetUpdateFilePath(CString cs) { return SetProfileString("UpdateFilePath", cs); }
- CString CGetSetOptions::GetUpdateInstallPath() { return GetProfileString("UpdateInstallPath", ""); }
- BOOL CGetSetOptions::SetUpdateInstallPath(CString cs) { return SetProfileString("UpdateInstallPath", cs); }
- long CGetSetOptions::GetLastUpdate() { return GetProfileLong("LastUpdateDay", 0); }
- long CGetSetOptions::SetLastUpdate(long lValue) { return SetProfileLong("LastUpdateDay", lValue); }
- BOOL CGetSetOptions::GetCheckForUpdates() { return GetProfileLong("CheckForUpdates", TRUE); }
- BOOL CGetSetOptions::SetCheckForUpdates(BOOL bCheck) { return SetProfileLong("CheckForUpdates", bCheck); }
- void CGetSetOptions::SetUseCtrlNumForFirstTenHotKeys(BOOL bVal) { SetProfileLong("UseCtrlNumForFirstTenHotKeys", bVal); m_bUseCtrlNumAccel = bVal; }
- BOOL CGetSetOptions::GetUseCtrlNumForFirstTenHotKeys() { return GetProfileLong("UseCtrlNumForFirstTenHotKeys", 0); }
- void CGetSetOptions::SetAllowDuplicates(BOOL bVal) { SetProfileLong("AllowDuplicates", bVal); m_bAllowDuplicates = bVal; }
- BOOL CGetSetOptions::GetAllowDuplicates() { return GetProfileLong("AllowDuplicates", 0); }
- void CGetSetOptions::SetUpdateTimeOnPaste(BOOL bVal) { SetProfileLong("UpdateTimeOnPaste", bVal); m_bUpdateTimeOnPaste = bVal; }
- BOOL CGetSetOptions::GetUpdateTimeOnPaste() { return GetProfileLong("UpdateTimeOnPaste", TRUE); }
- void CGetSetOptions::SetSaveMultiPaste(BOOL bVal) { SetProfileLong("SaveMultiPaste", bVal); m_bSaveMultiPaste = bVal; }
- BOOL CGetSetOptions::GetSaveMultiPaste() { return GetProfileLong("SaveMultiPaste", 0); }
- void CGetSetOptions::SetShowPersistent(BOOL bVal) { SetProfileLong("ShowPersistent", bVal); m_bShowPersistent = bVal; }
- BOOL CGetSetOptions::GetShowPersistent() { return GetProfileLong("ShowPersistent", 0); }
- void CGetSetOptions::SetHistoryStartTop(BOOL bVal) { SetProfileLong("HistoryStartTop", bVal); m_bHistoryStartTop = bVal; }
- BOOL CGetSetOptions::GetHistoryStartTop() { return GetProfileLong("HistoryStartTop", TRUE); }
- void CGetSetOptions::SetShowTextForFirstTenHotKeys(BOOL bVal) { SetProfileLong("ShowTextForFirstTenHotKeys", bVal); }
- BOOL CGetSetOptions::GetShowTextForFirstTenHotKeys() { return GetProfileLong("ShowTextForFirstTenHotKeys", TRUE); }
- void CGetSetOptions::SetMainHWND(long lhWnd) { SetProfileLong("MainhWnd", lhWnd); }
- BOOL CGetSetOptions::GetMainHWND() { return GetProfileLong("MainhWnd", 0); }
- void CGetSetOptions::SetCaptionPos(long lPos) { SetProfileLong("CaptionPos", lPos); }
- long CGetSetOptions::GetCaptionPos() { return GetProfileLong("CaptionPos", CAPTION_RIGHT); }
- void CGetSetOptions::SetAutoHide(BOOL bAutoHide){ SetProfileLong("AutoHide", bAutoHide); }
- BOOL CGetSetOptions::GetAutoHide() { return GetProfileLong("AutoHide", FALSE); }
- void CGetSetOptions::SetDescTextSize(long lSize){ SetProfileLong("DescTextSize", lSize); m_bDescTextSize = lSize; }
- long CGetSetOptions::GetDescTextSize() { return GetProfileLong("DescTextSize", 500); }
- void CGetSetOptions::SetDescShowLeadingWhiteSpace(BOOL bVal){ SetProfileLong("DescShowLeadingWhiteSpace", bVal); m_bDescShowLeadingWhiteSpace = bVal; }
- BOOL CGetSetOptions::GetDescShowLeadingWhiteSpace() { return GetProfileLong("DescShowLeadingWhiteSpace", FALSE); }
- /*------------------------------------------------------------------*\
- CHotKey - a single system-wide hotkey
- \*------------------------------------------------------------------*/
- CHotKey::CHotKey( CString name, DWORD defKey ) : m_Name(name), m_bIsRegistered(false)
- {
- m_Atom = ::GlobalAddAtom( m_Name );
- ASSERT( m_Atom );
- m_Key = (DWORD) g_Opt.GetProfileLong( m_Name, (long) defKey );
- g_HotKeys.Add( this );
- }
- CHotKey::~CHotKey()
- {
- Unregister();
- }
- void CHotKey::SetKey( DWORD key, bool bSave )
- {
- if( m_Key == key )
- return;
- if( m_bIsRegistered )
- Unregister();
- m_Key = key;
- if( bSave )
- SaveKey();
- }
- void CHotKey::LoadKey()
- {
- SetKey( (DWORD) g_Opt.GetProfileLong( m_Name, 0 ) );
- }
- bool CHotKey::SaveKey()
- {
- return g_Opt.SetProfileLong( m_Name, (long) m_Key ) != FALSE;
- }
- // CString GetKeyAsText();
- // void SetKeyFromText( CString text );
- BOOL CHotKey::ValidateHotKey(DWORD dwHotKey)
- {
- ATOM id = ::GlobalAddAtom("HK_VALIDATE");
- BOOL bResult = ::RegisterHotKey( g_HotKeys.m_hWnd,
- id,
- GetModifier(dwHotKey),
- LOBYTE(dwHotKey) );
-
- if(bResult)
- ::UnregisterHotKey(g_HotKeys.m_hWnd, id);
- ::GlobalDeleteAtom(id);
- return bResult;
- }
- UINT CHotKey::GetModifier(DWORD dwHotKey)
- {
- UINT uMod = 0;
- if( HIBYTE(dwHotKey) & HOTKEYF_SHIFT ) uMod |= MOD_SHIFT;
- if( HIBYTE(dwHotKey) & HOTKEYF_CONTROL ) uMod |= MOD_CONTROL;
- if( HIBYTE(dwHotKey) & HOTKEYF_ALT ) uMod |= MOD_ALT;
- if( HIBYTE(dwHotKey) & HOTKEYF_EXT ) uMod |= MOD_WIN;
- return uMod;
- }
- bool CHotKey::Register()
- {
- if( m_Key )
- {
- ASSERT( g_HotKeys.m_hWnd );
- m_bIsRegistered = ::RegisterHotKey( g_HotKeys.m_hWnd,
- m_Atom,
- GetModifier(),
- LOBYTE(m_Key) ) == TRUE;
- }
- else
- m_bIsRegistered = true;
- return m_bIsRegistered;
- }
- bool CHotKey::Unregister()
- {
- if( !m_bIsRegistered )
- return true;
- if(m_Key)
- {
- ASSERT(g_HotKeys.m_hWnd);
- if( ::UnregisterHotKey( g_HotKeys.m_hWnd, m_Atom ) )
- {
- m_bIsRegistered = false;
- return true;
- }
- else
- {
- LOG("Unregister" "FAILED!");
- ASSERT(0);
- }
- }
- else
- {
- m_bIsRegistered = false;
- }
- return false;
- }
- /*------------------------------------------------------------------*\
- CHotKeys - Manages system-wide hotkeys
- \*------------------------------------------------------------------*/
- CHotKeys g_HotKeys;
- CHotKeys::CHotKeys() : m_hWnd(NULL) {}
- CHotKeys::~CHotKeys()
- {
- CHotKey* pHotKey;
- int count = GetSize();
- for( int i=0; i < count; i++ )
- {
- pHotKey = ElementAt(i);
- if( pHotKey )
- delete pHotKey;
- }
- }
- int CHotKeys::Find( CHotKey* pHotKey )
- {
- int count = GetSize();
- for( int i=0; i < count; i++ )
- {
- if( pHotKey == ElementAt(i) )
- return i;
- }
- return -1;
- }
- bool CHotKeys::Remove( CHotKey* pHotKey )
- {
- int i = Find(pHotKey);
- if( i >= 0 )
- {
- RemoveAt(i);
- return true;
- }
- return false;
- }
- void CHotKeys::LoadAllKeys()
- {
- int count = GetSize();
- for( int i=0; i < count; i++ )
- ElementAt(i)->LoadKey();
- }
- void CHotKeys::SaveAllKeys()
- {
- int count = GetSize();
- for( int i=0; i < count; i++ )
- ElementAt(i)->SaveKey();
- }
- void CHotKeys::RegisterAll( bool bMsgOnError )
- {
- CString str;
- CHotKey* pHotKey;
- int count = GetSize();
- for( int i=0; i < count; i++ )
- {
- pHotKey = ElementAt(i);
- if( !pHotKey->Register() )
- {
- str = "Error Registering ";
- str += pHotKey->GetName();
- LOG( str );
- if( bMsgOnError )
- AfxMessageBox(str);
- }
- }
- }
- void CHotKeys::UnregisterAll( bool bMsgOnError )
- {
- CString str;
- CHotKey* pHotKey;
- int count = GetSize();
- for( int i=0; i < count; i++ )
- {
- pHotKey = ElementAt(i);
- if( !pHotKey->Unregister() )
- {
- str = "Error Unregistering ";
- str += pHotKey->GetName();
- LOG( str );
- if( bMsgOnError )
- AfxMessageBox(str);
- }
- }
- }
- void CHotKeys::GetKeys( ARRAY& keys )
- {
- int count = GetSize();
- keys.SetSize( count );
- for( int i=0; i < count; i++ )
- keys[i] = ElementAt(i)->GetKey();
- }
- // caution! this alters hotkeys based upon corresponding indexes
- void CHotKeys::SetKeys( ARRAY& keys, bool bSave )
- {
- int count = GetSize();
- ASSERT( count == keys.GetSize() );
- for( int i=0; i < count; i++ )
- ElementAt(i)->SetKey( keys[i], bSave );
- }
- bool CHotKeys::FindFirstConflict( ARRAY& keys, int* pX, int* pY )
- {
- bool bConflict = false;
- int i, j;
- int count = keys.GetSize();
- DWORD key;
- for( i=0; i < count && !bConflict; i++ )
- {
- key = keys.ElementAt(i);
- // only check valid keys
- if( key == 0 )
- continue;
- // scan the array for a duplicate
- for( j=i+1; j < count; j++ )
- {
- if( keys.ElementAt(j) == key )
- {
- bConflict = true;
- break;
- }
- }
- }
- if( bConflict )
- {
- if( pX )
- *pX = i;
- if( pY )
- *pY = j;
- }
- return bConflict;
- }
- // if true, pX and pY (if valid) are set to the indexes of the conflicting hotkeys.
- bool CHotKeys::FindFirstConflict( int* pX, int* pY )
- {
- ARRAY keys;
- GetKeys( keys );
- return FindFirstConflict( keys, pX, pY );
- }
- /****************************************************************************************************
- 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;
- // 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();
- }
- }
- /*------------------------------------------------------------------*\
- CAccel - an Accelerator (in-app hotkey)
- - the win32 CreateAcceleratorTable using ACCEL was insufficient
- because it only allowed a WORD for the cmd associated with it.
- \*------------------------------------------------------------------*/
-
- /*------------------------------------------------------------------*\
- CAccels - Manages a set of CAccel
- \*------------------------------------------------------------------*/
- int CompareAccel( const void* pLeft, const void* pRight )
- {
- WORD w;
- int l,r;
- // swap bytes: place the VirtualKey in the MSB and the modifier in the LSB
- // so that Accels based upon the same vkey are grouped together.
- // this is required by our use of m_Index
- // alternatively, we could store them this way in CAccel.
- w = (WORD) ((CAccel*)pLeft)->Key;
- l = (ACCEL_VKEY(w) << 8) | ACCEL_MOD(w);
- w = (WORD) ((CAccel*)pRight)->Key;
- r = (ACCEL_VKEY(w) << 8) | ACCEL_MOD(w);
- return l - r;
- }
- CAccels::CAccels()
- {}
- void CAccels::AddAccel( CAccel& a )
- {
- m_Map.SetAt(a.Key, a.Cmd);
-
- }
- bool CAccels::OnMsg( MSG* pMsg, DWORD &dID)
- {
- // bit 30 (0x40000000) is 1 if this is NOT the first msg of the key
- // i.e. auto-repeat may cause multiple msgs of the same key
- if( (pMsg->lParam & 0x40000000) ||
- (pMsg->message != WM_KEYDOWN &&
- pMsg->message != WM_SYSKEYDOWN) )
- {
- return NULL;
- }
- if( !pMsg || m_Map.GetCount() <= 0 )
- return NULL;
- BYTE vkey = LOBYTE(pMsg->wParam);
- BYTE mod = GetKeyStateModifiers();
- DWORD key = ACCEL_MAKEKEY( vkey, mod );
- if(m_Map.Lookup(key, dID))
- return true;;
- return false;
- }
- BYTE GetKeyStateModifiers()
- {
- BYTE m=0;
- if( GetKeyState(VK_SHIFT) & 0x8000 )
- m |= HOTKEYF_SHIFT;
- if( GetKeyState(VK_CONTROL) & 0x8000 )
- m |= HOTKEYF_CONTROL;
- if( GetKeyState(VK_MENU) & 0x8000 )
- m |= HOTKEYF_ALT;
- return m;
- }
- /*------------------------------------------------------------------*\
- CTokenizer - Tokenizes a string using given delimiters
- \*------------------------------------------------------------------*/
- CTokenizer::CTokenizer(const CString& cs, const CString& csDelim):
- m_cs(cs),
- m_nCurPos(0)
- {
- SetDelimiters(csDelim);
- }
- void CTokenizer::SetDelimiters(const CString& csDelim)
- {
- for(int i = 0; i < csDelim.GetLength(); ++i)
- m_delim.set(static_cast<BYTE>(csDelim[i]));
- }
- bool CTokenizer::Next(CString& cs)
- {
- int len = m_cs.GetLength();
- cs.Empty();
- while(m_nCurPos < len && m_delim[static_cast<BYTE>(m_cs[m_nCurPos])])
- ++m_nCurPos;
- if(m_nCurPos >= len)
- return false;
- int nStartPos = m_nCurPos;
- while(m_nCurPos < len && !m_delim[static_cast<BYTE>(m_cs[m_nCurPos])])
- ++m_nCurPos;
-
- cs = m_cs.Mid(nStartPos, m_nCurPos - nStartPos);
- return true;
- }
- CString CTokenizer::Tail() const
- {
- int len = m_cs.GetLength();
- int nCurPos = m_nCurPos;
- while(nCurPos < len && m_delim[static_cast<BYTE>(m_cs[nCurPos])])
- ++nCurPos;
- CString csResult;
- if(nCurPos < len)
- csResult = m_cs.Mid(nCurPos);
- return csResult;
- }
- /*------------------------------------------------------------------*\
- Global ToolTip Manual Control Functions
- \*------------------------------------------------------------------*/
- void InitToolInfo( TOOLINFO& ti )
- {
- // INITIALIZE MEMBERS OF THE TOOLINFO STRUCTURE
- ti.cbSize = sizeof(TOOLINFO);
- ti.uFlags = TTF_ABSOLUTE | TTF_TRACK;
- ti.hwnd = NULL;
- ti.hinst = NULL;
- ti.uId = 0; // CPopup only uses uid 0
- ti.lpszText = NULL;
- // ToolTip control will cover the whole window
- ti.rect.left = 0;
- ti.rect.top = 0;
- ti.rect.right = 0;
- ti.rect.bottom = 0;
- }
- /*------------------------------------------------------------------*\
- CPopup - a tooltip that pops up manually (when Show is called).
- - technique learned from codeproject "ToolTipZen" by "Zarembo Maxim"
- \*------------------------------------------------------------------*/
- CPopup::CPopup()
- {
- Init();
- }
- // HWND_TOP
- CPopup::CPopup( int x, int y, HWND hWndPosRelativeTo, HWND hWndInsertAfter )
- {
- Init();
- m_hWndPosRelativeTo = hWndPosRelativeTo;
- m_hWndInsertAfter = hWndInsertAfter;
- SetPos( CPoint(x,y) );
- }
- CPopup::~CPopup()
- {
- Hide();
- if( m_bOwnTT && ::IsWindow(m_hTTWnd) )
- ::DestroyWindow( m_hTTWnd );
- }
- void CPopup::Init()
- {
- // initialize variables
- m_bOwnTT = false;
- m_hTTWnd = NULL;
- m_bIsShowing = false;
- m_bAllowShow = true; // used by AllowShow()
- m_Pos.x = m_Pos.y = 0;
- m_bTop = true;
- m_bLeft = true;
- m_bCenterX = false;
- m_bCenterY = false;
- m_hWndPosRelativeTo = NULL;
- RECT rcScreen;
- // Get cordinates of the working area on the screen
- SystemParametersInfo (SPI_GETWORKAREA, 0, &rcScreen, 0);
- m_ScreenMaxX = rcScreen.right;
- m_ScreenMaxY = rcScreen.bottom;
- m_hWndInsertAfter = HWND_TOP; //HWND_TOPMOST
- SetTTWnd();
- }
- void CPopup::SetTTWnd( HWND hTTWnd, TOOLINFO* pTI )
- {
- if( pTI )
- m_TI = *pTI;
- else
- InitToolInfo( m_TI );
- if( m_bOwnTT && ::IsWindow(m_hTTWnd) )
- {
- if( !::IsWindow(hTTWnd) )
- return; // we would have to recreate the one that already exists
- ::DestroyWindow( m_hTTWnd );
- }
- m_hTTWnd = hTTWnd;
- if( ::IsWindow(m_hTTWnd) )
- {
- m_bOwnTT = false;
- // if our uid tooltip already exists, get the data, else add it.
- if( ! ::SendMessage(m_hTTWnd, TTM_GETTOOLINFO, 0, (LPARAM)(LPTOOLINFO) &m_TI) )
- ::SendMessage(m_hTTWnd, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) &m_TI);
- }
- else
- {
- m_bOwnTT = true;
- CreateToolTip();
- }
- }
- void CPopup::CreateToolTip()
- {
- if( m_hTTWnd != NULL )
- return;
- // CREATE A TOOLTIP WINDOW
- m_hTTWnd = CreateWindowEx(
- WS_EX_TOPMOST,
- TOOLTIPS_CLASS,
- NULL,
- TTS_NOPREFIX | TTS_ALWAYSTIP,
- CW_USEDEFAULT,
- CW_USEDEFAULT,
- CW_USEDEFAULT,
- CW_USEDEFAULT,
- NULL,
- NULL,
- NULL,
- NULL
- );
- m_bOwnTT = true;
- // SEND AN ADDTOOL MESSAGE TO THE TOOLTIP CONTROL WINDOW
- ::SendMessage(m_hTTWnd, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) &m_TI);
- }
- void CPopup::SetTimeout( int timeout )
- {
- if( m_hTTWnd == NULL )
- return;
- ::SendMessage(m_hTTWnd, TTM_SETDELAYTIME, TTDT_AUTOMATIC, timeout);
- }
- void CPopup::SetPos( CPoint& pos )
- {
- m_Pos = pos;
- }
- void CPopup::SetPosInfo( bool bTop, bool bCenterY, bool bLeft, bool bCenterX )
- {
- m_bTop = bTop;
- m_bCenterY = bCenterY;
- m_bLeft = bLeft;
- m_bCenterX = bCenterX;
- }
- void CPopup::AdjustPos( CPoint& pos )
- {
- CRect rel(0,0,0,0);
- CRect rect(0,0,0,0);
- // ::SendMessage(m_hTTWnd, TTM_ADJUSTRECT, TRUE, (LPARAM)&rect);
- ::GetWindowRect(m_hTTWnd,&rect);
- if( ::IsWindow(m_hWndPosRelativeTo) )
- ::GetWindowRect(m_hWndPosRelativeTo, &rel);
- rect.MoveToXY( rel.left, rel.top );
- rect.OffsetRect( 0, pos.y - (m_bCenterY? rect.Height()/2: (m_bTop? 0: rect.Height())) );
- if( rect.bottom > m_ScreenMaxY )
- rect.OffsetRect( 0, m_ScreenMaxY - rect.bottom );
- rect.OffsetRect( pos.x - (m_bCenterX? rect.Width()/2: (m_bLeft? 0: rect.Width())), 0 );
- if( rect.right > m_ScreenMaxX )
- rect.OffsetRect( m_ScreenMaxX - rect.right, 0 );
- pos.x = rect.left;
- pos.y = rect.top;
- }
- void CPopup::SendToolTipText( CString text )
- {
- //Replace the tabs with spaces, the tooltip didn't like the \t s
- text.Replace("\t", " ");
- m_TI.lpszText = (LPSTR) (LPCTSTR) text;
- // this allows \n and \r to be interpreted correctly
- ::SendMessage(m_hTTWnd, TTM_SETMAXTIPWIDTH, 0, 500);
- // set the text
- ::SendMessage(m_hTTWnd, TTM_SETTOOLINFO, 0, (LPARAM) (LPTOOLINFO) &m_TI);
- }
- void CPopup::Show( CString text, CPoint pos, bool bAdjustPos )
- {
- if( m_hTTWnd == NULL )
- return;
- if( !m_bIsShowing )
- ::SendMessage(m_hTTWnd, TTM_TRACKPOSITION, 0, (LPARAM)(DWORD) MAKELONG(-10000,-10000));
- SendToolTipText( text );
- ::SendMessage(m_hTTWnd, TTM_TRACKACTIVATE, true, (LPARAM)(LPTOOLINFO) &m_TI);
- if( bAdjustPos )
- AdjustPos(pos);
- // set the position
- ::SendMessage(m_hTTWnd, TTM_TRACKPOSITION, 0, (LPARAM)(DWORD) MAKELONG(pos.x,pos.y));
- // make sure the tooltip will be on top.
- ::SetWindowPos( m_hTTWnd, m_hWndInsertAfter, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE|SWP_NOACTIVATE );
- m_bIsShowing = true;
- }
- void CPopup::Show( CString text )
- { Show( text, m_Pos ); }
- void CPopup::AllowShow( CString text )
- {
- if( m_bAllowShow )
- Show( text, m_Pos );
- }
- void CPopup::Hide()
- {
- if( m_hTTWnd == NULL )
- return;
- // deactivate if it is currently activated
- ::SendMessage(m_hTTWnd, TTM_TRACKACTIVATE, FALSE, (LPARAM)(LPTOOLINFO) &m_TI);
- m_bIsShowing = false;
- }
|