]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dialup.h
extracted platform/compiler detection macros from wx/defs,h into wx/platform.h
[wxWidgets.git] / include / wx / dialup.h
CommitLineData
09884325 1/////////////////////////////////////////////////////////////////////////////
a0b4c98b 2// Name: wx/dialup.h
09884325
VZ
3// Purpose: Network related wxWindows classes and functions
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 07.07.99
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zeitlin
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_NET_H
13#define _WX_NET_H
14
5e0201ea
JS
15#ifdef __GNUG__
16 #pragma interface "dialup.h"
17#endif
18
09884325
VZ
19#if wxUSE_DIALUP_MANAGER
20
a0b4c98b 21// ----------------------------------------------------------------------------
2690830e 22// misc
a0b4c98b
VZ
23// ----------------------------------------------------------------------------
24
2690830e
VZ
25class WXDLLEXPORT wxArrayString;
26
f6bcfd97 27WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString;
a0b4c98b 28
223d09f6 29#define WXDIALUP_MANAGER_DEFAULT_BEACONHOST wxT("www.yahoo.com")
a0b4c98b 30
09884325
VZ
31// ----------------------------------------------------------------------------
32// A class which groups functions dealing with connecting to the network from a
33// workstation using dial-up access to the net. There is at most one instance
34// of this class in the program accessed via GetDialUpManager().
35// ----------------------------------------------------------------------------
36
37/* TODO
38 *
39 * 1. more configurability for Unix: i.e. how to initiate the connection, how
40 * to check for online status, &c.
a0b4c98b
VZ
41 * 2. a function to enumerate all connections (ISPs) and show a dialog in
42 * Dial() allowing to choose between them if no ISP given
09884325
VZ
43 * 3. add an async version of dialing functions which notify the caller about
44 * the progress (or may be even start another thread to monitor it)
45 * 4. the static creation/accessor functions are not MT-safe - but is this
46 * really crucial? I think we may suppose they're always called from the
47 * main thread?
48 */
49
50class WXDLLEXPORT wxDialUpManager
51{
52public:
1c8515f9
KB
53 // this function should create and return the object of the
54 // platform-specific class derived from wxDialUpManager. It's implemented
55 // in the platform-specific source files.
56 static wxDialUpManager *Create();
09884325
VZ
57
58 // could the dialup manager be initialized correctly? If this function
59 // returns FALSE, no other functions will work neither, so it's a good idea
60 // to call this function and check its result before calling any other
61 // wxDialUpManager methods
62 virtual bool IsOk() const = 0;
63
64 // virtual dtor for any base class
65 virtual ~wxDialUpManager() { }
66
67 // operations
68 // ----------
69
2690830e
VZ
70 // fills the array with the names of all possible values for the first
71 // parameter to Dial() on this machine and returns their number (may be 0)
72 virtual size_t GetISPNames(wxArrayString& names) const = 0;
73
a0b4c98b
VZ
74 // dial the given ISP, use username and password to authentificate
75 //
2690830e
VZ
76 // if no nameOfISP is given, the function will select the default one
77 //
78 // if no username/password are given, the function will try to do without
79 // them, but will ask the user if really needed
80 //
a0b4c98b
VZ
81 // if async parameter is FALSE, the function waits until the end of dialing
82 // and returns TRUE upon successful completion.
83 // if async is TRUE, the function only initiates the connection and returns
84 // immediately - the result is reported via events (an event is sent
85 // anyhow, but if dialing failed it will be a DISCONNECTED one)
86 virtual bool Dial(const wxString& nameOfISP = wxEmptyString,
87 const wxString& username = wxEmptyString,
88 const wxString& password = wxEmptyString,
89 bool async = TRUE) = 0;
90
91 // returns TRUE if (async) dialing is in progress
e90c1d2a 92 virtual bool IsDialing() const = 0;
a0b4c98b
VZ
93
94 // cancel dialing the number initiated with Dial(async = TRUE)
95 // NB: this won't result in DISCONNECTED event being sent
96 virtual bool CancelDialing() = 0;
09884325
VZ
97
98 // hang up the currently active dial up connection
99 virtual bool HangUp() = 0;
100
101 // online status
102 // -------------
103
2690830e
VZ
104 // returns TRUE if the computer has a permanent network connection (i.e. is
105 // on a LAN) and so there is no need to use Dial() function to go online
106 //
107 // NB: this functions tries to guess the result and it is not always
108 // guaranteed to be correct, so it's better to ask user for
109 // confirmation or give him a possibility to override it
110 virtual bool IsAlwaysOnline() const = 0;
111
09884325
VZ
112 // returns TRUE if the computer is connected to the network: under Windows,
113 // this just means that a RAS connection exists, under Unix we check that
114 // the "well-known host" (as specified by SetWellKnownHost) is reachable
1c8515f9 115 virtual bool IsOnline() const = 0;
09884325
VZ
116
117 // sometimes the built-in logic for determining the online status may fail,
118 // so, in general, the user should be allowed to override it. This function
119 // allows to forcefully set the online status - whatever our internal
120 // algorithm may think about it.
121 virtual void SetOnlineStatus(bool isOnline = TRUE) = 0;
122
123 // set misc wxDialUpManager options
124 // --------------------------------
125
126 // enable automatical checks for the connection status and sending of
127 // wxEVT_DIALUP_CONNECTED/wxEVT_DIALUP_DISCONNECTED events. The interval
128 // parameter is only for Unix where we do the check manually: under
129 // Windows, the notification about the change of connection status is
130 // instantenous.
131 //
132 // Returns FALSE if couldn't set up automatic check for online status.
133 virtual bool EnableAutoCheckOnlineStatus(size_t nSeconds = 60) = 0;
134
135 // disable automatic check for connection status change - notice that the
136 // wxEVT_DIALUP_XXX events won't be sent any more neither.
137 virtual void DisableAutoCheckOnlineStatus() = 0;
138
a0b4c98b
VZ
139 // additional Unix-only configuration
140 // ----------------------------------
141
09884325
VZ
142 // under Unix, the value of well-known host is used to check whether we're
143 // connected to the internet. It's unused under Windows, but this function
144 // is always safe to call. The default value is www.yahoo.com.
1c8515f9
KB
145 virtual void SetWellKnownHost(const wxString& hostname,
146 int portno = 80) = 0;
a0b4c98b
VZ
147
148 // Sets the commands to start up the network and to hang up again. Used by
149 // the Unix implementations only.
150 virtual void
223d09f6
KB
151 SetConnectCommand(const wxString& commandDial = wxT("/usr/bin/pon"),
152 const wxString& commandHangup = wxT("/usr/bin/poff")) = 0;
09884325
VZ
153};
154
155// ----------------------------------------------------------------------------
2e4df4bf 156// wxDialUpManager events
09884325
VZ
157// ----------------------------------------------------------------------------
158
41618285
VZ
159BEGIN_DECLARE_EVENT_TYPES()
160 DECLARE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED, 450)
161 DECLARE_EVENT_TYPE(wxEVT_DIALUP_DISCONNECTED, 451)
162END_DECLARE_EVENT_TYPES()
163
09884325
VZ
164// the event class for the dialup events
165class WXDLLEXPORT wxDialUpEvent : public wxEvent
166{
167public:
a0b4c98b 168 wxDialUpEvent(bool isConnected, bool isOwnEvent) : wxEvent(isOwnEvent)
09884325
VZ
169 {
170 SetEventType(isConnected ? wxEVT_DIALUP_CONNECTED
171 : wxEVT_DIALUP_DISCONNECTED);
172 }
173
174 // is this a CONNECTED or DISCONNECTED event?
a0b4c98b
VZ
175 bool IsConnectedEvent() const
176 { return GetEventType() == wxEVT_DIALUP_CONNECTED; }
177
178 // does this event come from wxDialUpManager::Dial() or from some extrenal
179 // process (i.e. does it result from our own attempt to establish the
180 // connection)?
181 bool IsOwnEvent() const { return m_id != 0; }
09884325
VZ
182};
183
184// the type of dialup event handler function
69d16e3e 185typedef void (wxEvtHandler::*wxDialUpEventFunction)(wxDialUpEvent&);
09884325
VZ
186
187// macros to catch dialup events
82a5f02c 188#define EVT_DIALUP_CONNECTED(func) \
2e4df4bf 189 DECLARE_EVENT_TABLE_ENTRY( wxEVT_DIALUP_CONNECTED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDialUpEventFunction) & func, NULL),
82a5f02c 190#define EVT_DIALUP_DISCONNECTED(func) \
2e4df4bf 191 DECLARE_EVENT_TABLE_ENTRY( wxEVT_DIALUP_DISCONNECTED, -1, -1, (wxObjectEventFunction) (wxEventFunction) (wxDialUpEventFunction) & func, NULL),
09884325 192
89be8239 193
09884325
VZ
194#endif // wxUSE_DIALUP_MANAGER
195
196#endif // _WX_NET_H