#ifndef SERVERCONFIGDIALOG_H #define SERVERCONFIGDIALOG_H #include class BugServerConfig; class TQLineEdit; class KPasswordEdit; class TQComboBox; class ServerConfigDialog : public KDialogBase { Q_OBJECT TQ_OBJECT public: ServerConfigDialog( TQWidget *tqparent = 0 , const char *name = 0 ); void setServerConfig( const BugServerConfig & ); BugServerConfig serverConfig(); private: TQLineEdit *mServerName; TQLineEdit *mServerUrl; TQLineEdit *mUser; KPasswordEdit *mPassword; TQComboBox *mVersion; }; #endif