net.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:1k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /***************************************************************************
  2.                           net.h  -  description
  3.                              -------------------
  4.     begin                : Mon Apr 9 2001
  5.     copyright            : (C) 2001 by andres
  6.     email                : dae@chez.com
  7.  ***************************************************************************/
  8. #ifndef _KDE_NET_H_
  9. #define _KDE_NET_H_
  10. #include "common.h"
  11. #include <qwidget.h>
  12. #include <kdialogbase.h>
  13. class QVButtonGroup;
  14. class QRadioButton;
  15. class QSpinBox;
  16. class KLineEdit;
  17. /**
  18.   *@author andres
  19.   */
  20. class KNetDialog : public KDialogBase
  21. {
  22.     Q_OBJECT
  23.     public:
  24.         KNetDialog(QWidget *parent=0, const char *name=0);
  25.         ~KNetDialog();
  26.         QString    protocol() const;
  27.         QString    server() const;
  28.         int        port() const;
  29.     private:
  30.         QVButtonGroup    *fButtonGroup;
  31.         QRadioButton     *fTSButton;
  32.         QRadioButton     *fRTPButton;
  33.         QRadioButton     *fHTTPButton;
  34.         KLineEdit        *fAddress;
  35.         QSpinBox         *fPort;
  36. };
  37. #endif /* _KDE_NET_H_ */