⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 net.h

📁 video linux conference
💻 H
字号:
/***************************************************************************                          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_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -