2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2006-02-09 21:51:07 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2006-02-09 21:51:07 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2006-02-09 21:51:07 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2006-02-09 21:51:07 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2006-02-09 21:51:07 +00:00
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_BOINCDIALUPMANAGER_H
|
|
|
|
#define BOINC_BOINCDIALUPMANAGER_H
|
2006-02-09 21:51:07 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2006-03-28 07:45:27 +00:00
|
|
|
#pragma interface "BOINCDialupManager.cpp"
|
2006-02-09 21:51:07 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
class CBOINCDialUpManager : public wxObject {
|
2006-02-09 21:51:07 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
CBOINCDialUpManager();
|
|
|
|
~CBOINCDialUpManager();
|
|
|
|
|
|
|
|
bool IsOk();
|
|
|
|
size_t GetISPNames(wxArrayString& names);
|
|
|
|
|
2006-12-29 16:35:33 +00:00
|
|
|
void OnPoll();
|
2006-02-09 21:51:07 +00:00
|
|
|
|
|
|
|
int Connect();
|
|
|
|
int ConnectionSucceeded();
|
|
|
|
int ConnectionFailed();
|
|
|
|
|
2006-02-09 23:55:40 +00:00
|
|
|
int NetworkAvailable();
|
2006-02-09 21:51:07 +00:00
|
|
|
|
|
|
|
int Disconnect();
|
|
|
|
|
2006-02-17 20:59:15 +00:00
|
|
|
void ResetReminderTimers();
|
2006-02-09 21:51:07 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
wxDialUpManager* m_pDialupManager;
|
|
|
|
wxDateTime m_dtLastDialupRequest;
|
2006-02-13 10:20:42 +00:00
|
|
|
wxDateTime m_dtDialupConnectionTimeout;
|
|
|
|
bool m_bSetConnectionTimer;
|
2006-02-09 21:51:07 +00:00
|
|
|
bool m_bNotifyConnectionAvailable;
|
|
|
|
bool m_bConnectedSuccessfully;
|
|
|
|
bool m_bResetTimers;
|
|
|
|
bool m_bWasDialing;
|
|
|
|
int m_iNetworkStatus;
|
2006-02-13 10:20:42 +00:00
|
|
|
int m_iConnectAttemptRetVal;
|
2006-02-09 21:51:07 +00:00
|
|
|
|
|
|
|
wxString m_strDialogTitle;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|