Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Systray.cpp « VSFilter « transform « filters « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4aeb6e5bf40058b68915fc5912135d5de4723af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/*
 * $Id$
 *
 * (C) 2003-2006 Gabest
 * (C) 2006-2012 see Authors.txt
 *
 * This file is part of MPC-HC.
 *
 * MPC-HC 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 3 of the License, or
 * (at your option) any later version.
 *
 * MPC-HC 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, see <http://www.gnu.org/licenses/>.
 *
 */

#include "stdafx.h"
#include "resource.h"
#include "DirectVobSubFilter.h"
#include "../../../DSUtil/DSUtil.h"
#include "Systray.h"

// hWnd == INVALID_HANDLE_VALUE - get name, hWnd != INVALID_HANDLE_VALUE - show ppage
static TCHAR* CallPPage(IFilterGraph* pGraph, int idx, HWND hWnd);

static HHOOK g_hHook = (HHOOK)INVALID_HANDLE_VALUE;

static UINT WM_DVSPREVSUB = RegisterWindowMessage(_T("WM_DVSPREVSUB"));
static UINT WM_DVSNEXTSUB = RegisterWindowMessage(_T("WM_DVSNEXTSUB"));
static UINT WM_DVSHIDESUB = RegisterWindowMessage(_T("WM_DVSHIDESUB"));
static UINT WM_DVSSHOWSUB = RegisterWindowMessage(_T("WM_DVSSHOWSUB"));
static UINT WM_DVSSHOWHIDESUB = RegisterWindowMessage(_T("WM_DVSSHOWHIDESUB"));
static UINT s_uTaskbarRestart = RegisterWindowMessage(_T("TaskbarCreated"));
static UINT WM_NOTIFYICON = RegisterWindowMessage(_T("MYWM_NOTIFYICON"));

LRESULT CALLBACK HookProc(UINT code, WPARAM wParam, LPARAM lParam)
{
    MSG* msg = (MSG*)lParam;

    if (msg->message == WM_KEYDOWN) {
        switch (msg->wParam) {
            case VK_F13:
                PostMessage(HWND_BROADCAST, WM_DVSPREVSUB, 0, 0);
                break;
            case VK_F14:
                PostMessage(HWND_BROADCAST, WM_DVSNEXTSUB, 0, 0);
                break;
            case VK_F15:
                PostMessage(HWND_BROADCAST, WM_DVSHIDESUB, 0, 0);
                break;
            case VK_F16:
                PostMessage(HWND_BROADCAST, WM_DVSSHOWSUB, 0, 0);
                break;
            case VK_F17:
                PostMessage(HWND_BROADCAST, WM_DVSSHOWHIDESUB, 0, 0);
                break;
            default:
                break;
        }
    }

    // Always call next hook in chain
    return CallNextHookEx(g_hHook, code,  wParam, lParam);
}

BEGIN_MESSAGE_MAP(CSystrayWindow, CWnd)
    ON_WM_CREATE()
    ON_WM_CLOSE()
    ON_WM_DESTROY()
    ON_WM_TIMER()
    ON_REGISTERED_MESSAGE(WM_DVSPREVSUB, OnDVSPrevSub)
    ON_REGISTERED_MESSAGE(WM_DVSNEXTSUB, OnDVSNextSub)
    ON_REGISTERED_MESSAGE(WM_DVSHIDESUB, OnDVSHideSub)
    ON_REGISTERED_MESSAGE(WM_DVSSHOWSUB, OnDVSShowSub)
    ON_REGISTERED_MESSAGE(WM_DVSSHOWHIDESUB, OnDVSShowHideSub)
    ON_REGISTERED_MESSAGE(s_uTaskbarRestart, OnTaskBarRestart)
    ON_REGISTERED_MESSAGE(WM_NOTIFYICON, OnNotifyIcon)
END_MESSAGE_MAP()

int CSystrayWindow::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
    if (CWnd::OnCreate(lpCreateStruct) == -1) {
        return -1;
    }

    if (g_hHook == INVALID_HANDLE_VALUE) {
        AFX_MANAGE_STATE(AfxGetStaticModuleState());
        //      g_hHook = SetWindowsHookEx(WH_GETMESSAGE, (HOOKPROC)HookProc, AfxGetInstanceHandle(), 0);
    }

    PostMessage(s_uTaskbarRestart);

    return 0;
}

void CSystrayWindow::OnClose()
{
    DestroyWindow();
}

void CSystrayWindow::OnDestroy()
{
    NOTIFYICONDATA tnid;
    ZeroMemory(&tnid, sizeof(NOTIFYICONDATA));
    tnid.cbSize = sizeof(NOTIFYICONDATA);
    tnid.hWnd = m_hWnd;
    tnid.uID = IDI_ICON1;
    Shell_NotifyIcon(NIM_DELETE, &tnid);

    if (g_hHook != INVALID_HANDLE_VALUE) {
        UnhookWindowsHookEx(g_hHook);
        g_hHook = (HHOOK)INVALID_HANDLE_VALUE;
    }

    PostQuitMessage(0);
}

LRESULT CSystrayWindow::OnDVSPrevSub(WPARAM, LPARAM)
{
    StepSub(-1);
    return 0;
}

LRESULT CSystrayWindow::OnDVSNextSub(WPARAM, LPARAM)
{
    StepSub(+1);
    return 0;
}

LRESULT CSystrayWindow::OnDVSHideSub(WPARAM, LPARAM)
{
    ShowSub(false);
    return 0;
}

LRESULT CSystrayWindow::OnDVSShowSub(WPARAM, LPARAM)
{
    ShowSub(true);
    return 0;
}

LRESULT CSystrayWindow::OnDVSShowHideSub(WPARAM, LPARAM)
{
    ToggleSub();
    return 0;
}

LRESULT CSystrayWindow::OnTaskBarRestart(WPARAM, LPARAM)
{
    AFX_MANAGE_STATE(AfxGetStaticModuleState());

    if (m_tbid->fShowIcon) {
        NOTIFYICONDATA tnid;
        ZeroMemory(&tnid, sizeof(NOTIFYICONDATA));
        tnid.cbSize = sizeof(NOTIFYICONDATA);
        tnid.hWnd = m_hWnd;
        tnid.uID = IDI_ICON1;
        tnid.hIcon = (HICON)LoadIcon(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ICON1));
        //tnid.hIcon = (HICON)LoadImage(AfxGetResourceHandle(), MAKEINTRESOURCE(IDI_ICON1), IMAGE_ICON, 0, 0, LR_LOADTRANSPARENT);
        tnid.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP;
        tnid.uCallbackMessage = WM_NOTIFYICON;
        _tcscpy_s(tnid.szTip, _T("DirectVobSub"));

        BOOL res = Shell_NotifyIcon(NIM_ADD, &tnid);

        if (tnid.hIcon) {
            DestroyIcon(tnid.hIcon);
        }

        return res ? 0 : -1;
    }

    return 0;
}

LRESULT CSystrayWindow::OnNotifyIcon(WPARAM wParam, LPARAM lParam)
{
    if ((UINT)wParam != IDI_ICON1) {
        return -1;
    }

    HWND hWnd = m_hWnd;

    switch ((UINT)lParam) {
        case WM_LBUTTONDBLCLK: {
            // IMPORTANT: we must not hold the graph at the same time as showing the property page
            // or else when closing the app the graph doesn't get released and dvobsub's JoinFilterGraph
            // is never called to close us down.

            CComPtr<IBaseFilter> pBF2;

            BeginEnumFilters(m_tbid->graph, pEF, pBF) {
                if (!CComQIPtr<IDirectVobSub>(pBF)) {
                    continue;
                }

                if (CComQIPtr<IVideoWindow> pVW = m_tbid->graph) {
                    HWND hwnd;
                    if (SUCCEEDED(pVW->get_Owner((OAHWND*)&hwnd))
                            || SUCCEEDED(pVW->get_MessageDrain((OAHWND*)&hwnd))) {
                        hWnd = hwnd;
                    }
                }

                pBF2 = pBF;

                break;
            }
            EndEnumFilters

            if (pBF2) {
                ShowPPage(pBF2, hWnd);
            }
        }
        break;

        case WM_RBUTTONDOWN: {
            POINT p;
            GetCursorPos(&p);

            CInterfaceArray<IAMStreamSelect> pStreams;
            CStringArray names;

            BeginEnumFilters(m_tbid->graph, pEF, pBF) {
                CString name = GetFilterName(pBF);
                if (name.IsEmpty()) {
                    continue;
                }

                if (CComQIPtr<IAMStreamSelect> pSS = pBF) {
                    pStreams.Add(pSS);
                    names.Add(name);
                }
            }
            EndEnumFilters

            CMenu popup;
            popup.CreatePopupMenu();

            for (size_t j = 0; j < pStreams.GetCount(); j++) {
                bool fMMSwitcher = !names[j].Compare(_T("Morgan Stream Switcher"));

                DWORD cStreams = 0;
                pStreams[j]->Count(&cStreams);

                DWORD flags, group, prevgroup = (DWORD) - 1;

                for (UINT i = 0; i < cStreams; i++) {
                    WCHAR* pName = NULL;

                    if (S_OK == pStreams[j]->Info(i, 0, &flags, 0, &group, &pName, 0, 0)) {
                        if (prevgroup != group && i > 1) {
                            if (fMMSwitcher) {
                                cStreams = i;
                                break;
                            }
                            popup.AppendMenu(MF_SEPARATOR);
                        }
                        prevgroup = group;

                        if (pName) {
                            popup.AppendMenu(MF_ENABLED | MF_STRING | (flags ? MF_CHECKED : MF_UNCHECKED), (1 << 15) | (j << 8) | (i), CString(pName));
                            CoTaskMemFree(pName);
                        }
                    }
                }

                if (cStreams > 0) {
                    popup.AppendMenu(MF_SEPARATOR);
                }
            }

            int i = 0;

            TCHAR* str;
            str = CallPPage(m_tbid->graph, i, (HWND)INVALID_HANDLE_VALUE);
            while (str) {
                if (_tcsncmp(str, _T("DivX MPEG"), 9) || m_tbid->fRunOnce) { // divx3's ppage will crash if the graph hasn't been run at least once yet
                    popup.AppendMenu(MF_ENABLED | MF_STRING | MF_UNCHECKED, (1 << 14) | (i), str);
                }

                delete [] str;

                i++;
                str = CallPPage(m_tbid->graph, i, (HWND)INVALID_HANDLE_VALUE);
            }

            SetForegroundWindow();
            UINT id = popup.TrackPopupMenu(TPM_LEFTBUTTON | TPM_RETURNCMD, p.x, p.y, CWnd::FromHandle(hWnd), 0);
            PostMessage(WM_NULL);

            if (id & (1 << 15)) {
                pStreams[(id >> 8) & 0x3f]->Enable(id & 0xff, AMSTREAMSELECTENABLE_ENABLE);
            } else if (id & (1 << 14)) {
                if (CComQIPtr<IVideoWindow> pVW = m_tbid->graph) {
                    HWND hwnd;
                    if (SUCCEEDED(pVW->get_Owner((OAHWND*)&hwnd))
                            || SUCCEEDED(pVW->get_MessageDrain((OAHWND*)&hwnd))) {
                        hWnd = hwnd;
                    }
                }

                CallPPage(m_tbid->graph, id & 0xff, hWnd);
            }
        }
        break;

        default:
            break;
    }

    return 0;
}

//

DWORD CALLBACK SystrayThreadProc(void* pParam)
{
    AFX_MANAGE_STATE(AfxGetStaticModuleState());

    CSystrayWindow wnd((SystrayIconData*)pParam);
    if (!wnd.CreateEx(0, AfxRegisterWndClass(0), _T("DVSWND"), WS_OVERLAPPED, CRect(0, 0, 0, 0), NULL, 0, NULL)) {
        return (DWORD) - 1;
    }

    ((SystrayIconData*)pParam)->hSystrayWnd = wnd.m_hWnd;

    MSG msg;
    while (GetMessage(&msg, NULL/*wnd.m_hWnd*/, 0, 0)) {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }

    return 0;
}

// TODO: replace this function

// hWnd == INVALID_HANDLE_VALUE - get name, hWnd != INVALID_HANDLE_VALUE - show ppage
static TCHAR* CallPPage(IFilterGraph* pGraph, int idx, HWND hWnd)
{
    int i = 0;
    //bool fFound = false;

    WCHAR* wstr = NULL;
    CComPtr<IBaseFilter> pFilter;
    CAUUID caGUID;
    caGUID.pElems = NULL;

    BeginEnumFilters(pGraph, pEF, pBF) {
        CComQIPtr<ISpecifyPropertyPages> pSPS = pBF;

        if (!pSPS) {
            continue;
        }

        if (i == idx) {
            pFilter = pBF;
            pSPS->GetPages(&caGUID);
            wstr = _wcsdup(CStringW(GetFilterName(pBF))); // double char-wchar conversion happens in the non-unicode build, but anyway... :)
            break;
        }

        i++;
    }
    EndEnumFilters

    TCHAR* ret = NULL;

    if (pFilter) {
        if (hWnd != INVALID_HANDLE_VALUE) {
            ShowPPage(pFilter, hWnd);
        } else {
            ret = DNew TCHAR[wcslen(wstr) + 1];
            if (ret) {
                _tcscpy_s(ret, wcslen(wstr) + 1, CString(wstr));
            }
        }
    }

    if (caGUID.pElems) {
        CoTaskMemFree(caGUID.pElems);
    }
    if (wstr) {
        free(wstr);
    }

    return ret;
}