A Fast Bresenham Type Algorithm For Drawing Ellipses by John Kennedy
[xy_vsfilter.git] / src / apps / mplayerc / PPageSheet.h
blob55d99d8607c808582c309fd2be5bfd322da3b6c3
1 /*
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)
8 * any later version.
9 *
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
22 #pragma once
24 using namespace TreePropSheet;
26 #include "PPagePlayer.h"
27 #include "PPageFormats.h"
28 #include "PPageAccelTbl.h"
29 #include "PPageLogo.h"
30 #include "PPagePlayback.h"
31 #include "PPageDVD.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)
48 public:
49 CTreePropSheetTreeCtrl();
50 virtual ~CTreePropSheetTreeCtrl();
52 protected:
53 DECLARE_MESSAGE_MAP()
54 virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
57 // CPPageSheet
59 class CPPageSheet : public CTreePropSheet
61 DECLARE_DYNAMIC(CPPageSheet)
63 private:
64 CPPagePlayer m_player;
65 CPPageFormats m_formats;
66 CPPageAccelTbl m_acceltbl;
67 CPPageLogo m_logo;
68 CPPagePlayback m_playback;
69 CPPageDVD m_dvd;
70 CPPageOutput m_output;
71 CPPageWebServer m_webserver;
72 CPPageSubtitles m_subtitles;
73 CPPageSubStyle m_substyle;
74 CPPageSubDB m_subdb;
75 CPPageInternalFilters m_internalfilters;
76 CPPageAudioSwitcher m_audioswitcher;
77 CPPageExternalFilters m_externalfilters;
78 CPPageTweaks m_tweaks;
80 CTreeCtrl* CreatePageTreeObject();
82 public:
83 CPPageSheet(LPCTSTR pszCaption, IFilterGraph* pFG, CWnd* pParentWnd, UINT idPage = 0);
84 virtual ~CPPageSheet();
86 protected:
87 DECLARE_MESSAGE_MAP()
88 public:
89 virtual BOOL OnInitDialog();