]> git.sesse.net Git - vlc/blob - plugins/kde/kde_net.h
* ./BUGS: added a list of known bugs. Please add your findings!
[vlc] / plugins / kde / kde_net.h
1 /***************************************************************************
2                           kde_net.h  -  description
3                              -------------------
4     begin                : Mon Apr 9 2001
5     copyright            : (C) 2001 by andres
6     email                : dae@chez.com
7  ***************************************************************************/
8
9 #ifndef _KDE_NET_H_
10 #define _KDE_NET_H_
11
12 #include <qwidget.h>
13 #include <kdialogbase.h>
14
15 class QVButtonGroup;
16 class QRadioButton;
17 class QSpinBox;
18 class KLineEdit;
19
20 /**
21   *@author andres
22   */
23
24 class KNetDialog : public KDialogBase
25 {
26     Q_OBJECT
27     public:
28         KNetDialog(QWidget *parent=0, const char *name=0);
29         ~KNetDialog();
30
31         QString    protocol() const;
32         QString    server() const;
33         int        port() const;
34
35     private:
36         QVButtonGroup    *fButtonGroup;
37         QRadioButton     *fTSButton;
38         QRadioButton     *fRTPButton;
39         QRadioButton     *fHTTPButton;
40         KLineEdit        *fAddress;
41         QSpinBox         *fPort;
42
43 };
44
45 #endif /* _KDE_NET_H_ */