Index: modules/App Framework/TrayIcon.cpp
===================================================================
diff -u -N
--- modules/App Framework/TrayIcon.cpp	(revision 7d997aef1e72f049ed1bc199e1b765d737d9963a)
+++ modules/App Framework/TrayIcon.cpp	(revision 0)
@@ -1,162 +0,0 @@
-/************************************************************************
-	Copy Handler 1.x - program for copying data in Microsoft Windows
-						 systems.
-	Copyright (C) 2001-2003 Ixen Gerthannes (ixen@interia.pl)
-
-	This program is free software; you can redistribute it and/or modify
-	it under the terms of the GNU General Public License as published by
-	the Free Software Foundation; either version 2 of the License, or
-	(at your option) any later version.
-
-	This program is distributed in the hope that it will be useful,
-	but WITHOUT ANY WARRANTY; without even the implied warranty of
-	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-	GNU General Public License for more details.
-
-	You should have received a copy of the GNU General Public License
-	along with this program; if not, write to the Free Software
-	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-*************************************************************************/
-#include "stdafx.h"
-#include "TrayIcon.h"
-
-#ifdef _DEBUG
-#define new DEBUG_NEW
-#endif
-
-/////////////////////////////////////////////////////////////////////////////
-// CTrayIcon construction/creation/destruction
-
-CTrayIcon::CTrayIcon()
-{
-	memset(&m_tnd, 0, sizeof(m_tnd));
-	m_bHidden=false;
-}
-
-CTrayIcon::CTrayIcon(HWND hWnd, UINT uClbMsg, LPCTSTR szText, HICON hIcon, UINT uiID)
-{
-	CreateIcon(hWnd, uClbMsg, szText, hIcon, uiID);
-	m_bHidden=false;
-}
-
-bool CTrayIcon::CreateIcon(HWND hWnd, UINT uClbMsg, LPCTSTR szText, HICON hIcon, UINT uiID)
-{
-	_ASSERT(hWnd);
-
-	// load up the NOTIFYICONDATA structure
-	m_tnd.cbSize=sizeof(NOTIFYICONDATA);
-	m_tnd.hWnd=hWnd;
-	m_tnd.uID=uiID;
-	m_tnd.hIcon=hIcon;
-	m_tnd.uFlags=NIF_MESSAGE | NIF_ICON | NIF_TIP;
-	m_tnd.uCallbackMessage=uClbMsg;
-	_tcsncpy(m_tnd.szTip, szText, 64);
-	size_t tLen=_tcslen(szText);
-	if (tLen < 64)
-		m_tnd.szTip[tLen]=_T('\0');
-	else
-		m_tnd.szTip[63]=_T('\0');
-
-	// Set the tray icon
-	return Shell_NotifyIcon(NIM_ADD, &m_tnd) != FALSE;
-}
-
-CTrayIcon::~CTrayIcon()
-{
-	RemoveIcon();
-}
-
-
-/////////////////////////////////////////////////////////////////////////////
-// CTrayIcon icon manipulation
-
-void CTrayIcon::MoveToRight()
-{
-	HideIcon();
-	ShowIcon();
-}
-
-void CTrayIcon::RemoveIcon()
-{
-	m_tnd.uFlags=0;
-    Shell_NotifyIcon(NIM_DELETE, &m_tnd);
-}
-
-void CTrayIcon::HideIcon()
-{
-	if (!m_bHidden)
-	{
-		m_tnd.uFlags=NIF_ICON;
-		Shell_NotifyIcon (NIM_DELETE, &m_tnd);
-		m_bHidden=true;
-	}
-}
-
-bool CTrayIcon::ShowIcon()
-{
-	if (m_bHidden)
-	{
-		m_tnd.uFlags=NIF_MESSAGE | NIF_ICON | NIF_TIP;
-		m_bHidden=false;
-		return Shell_NotifyIcon(NIM_ADD, &m_tnd) != FALSE;
-	}
-	return true;
-}
-
-bool CTrayIcon::SetIcon(HICON hIcon)
-{
-	m_tnd.uFlags=NIF_ICON;
-	m_tnd.hIcon=hIcon;
-
-	return Shell_NotifyIcon(NIM_MODIFY, &m_tnd) != 0;
-}
-
-bool CTrayIcon::SetStandardIcon(LPCTSTR lpIconName)
-{
-	HICON hIcon=::LoadIcon(NULL, lpIconName);
-	return SetIcon(hIcon);
-}
- 
-HICON CTrayIcon::GetIcon() const
-{
-	return m_tnd.hIcon;
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// CTrayIcon tooltip text manipulation
-
-bool CTrayIcon::SetTooltipText(LPCTSTR pszTip)
-{
-	m_tnd.uFlags = NIF_TIP;
-	_tcsncpy(m_tnd.szTip, pszTip, 64);
-	size_t tLen=_tcslen(pszTip);
-	if (tLen < 64)
-		m_tnd.szTip[tLen]=_T('\0');
-	else
-		m_tnd.szTip[63]=_T('\0');
-
-	return Shell_NotifyIcon(NIM_MODIFY, &m_tnd) != FALSE;
-}
-
-void CTrayIcon::GetTooltipText(LPTSTR pszText) const
-{
-	_tcscpy(pszText, m_tnd.szTip);
-}
-
-/////////////////////////////////////////////////////////////////////////////
-// CTrayIcon notification window stuff
-
-bool CTrayIcon::SetNotificationWnd(HWND hWnd)
-{
-	_ASSERT(hWnd);
-
-	m_tnd.hWnd=hWnd;
-	m_tnd.uFlags=0;
-
-	return Shell_NotifyIcon(NIM_MODIFY, &m_tnd) != FALSE;
-}
-
-HWND CTrayIcon::GetNotificationWnd() const
-{
-	return m_tnd.hWnd;
-}
\ No newline at end of file