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.
tdesdk/kbugbuster/gui/serverconfigdialog.h

29 lines
558 B

#ifndef SERVERCONFIGDIALOG_H
#define SERVERCONFIGDIALOG_H
#include <kdialogbase.h>
class BugServerConfig;
class QLineEdit;
class KPasswordEdit;
class QComboBox;
class ServerConfigDialog : public KDialogBase
{
Q_OBJECT
public:
ServerConfigDialog( QWidget *parent = 0 , const char *name = 0 );
void setServerConfig( const BugServerConfig & );
BugServerConfig serverConfig();
private:
QLineEdit *mServerName;
QLineEdit *mServerUrl;
QLineEdit *mUser;
KPasswordEdit *mPassword;
QComboBox *mVersion;
};
#endif