2 * Copyright (C) 2003-2006 Gabest
3 * http://www.gabest.org
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 GNU Make; see the file COPYING. If not, write to
17 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 using namespace TreePropSheet
;
26 #include "PPagePlayer.h"
27 #include "PPageFormats.h"
28 #include "PPageAccelTbl.h"
29 #include "PPageLogo.h"
30 #include "PPagePlayback.h"
32 #include "PPageOutput.h"
33 #include "PPageWebServer.h"
34 #include "PPageInternalFilters.h"
35 #include "PPageAudioSwitcher.h"
36 #include "PPageExternalFilters.h"
37 #include "PPageSubtitles.h"
38 #include "PPageSubStyle.h"
39 #include "PPageSubDB.h"
40 #include "PPageTweaks.h"
42 // CTreePropSheetTreeCtrl
44 class CTreePropSheetTreeCtrl
: public CTreeCtrl
46 DECLARE_DYNAMIC(CTreePropSheetTreeCtrl
)
49 CTreePropSheetTreeCtrl();
50 virtual ~CTreePropSheetTreeCtrl();
54 virtual BOOL
PreCreateWindow(CREATESTRUCT
& cs
);
59 class CPPageSheet
: public CTreePropSheet
61 DECLARE_DYNAMIC(CPPageSheet
)
64 CPPagePlayer m_player
;
65 CPPageFormats m_formats
;
66 CPPageAccelTbl m_acceltbl
;
68 CPPagePlayback m_playback
;
70 CPPageOutput m_output
;
71 CPPageWebServer m_webserver
;
72 CPPageSubtitles m_subtitles
;
73 CPPageSubStyle m_substyle
;
75 CPPageInternalFilters m_internalfilters
;
76 CPPageAudioSwitcher m_audioswitcher
;
77 CPPageExternalFilters m_externalfilters
;
78 CPPageTweaks m_tweaks
;
80 CTreeCtrl
* CreatePageTreeObject();
83 CPPageSheet(LPCTSTR pszCaption
, IFilterGraph
* pFG
, CWnd
* pParentWnd
, UINT idPage
= 0);
84 virtual ~CPPageSheet();
89 virtual BOOL
OnInitDialog();