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

PPageSheet.h « mplayerc « apps « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 690e7e123ee5751360e75b31fd3ed334c7d6cfcc (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
/*
 * $Id$
 *
 * (C) 2003-2006 Gabest
 * (C) 2006-2010 see AUTHORS
 *
 * This file is part of mplayerc.
 *
 * Mplayerc 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.
 *
 * Mplayerc 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/>.
 *
 */

#pragma once

#include "PPagePlayer.h"
#include "PPageFormats.h"
#include "PPageAccelTbl.h"
#include "PPageLogo.h"
#include "PPagePlayback.h"
#include "PPageDVD.h"
#include "PPageOutput.h"
#include "PPageFullscreen.h"
#include "PPageSync.h"
#include "PPageWebServer.h"
#include "PPageInternalFilters.h"
#include "PPageAudioSwitcher.h"
#include "PPageExternalFilters.h"
#include "PPageSubtitles.h"
#include "PPageSubStyle.h"
#include "PPageSubDB.h"
#include "PPageTweaks.h"
#include "PPageCasimir.h"
#include "PPageCapture.h"


// CTreePropSheetTreeCtrl
using namespace TreePropSheet;

class CTreePropSheetTreeCtrl : public CTreeCtrl
{
    DECLARE_DYNAMIC(CTreePropSheetTreeCtrl)

public:
    CTreePropSheetTreeCtrl();
    virtual ~CTreePropSheetTreeCtrl();

protected:
    DECLARE_MESSAGE_MAP()
    virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
};

// CPPageSheet

class CPPageSheet : public CTreePropSheet
{
    DECLARE_DYNAMIC(CPPageSheet)

private:
    bool m_bLockPage;

    CPPagePlayer m_player;
    CPPageFormats m_formats;
    CPPageAccelTbl m_acceltbl;
    CPPageLogo m_logo;
    CPPagePlayback m_playback;
    CPPageDVD m_dvd;
    CPPageOutput m_output;
    CPPageFullscreen m_fullscreen;
    CPPageSync m_sync;
    CPPageWebServer m_webserver;
    CPPageSubtitles m_subtitles;
    CPPageSubStyle m_substyle;
    CPPageSubDB m_subdb;
    CPPageInternalFilters m_internalfilters;
    CPPageAudioSwitcher m_audioswitcher;
    CPPageExternalFilters m_externalfilters;
    CPPageTweaks m_tweaks;
    CPPageCasimir m_casimir;
    CPPageCapture m_tuner;

    CTreeCtrl* CreatePageTreeObject();

public:
    CPPageSheet(LPCTSTR pszCaption, IFilterGraph* pFG, CWnd* pParentWnd, UINT idPage = 0);
    virtual ~CPPageSheet();
    afx_msg void OnContextMenu(CWnd *pWnd, CPoint point);

    void LockPage()
    {
        m_bLockPage = true;
    };
protected:
    DECLARE_MESSAGE_MAP()
public:
    virtual BOOL OnInitDialog();
};