mirror of
https://github.com/MelanieT/OpenSimConsoleClient.git
synced 2026-08-14 09:02:01 +00:00
36 lines
499 B
C++
36 lines
499 B
C++
#ifndef ADDCONNDIALOG_H
|
|
#define ADDCONNDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
class QLineEdit;
|
|
class QSpinBox;
|
|
|
|
namespace Ui {
|
|
class AddConnDialog;
|
|
}
|
|
|
|
class AddConnDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AddConnDialog(QWidget *parent = 0);
|
|
~AddConnDialog();
|
|
|
|
QLineEdit *Name;
|
|
QLineEdit *Host;
|
|
QSpinBox *Port;
|
|
QLineEdit *User;
|
|
QLineEdit *Pass;
|
|
|
|
public slots:
|
|
void OnCancel();
|
|
void OnOK();
|
|
|
|
private:
|
|
Ui::AddConnDialog *ui;
|
|
};
|
|
|
|
#endif // ADDCONNDIALOG_H
|