#ifndef CONFIG_H #define CONFIG_H #include class QLineEdit; class QRadioButton; class QLabel; class Config:public QVBox { Q_OBJECT /// public: Config(QWidget * parent = 0, const char *name = 0); QLineEdit *editplayer_mp3; QLineEdit *editplayer_rm; QLineEdit *editplayer_wmv; QLineEdit *editchannelurl; QLineEdit *editchannelheader; QLineEdit *editrecorddir; QLabel *labelinport; QLabel *labeloutport; private slots: /// void onbuttonsaveclicked(); }; #endif