This commit is contained in:
doitux
2007-02-25 21:11:14 +00:00
parent 1f948140dd
commit 7d4bbbfbae
6 changed files with 21 additions and 7 deletions
@@ -34,6 +34,8 @@ joinNetworkGameDialogImpl::joinNetworkGameDialogImpl(QWidget *parent)
// connect( connectKey, SIGNAL(activated() ), pushButton_connect, SLOT( click() ) );
connect( pushButton_connect, SIGNAL( clicked() ), this, SLOT( startClient() ) );
connect( pushButton_save, SIGNAL( clicked() ), this, SLOT( saveServerProfile() ) );
connect( pushButton_delete, SIGNAL( clicked() ), this, SLOT( deleteServerProfile() ) );
}
@@ -42,6 +44,16 @@ void joinNetworkGameDialogImpl::startClient() {
// TODO: Check input values!
}
void joinNetworkGameDialogImpl::saveServerProfile() {
// TODO: Check input values!
}
void joinNetworkGameDialogImpl::deleteServerProfile() {
// TODO: Check input values!
}
void joinNetworkGameDialogImpl::keyPressEvent ( QKeyEvent * event ) {
// std::cout << "key" << event->key();
@@ -36,6 +36,8 @@ public:
public slots:
void startClient();
void saveServerProfile();
void deleteServerProfile();
void keyPressEvent ( QKeyEvent * event );
};