You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
568 B
30 lines
568 B
#ifndef SERVERCONFIGDIALOG_H
|
|
#define SERVERCONFIGDIALOG_H
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class BugServerConfig;
|
|
class TQLineEdit;
|
|
class KPasswordEdit;
|
|
class TQComboBox;
|
|
|
|
class ServerConfigDialog : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ServerConfigDialog( TQWidget *parent = 0 , const char *name = 0 );
|
|
|
|
void setServerConfig( const BugServerConfig & );
|
|
BugServerConfig serverConfig();
|
|
|
|
private:
|
|
TQLineEdit *mServerName;
|
|
TQLineEdit *mServerUrl;
|
|
TQLineEdit *mUser;
|
|
KPasswordEdit *mPassword;
|
|
TQComboBox *mVersion;
|
|
};
|
|
|
|
#endif
|