File indexing completed on 2024-05-05 04:51:49

0001 /*
0002     SPDX-FileCopyrightText: 2005-2007 Sebastian Trueg <trueg@k3b.org>
0003     SPDX-FileCopyrightText: 2009 Arthur Renato Mello <arthur@mandriva.com>
0004     SPDX-FileCopyrightText: 2009 Michal Malek <michalm@jabster.pl>
0005     SPDX-FileCopyrightText: 1998-2009 Sebastian Trueg <trueg@k3b.org>
0006 
0007     SPDX-License-Identifier: GPL-2.0-or-later
0008 */
0009 
0010 
0011 #ifndef _K3B_VIDEO_DVDVIEW_H_
0012 #define _K3B_VIDEO_DVDVIEW_H_
0013 
0014 #include "k3bdataview.h"
0015 
0016 namespace K3b {
0017     class VideoDvdDoc;
0018 
0019     class VideoDvdView : public DataView
0020     {
0021         Q_OBJECT
0022 
0023     public:
0024         explicit VideoDvdView( VideoDvdDoc* doc, QWidget *parent = 0 );
0025         ~VideoDvdView() override;
0026 
0027     protected:
0028         ProjectBurnDialog* newBurnDialog( QWidget* parent = 0 ) override;
0029 
0030         void init();
0031 
0032     private:
0033         VideoDvdDoc* m_doc;
0034     };
0035 }
0036 
0037 #endif