| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 | 
							- // ClipboardViewer.cpp : implementation file
 
- //
 
- #include "stdafx.h"
 
- #include "cp_main.h"
 
- #include "ClipboardViewer.h"
 
- #include "Misc.h"
 
- #include "shared/Tokenizer.h"
 
- #include "WildCardMatch.h"
 
- #ifdef _DEBUG
 
- #define new DEBUG_NEW
 
- #undef THIS_FILE
 
- static char THIS_FILE[] = __FILE__;
 
- #endif
 
- /////////////////////////////////////////////////////////////////////////////
 
- // CClipboardViewer
 
- CClipboardViewer::CClipboardViewer(CCopyThread* pHandler) :
 
- 	m_hNextClipboardViewer(0),
 
- 	m_bCalling_SetClipboardViewer(false),
 
- 	m_pHandler(pHandler),
 
- 	m_bPinging(false),
 
- 	m_bIsConnected(false),
 
- 	m_bConnect(false),
 
- 	m_dwLastCopy(0),
 
- 	m_connectOnStartup(true)
 
- {
 
- 	m_activeWindowTitle = _T("");
 
- 	m_activeWindow = _T("");
 
- }
 
- CClipboardViewer::~CClipboardViewer()
 
- {
 
- }
 
- BEGIN_MESSAGE_MAP(CClipboardViewer, CWnd)
 
- 	//{{AFX_MSG_MAP(CClipboardViewer)
 
- 	ON_WM_CREATE()
 
- 	ON_WM_CHANGECBCHAIN()
 
- 	ON_WM_DRAWCLIPBOARD()
 
- 	ON_WM_TIMER()
 
- 	ON_WM_DESTROY()
 
- 	//}}AFX_MSG_MAP
 
- 	ON_MESSAGE(WM_SETCONNECT, OnSetConnect)
 
- 	ON_MESSAGE(WM_CLIPBOARDUPDATE, OnClipboardChange)
 
- END_MESSAGE_MAP()
 
- /////////////////////////////////////////////////////////////////////////////
 
- // CClipboardViewer message handlers
 
- void CClipboardViewer::Create()
 
- {
 
- 	CString strParentClass = AfxRegisterWndClass(0);
 
- 	CWnd::CreateEx(0, strParentClass, _T("Ditto Clipboard Viewer"), 0, -1, -1, 0, 0, 0, 0);
 
- 	if(m_connectOnStartup)
 
- 	{
 
- 		SetConnect(true);
 
- 	}
 
- }
 
- // connects as a clipboard viewer
 
- void CClipboardViewer::Connect()
 
- {
 
- 	Log(_T("Connect to Clipboard"));
 
- 	
 
- 	m_bCalling_SetClipboardViewer = true;
 
- 	bool useSetClipboardWnd = true;
 
- 	if(IsVista())
 
- 	{
 
- 		HMODULE hUser32 = LoadLibrary(_T("USER32.dll"));
 
- 		if (hUser32) 
 
- 		{
 
- 			typedef BOOL (__stdcall *AddClipFormatListener)( HWND hwnd );
 
- 			AddClipFormatListener addListener = (AddClipFormatListener) GetProcAddress(hUser32, "AddClipboardFormatListener");
 
- 			if(addListener)
 
- 			{
 
- 				Log(_T("Connecting to clipboard with function AddClipboardFormatListener"));
 
- 				useSetClipboardWnd = false;
 
- 				addListener(m_hWnd);				
 
- 			}
 
- 		}
 
- 	}
 
- 	
 
- 	if(useSetClipboardWnd)
 
- 	{
 
- 		Log(_T("Connecting to clipboard with function SetClipboardViewer"));
 
- 		m_hNextClipboardViewer = CWnd::SetClipboardViewer();		
 
- 	}
 
- 	m_bCalling_SetClipboardViewer = false;
 
- 	
 
- 	m_bIsConnected = true;
 
- 	m_bConnect = true;
 
- 	SetEnsureConnectedTimer();
 
- }
 
- void CClipboardViewer::SetEnsureConnectedTimer()
 
- {
 
- 	SetTimer(TIMER_ENSURE_VIEWER_IN_CHAIN, ONE_MINUTE*5, NULL);
 
- }
 
- // disconnects as a clipboard viewer
 
- void CClipboardViewer::Disconnect(bool bSendPing)
 
- {
 
- 	Log(_T("Disconnect From Clipboard"));
 
- 	KillTimer(TIMER_ENSURE_VIEWER_IN_CHAIN);
 
- 	bool removeOldWay = true;
 
- 	if(IsVista())
 
- 	{
 
- 		HMODULE hUser32 = LoadLibrary(_T("USER32.dll"));
 
- 		if (hUser32) 
 
- 		{
 
- 			typedef BOOL (__stdcall *RemoveClipFormatListener)( HWND hwnd );
 
- 			RemoveClipFormatListener removeListener = (RemoveClipFormatListener) GetProcAddress(hUser32, "RemoveClipboardFormatListener");
 
- 			if(removeListener)
 
- 			{
 
- 				Log(_T("Disconnecting from clipboard with function RemoveClipboardFormatListener"));
 
- 				removeOldWay = false;
 
- 				removeListener(m_hWnd);				
 
- 			}
 
- 		}
 
- 	}
 
- 	
 
- 	if(removeOldWay)
 
- 	{
 
- 		Log(_T("Disconnecting from clipboard with function ChangeClipboardChain"));
 
- 		BOOL bRet = CWnd::ChangeClipboardChain(m_hNextClipboardViewer);
 
- 		if(!bRet)
 
- 		{
 
- 			Log(_T("Error disconnecting from clipboard"));
 
- 			bRet = CWnd::ChangeClipboardChain(m_hNextClipboardViewer);
 
- 			if(!bRet)
 
- 			{
 
- 				Log(_T("Error disconnecting from clipboard2"));
 
- 			}
 
- 		}
 
- 	}
 
- 	m_hNextClipboardViewer = 0;
 
- 	m_bConnect = false;
 
- 	m_bIsConnected = false;
 
- 	if(bSendPing)
 
- 		SendPing();
 
- }
 
- void CClipboardViewer::SendPing()
 
- {
 
- 	if(g_Opt.m_bEnsureConnectToClipboard)
 
- 	{
 
- 		if(OpenClipboard())
 
- 		{
 
- 			m_bPinging = true;
 
- 			SetClipboardData(theApp.m_PingFormat, NewGlobalP("Ditto Ping", sizeof("Ditto Ping")));
 
- 			SetClipboardData(theApp.m_cfIgnoreClipboard , NewGlobalP("Ignore", sizeof("Ignore")));
 
- 			SetTimer(TIMER_PING, 2000, NULL);
 
- 			CloseClipboard();
 
- 		}
 
- 	}
 
- }
 
- void CClipboardViewer::SetConnect(bool bConnect)
 
- {
 
- 	m_bConnect = bConnect;
 
- 	if(bConnect)
 
- 	{
 
- 		if(m_bIsConnected == false)
 
- 		{
 
- 			Connect();
 
- 		}
 
- 		else
 
- 		{
 
- 			SendPing();
 
- 		}
 
- 	}
 
- 	else
 
- 	{
 
- 		Disconnect();
 
- 	}
 
- }
 
- /////////////////////////////////////////////////////////////////////////////
 
- // CClipboardViewer message handlers
 
- int CClipboardViewer::OnCreate(LPCREATESTRUCT lpCreateStruct)
 
- {
 
- 	if(CWnd::OnCreate(lpCreateStruct) == -1)
 
- 		return -1;
 
- 	
 
- 	//Set up the clip board viewer
 
- 	if(m_connectOnStartup)
 
- 	{
 
- 		Connect();
 
- 	}
 
- 	
 
- 	return 0;
 
- }
 
- void CClipboardViewer::OnDestroy()
 
- {
 
- 	Disconnect();
 
- 	CWnd::OnDestroy();
 
- }
 
- void CClipboardViewer::OnChangeCbChain(HWND hWndRemove, HWND hWndAfter) 
 
- {
 
- 	Log(_T("OnChangeCbChain"));
 
- 	
 
- 	// If the next window is closing, repair the chain. 
 
- 	if(m_hNextClipboardViewer == hWndRemove)
 
-     {
 
- 		m_hNextClipboardViewer = hWndAfter;
 
-     }
 
-     // Otherwise, pass the message to the next link.
 
- 	else if (m_hNextClipboardViewer != NULL)
 
-     {
 
- 		if(m_hNextClipboardViewer != m_hWnd)
 
- 		{
 
- 			::SendMessage(m_hNextClipboardViewer, WM_CHANGECBCHAIN, (WPARAM) hWndRemove, (LPARAM) hWndAfter);
 
- 		}
 
- 		else
 
- 		{
 
- 			m_hNextClipboardViewer = NULL;
 
- 		}
 
-     }
 
- }
 
- LRESULT CClipboardViewer::OnClipboardChange(WPARAM wParam, LPARAM lPara)
 
- {
 
- 	Log(StrF(_T("OnClipboardChange - Start")));
 
- 	OnDrawClipboard();
 
- 	Log(StrF(_T("OnClipboardChange - End")));
 
- 	return TRUE;
 
- }
 
- //Message that the clipboard data has changed
 
- void CClipboardViewer::OnDrawClipboard() 
 
- {
 
- 	if(::IsClipboardFormatAvailable(theApp.m_PingFormat))
 
- 	{
 
- 		m_bPinging = false;
 
- 		return;
 
- 	}
 
- 	// don't process the event when we first attach
 
- 	if(m_pHandler && !m_bCalling_SetClipboardViewer)
 
- 	{
 
- 		if(m_bIsConnected)
 
- 		{
 
- 			if(!::IsClipboardFormatAvailable(theApp.m_cfIgnoreClipboard))
 
- 			{
 
- 				if(ValidActiveWnd())
 
- 				{          
 
- 					Log(StrF(_T("OnDrawClipboard:: *** SetTimer *** %d"), GetTickCount()));
 
- 					KillTimer(TIMER_DRAW_CLIPBOARD);
 
- 					SetTimer(TIMER_DRAW_CLIPBOARD, g_Opt.m_lProcessDrawClipboardDelay, NULL);		
 
- 				}
 
- 			}
 
- 		}
 
- 		else
 
- 		{
 
- 			Log(_T("Not connected, ignore clipboard change"));
 
- 		}
 
- 	}
 
- 	// pass the event to the next Clipboard viewer in the chain
 
- 	if(m_hNextClipboardViewer != NULL)
 
- 	{
 
- 		if(m_hNextClipboardViewer != m_hWnd)
 
- 		{
 
- 			::SendMessage(m_hNextClipboardViewer, WM_DRAWCLIPBOARD, 0, 0);	
 
- 		}
 
- 		else
 
- 		{
 
- 			m_hNextClipboardViewer = NULL;
 
- 		}
 
- 	}
 
- }
 
- bool CClipboardViewer::ValidActiveWnd()
 
- {
 
- 	m_activeWindow = _T("");
 
- 	m_activeWindowTitle = _T("";)
 
- 	HWND owner = ::GetClipboardOwner();
 
- 	if (owner != NULL)
 
- 	{
 
- 		DWORD PID = 0;
 
- 		::GetWindowThreadProcessId(owner, &PID);
 
- 		if (PID != 0)
 
- 		{
 
- 			m_activeWindow = GetProcessName(NULL, PID);
 
- 			m_activeWindowTitle = TopLevelWindowText(PID);			
 
- 		}
 
- 	}
 
- 	//L"RuntimeBroker.exe" is what all modern apps report as
 
- 	if (m_activeWindow == _T(""))
 
- 	{
 
- 		HWND active = ::GetForegroundWindow();
 
- 		m_activeWindow = GetProcessName(active, 0);
 
- 		m_activeWindowTitle = GetWndText(active);
 
- 	}
 
- 	m_activeWindow = m_activeWindow.MakeLower();
 
- 	CString includeApps = CGetSetOptions::GetCopyAppInclude().MakeLower();
 
- 	Log(StrF(_T("INCLUDE app names: %s, Active App: %s"), includeApps, m_activeWindow));
 
- 	bool tokenMatch = false;
 
- 	CTokenizer token(includeApps, CGetSetOptions::GetCopyAppSeparator());
 
- 	CString line;
 
- 	while(token.Next(line))
 
- 	{
 
- 		if(line != "")
 
- 		{
 
- 			if(CWildCardMatch::WildMatch(line.Trim(), m_activeWindow, ""))
 
- 			{
 
- 				Log(StrF(_T("Inlclude app names Found Match %s - %s"), line, m_activeWindow));
 
- 				tokenMatch = true;
 
- 				break;
 
- 			}
 
- 		}
 
- 	}				
 
- 	if(tokenMatch)
 
- 	{
 
- 		CString excludeApps = CGetSetOptions::GetCopyAppExclude().MakeLower();
 
- 		if(excludeApps != "")
 
- 		{
 
- 			Log(StrF(_T("EXCLUDE app names %s, Active App: %s"), excludeApps, m_activeWindow));
 
- 			CTokenizer token2(excludeApps, CGetSetOptions::GetCopyAppSeparator());
 
- 			CString line2;
 
- 			while(token2.Next(line2))
 
- 			{
 
- 				if(line2 != "")
 
- 				{
 
- 					if(CWildCardMatch::WildMatch(line2.Trim(), m_activeWindow, ""))
 
- 					{
 
- 						Log(StrF(_T("Exclude app names Found Match %s - %s - NOT SAVING COPY"), line2, m_activeWindow));
 
- 						return false;
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	else
 
- 	{
 
- 		Log(StrF(_T("Didn't find a match to INCLUDE match %s, NOT SAVING COPY"), includeApps));
 
- 		return false;
 
- 	}
 
- 	return true;
 
- }
 
- void CClipboardViewer::OnTimer(UINT_PTR nIDEvent) 
 
- {
 
- 	switch(nIDEvent)
 
- 	{
 
- 	case TIMER_ENSURE_VIEWER_IN_CHAIN:
 
- 		SendPing();
 
- 		break;
 
- 	case TIMER_DRAW_CLIPBOARD:
 
- 		{
 
- 			KillTimer(nIDEvent);
 
- 		
 
- 			DWORD dwNow = GetTickCount();
 
- 			if(dwNow - m_dwLastCopy > g_Opt.m_dwSaveClipDelay || m_dwLastCopy > dwNow)
 
- 			{
 
- 				if(!::IsClipboardFormatAvailable(theApp.m_cfIgnoreClipboard))
 
- 				{
 
- 					Log(StrF(_T("OnDrawClipboard::OnTimer %d"), dwNow));
 
- 					m_pHandler->OnClipboardChange(m_activeWindow, m_activeWindowTitle);
 
- 					m_dwLastCopy = dwNow;
 
- 				}
 
- 			}
 
- 			else
 
- 			{
 
- 				Log(StrF(_T("Clip copy to fast difference from last copy = %d"), (dwNow - m_dwLastCopy)));
 
- 			}
 
- 			m_activeWindow = _T("");
 
- 			m_activeWindowTitle = _T("");
 
- 		}
 
- 		break;
 
- 	case TIMER_PING:
 
- 		KillTimer(TIMER_PING);
 
- 		//If we haven't received the change clipboard message then we are disconnected
 
- 		//if so reconnect
 
- 		if(m_bPinging)
 
- 		{
 
- 			if(m_bConnect)
 
- 			{
 
- 				Log(_T("Ping Failed Reconnecting to clipboard"));
 
- 				Disconnect(false);
 
- 				Connect();
 
- 			}
 
- 			else
 
- 			{
 
- 				Log(_T("Ping Failed but Connected set to FALSE so this is ok"));
 
- 			}
 
- 		}
 
- 		else
 
- 		{
 
- 			if(m_bConnect)
 
- 			{
 
- 				m_bIsConnected = true;
 
- 			}
 
- 		}
 
- 		break;
 
- 	}
 
- 	
 
- 	CWnd::OnTimer(nIDEvent);
 
- }
 
- LRESULT CClipboardViewer::OnSetConnect(WPARAM wParam, LPARAM lParam)
 
- {
 
- 	bool bConnect = wParam == TRUE;
 
- 	SetConnect(bConnect);
 
- 	return TRUE;
 
- }
 
 
  |