/******************************************************************************\ * Copyright (c) 2004-2011 * * Author(s): * Volker Fischer * ****************************************************************************** * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * \******************************************************************************/ #include #include #include #include #include #include #include #include "global.h" #include "client.h" #ifdef _WIN32 # include "../windows/moc/connectdlgbase.h" #else # ifdef _IS_QMAKE_CONFIG # include "ui_connectdlgbase.h" # else # include "moc/connectdlgbase.h" # endif #endif /* Definitions ****************************************************************/ // defines the time interval at which the request server list message is re- // transmitted until it is received #define SERV_LIST_REQ_UPDATE_TIME_MS 2000 // ms /* Classes ********************************************************************/ class CConnectDlg : public QDialog, private Ui_CConnectDlgBase { Q_OBJECT public: CConnectDlg ( QWidget* parent = 0, Qt::WindowFlags f = 0 ); void SetServerList ( const CHostAddress& InetAddr, const CVector& vecServerInfo ); void LoadStoredServers ( const CVector& vstrNewIPAddresses ); void SetPingTimeResult ( CHostAddress& InetAddr, const int iPingTime, const int iPingTimeLEDColor ); bool GetCancelPressed() const { return bCancelPressed; } QString GetSelectedAddress() const { return strSelectedAddress; } protected: virtual void showEvent ( QShowEvent* ); virtual void hideEvent ( QHideEvent* ); QTimer TimerPing; QTimer TimerReRequestServList; CHostAddress CentralServerAddress; CVector vstrIPAddresses; QString strSelectedAddress; bool bServerListReceived; bool bCancelPressed; public slots: void OnCancelButtonClicked(); void OnTimerPing(); void OnTimerReRequestServList(); signals: void ReqServerListQuery ( CHostAddress InetAddr ); void CreateCLPingMes ( CHostAddress InetAddr ); };