net.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:1k
- /***************************************************************************
- net.h - description
- -------------------
- begin : Mon Apr 9 2001
- copyright : (C) 2001 by andres
- email : dae@chez.com
- ***************************************************************************/
- #ifndef _KDE_NET_H_
- #define _KDE_NET_H_
- #include "common.h"
- #include <qwidget.h>
- #include <kdialogbase.h>
- class QVButtonGroup;
- class QRadioButton;
- class QSpinBox;
- class KLineEdit;
- /**
- *@author andres
- */
- class KNetDialog : public KDialogBase
- {
- Q_OBJECT
- public:
- KNetDialog(QWidget *parent=0, const char *name=0);
- ~KNetDialog();
- QString protocol() const;
- QString server() const;
- int port() const;
- private:
- QVButtonGroup *fButtonGroup;
- QRadioButton *fTSButton;
- QRadioButton *fRTPButton;
- QRadioButton *fHTTPButton;
- KLineEdit *fAddress;
- QSpinBox *fPort;
- };
- #endif /* _KDE_NET_H_ */