]> git.sesse.net Git - vlc/blob - modules/gui/kde/disc.h
Remove slp and joystick plugins
[vlc] / modules / gui / kde / disc.h
1 /***************************************************************************
2                           disc.h  -  description
3                              -------------------
4     begin                : Sat Apr 7 2001
5     copyright            : (C) 2001 by andres
6     email                : dae@chez.com
7  ***************************************************************************/
8
9 #ifndef KDE_DISC_H
10 #define KDE_DISC_H
11
12 #include "common.h"
13 #include <kdialogbase.h>
14 #include <qstring.h>
15
16 class QVButtonGroup;
17 class QRadioButton;
18 class QSpinBox;
19 class KLineEdit;
20
21 /**
22   *@author andres
23   */
24
25 class KDiskDialog : public KDialogBase
26 {
27     Q_OBJECT
28     public: 
29         KDiskDialog( QWidget *parent=0, const char *name=0 );
30         ~KDiskDialog();
31
32         QString    type() const;
33         QString    device() const;
34         int        title() const;
35         int        chapter() const;
36
37     private:
38
39         QVButtonGroup    *fButtonGroup;
40         QRadioButton     *fDVDButton;
41         QRadioButton     *fVCDButton;
42         QSpinBox         *fTitle;
43         QSpinBox         *fChapter;
44         KLineEdit        *fLineEdit;
45
46 };
47
48 #endif