initial commit

This commit is contained in:
Max-Wilhelm Bruker 2009-03-13 22:50:41 +01:00
commit a11f93df4d
99 changed files with 7493 additions and 0 deletions

View file

@ -0,0 +1,23 @@
#ifndef DLG_CONNECT_H
#define DLG_CONNECT_H
#include <QDialog>
class QLabel;
class QLineEdit;
class QPushButton;
class DlgConnect : public QDialog {
Q_OBJECT
public:
DlgConnect(QWidget *parent = 0);
QString getHost();
int getPort();
QString getPlayerName();
private:
QLabel *hostLabel, *portLabel, *playernameLabel;
QLineEdit *hostEdit, *portEdit, *playernameEdit;
QPushButton *okButton, *cancelButton;
};
#endif