2 * Copyright (C) 2005-2013 Team XBMC
5 * This Program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
10 * This Program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with XBMC; see the file COPYING. If not, see
17 * <http://www.gnu.org/licenses/>.
21 #include "WindowHelper.h"
28 CWHelper g_windowHelper
;
30 CWHelper::CWHelper(void) : CThread("WindowHelper")
36 CWHelper::~CWHelper(void)
40 if(m_hProcess
!= NULL
)
42 CloseHandle(m_hProcess
);
47 void CWHelper::OnStartup()
49 if((m_hwnd
== NULL
) && (m_hProcess
== NULL
))
52 // Minimize XBMC if not already
53 ShowWindow(g_hWnd
,SW_MINIMIZE
);
55 ShowWindow(m_hwnd
,SW_RESTORE
);
57 OutputDebugString("WindowHelper thread started\n");
60 void CWHelper::OnExit()
62 // Bring back XBMC window
63 ShowWindow(g_hWnd
,SW_RESTORE
);
64 SetForegroundWindow(g_hWnd
);
66 if(m_hProcess
!= NULL
)
68 CloseHandle(m_hProcess
);
71 LockSetForegroundWindow(LSFW_LOCK
);
72 OutputDebugString("WindowHelper thread ended\n");
75 void CWHelper::Process()
79 if(WaitForSingleObject(m_hProcess
,500) != WAIT_TIMEOUT
)
81 /*if((m_hwnd != NULL) && (IsIconic(m_hwnd) == TRUE))
86 void CWHelper::SetHWND(HWND hwnd
)
91 void CWHelper::SetHANDLE(HANDLE hProcess
)
93 m_hProcess
= hProcess
;