From d47048e922200349bcfa5b81fc4b17b771d221e6 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Mon, 9 Jul 2012 07:11:17 +0000 Subject: BossKeyPlus: compilation fix and warnings deprecation git-svn-id: http://svn.miranda-ng.org/main/trunk@869 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/BossKeyPlus/BossKeyIdle.cpp | 91 ------------------------------------- 1 file changed, 91 deletions(-) delete mode 100644 plugins/BossKeyPlus/BossKeyIdle.cpp (limited to 'plugins/BossKeyPlus/BossKeyIdle.cpp') diff --git a/plugins/BossKeyPlus/BossKeyIdle.cpp b/plugins/BossKeyPlus/BossKeyIdle.cpp deleted file mode 100644 index eba26fd29e..0000000000 --- a/plugins/BossKeyPlus/BossKeyIdle.cpp +++ /dev/null @@ -1,91 +0,0 @@ -/* - -Miranda IM: the free IM client for Microsoft* Windows* - -Copyright 2000-2005 Miranda ICQ/IM project, -all portions of this codebase are copyrighted to the people -listed in contributors.txt. - -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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -*/ - -#include "BossKey.h" - -POINT mousepos; -UINT_PTR hTimer; -UINT mouseidle, minutes; - -static BOOL (WINAPI * MyGetLastInputInfo)(PLASTINPUTINFO); - -VOID CALLBACK IdleTimer(HWND hwnd, UINT umsg, UINT idEvent, DWORD dwTime); - -static bool IsScreenSaverRunning() -{ - bool rc = FALSE; - SystemParametersInfo(SPI_GETSCREENSAVERRUNNING, 0, &rc, FALSE); - return rc; -} - -static bool IsUserIdle() -{ - DWORD dwTick; - if ( g_wMaskAdv & OPT_HIDEIFMIRIDLE ) { - CallService(MS_SYSTEM_GETIDLE, 0, (DWORD)&dwTick); - return GetTickCount() - dwTick > (minutes * 60 * 1000); - } - - if ( MyGetLastInputInfo != NULL ) { - LASTINPUTINFO ii; - ZeroMemory(&ii,sizeof(ii)); - ii.cbSize=sizeof(ii); - if ( MyGetLastInputInfo(&ii)) - return GetTickCount() - ii.dwTime > (minutes * 60 * 1000); - } - else { - POINT pt; - GetCursorPos(&pt); - if ( pt.x != mousepos.x || pt.y != mousepos.y ) { - mousepos=pt; - mouseidle=0; - } - else mouseidle += 2; - - if ( mouseidle ) - return mouseidle >= (minutes * 60); - } - return FALSE; -} - - -VOID CALLBACK IdleTimer(HWND hwnd, UINT umsg, UINT_PTR idEvent, DWORD dwTime) -{ - if ( hTimer == idEvent && !g_bWindowHidden && - ((g_wMaskAdv & (OPT_HIDEIFWINIDLE | OPT_HIDEIFMIRIDLE) && IsUserIdle()) || - (g_wMaskAdv & OPT_HIDEIFSCRSVR && IsScreenSaverRunning()))) - - BossKeyHideMiranda(0, 0); -} - -void InitIdleTimer() -{ - minutes = DBGetContactSettingByte(NULL,MOD_NAME,"time",10); - MyGetLastInputInfo=(BOOL (WINAPI *)(LASTINPUTINFO*))GetProcAddress(GetModuleHandleA("user32"), "GetLastInputInfo"); - hTimer=SetTimer(NULL, 0, 2000, IdleTimer); -} - -void UninitIdleTimer() -{ - KillTimer(NULL, hTimer); -} -- cgit v1.2.3