]> git.sesse.net Git - vlc/blob - plugins/kde/kde_disc.h
* ./BUGS: added a list of known bugs. Please add your findings!
[vlc] / plugins / kde / kde_disc.h
1 /***************************************************************************
2                           kde_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 <kdialogbase.h>
13 #include <qstring.h>
14
15 class QVButtonGroup;
16 class QRadioButton;
17 class QSpinBox;
18 class KLineEdit;
19
20 /**
21   *@author andres
22   */
23
24 class KDiskDialog : public KDialogBase
25 {
26     Q_OBJECT
27     public: 
28         KDiskDialog( QWidget *parent=0, const char *name=0 );
29         ~KDiskDialog();
30
31         QString    type() const;
32         QString    device() const;
33         int        title() const;
34         int        chapter() const;
35
36     private:
37
38         QVButtonGroup    *fButtonGroup;
39         QRadioButton     *fDVDButton;
40         QRadioButton     *fVCDButton;
41         QSpinBox         *fTitle;
42         QSpinBox         *fChapter;
43         KLineEdit        *fLineEdit;
44
45 };
46
47 #endif