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

30 lines
569 B

#ifndef SERVERCONFIGDIALOG_H
#define SERVERCONFIGDIALOG_H
#include <kdialogbase.h>
class BugServerConfig;
class TQLineEdit;
class KPasswordEdit;
class TQComboBox;
class ServerConfigDialog : public KDialogBase
{
TQ_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