blob: 39a0d596974e420cc4d1c85fb22fd8461a793577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef SERVERCONFIGDIALOG_H
#define SERVERCONFIGDIALOG_H
#include <kdialogbase.h>
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
|