]> git.saurik.com Git - wxWidgets.git/blame - samples/dialup/nettest.cpp
compilation fix for wxUniv
[wxWidgets.git] / samples / dialup / nettest.cpp
CommitLineData
09884325
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: net.cpp
3// Purpose: wxWindows sample demonstrating network-related 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// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20#ifdef __GNUG__
21 #pragma implementation "nettest.cpp"
22 #pragma interface "nettest.cpp"
23#endif
24
25// For compilers that support precompilation, includes "wx/wx.h".
26#include "wx/wxprec.h"
27
28#ifdef __BORLANDC__
29 #pragma hdrstop
30#endif
31
32// for all others, include the necessary headers (this file is usually all you
33// need because it includes almost all "standard" wxWindows headers
34#ifndef WX_PRECOMP
35 #include "wx/wx.h"
36#endif
37
e90c1d2a 38#include "wx/dialup.h"
09884325
VZ
39
40// ----------------------------------------------------------------------------
41// private classes
42// ----------------------------------------------------------------------------
43
44// Define a new application type, each program should derive a class from wxApp
45class MyApp : public wxApp
46{
47public:
48 // override base class virtuals
49 // ----------------------------
50
51 // this one is called on application startup and is a good place for the app
52 // initialization (doing it here and not in the ctor allows to have an error
53 // return: if OnInit() returns false, the application terminates)
54 virtual bool OnInit();
55
24df4c19
VZ
56 // called before the application termination
57 virtual int OnExit();
58
09884325
VZ
59 // event handlers
60 void OnConnected(wxDialUpEvent& event);
61
24df4c19
VZ
62 // accessor to dial up manager
63 wxDialUpManager *GetDialer() const { return m_dial; }
64
09884325 65private:
24df4c19
VZ
66 wxDialUpManager *m_dial;
67
8caa4ed1 68 DECLARE_EVENT_TABLE()
09884325
VZ
69};
70
71// Define a new frame type: this is going to be our main frame
72class MyFrame : public wxFrame
73{
74public:
75 // ctor(s)
76 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
77
78 // event handlers (these functions should _not_ be virtual)
79 void OnQuit(wxCommandEvent& event);
80 void OnAbout(wxCommandEvent& event);
81 void OnHangUp(wxCommandEvent& event);
82 void OnDial(wxCommandEvent& event);
2690830e 83 void OnEnumISPs(wxCommandEvent& event);
24e1f1ca 84 void OnCheck(wxCommandEvent& event);
24df4c19
VZ
85 void OnUpdateUI(wxUpdateUIEvent& event);
86
09884325
VZ
87 void OnIdle(wxIdleEvent& event);
88
89private:
90 // any class wishing to process wxWindows events must use this macro
91 DECLARE_EVENT_TABLE()
92};
93
94// ----------------------------------------------------------------------------
95// constants
96// ----------------------------------------------------------------------------
97
98// IDs for the controls and the menu commands
99enum
100{
101 // menu items
102 NetTest_Quit = 1,
103 NetTest_About,
104 NetTest_HangUp,
2690830e
VZ
105 NetTest_Dial,
106 NetTest_EnumISP,
24e1f1ca 107 NetTest_Check,
2690830e 108 NetTest_Max
09884325
VZ
109};
110
111// ----------------------------------------------------------------------------
112// event tables and other macros for wxWindows
113// ----------------------------------------------------------------------------
114
115BEGIN_EVENT_TABLE(MyApp, wxApp)
116 EVT_DIALUP_CONNECTED(MyApp::OnConnected)
117 EVT_DIALUP_DISCONNECTED(MyApp::OnConnected)
118END_EVENT_TABLE()
119
120// the event tables connect the wxWindows events with the functions (event
121// handlers) which process them. It can be also done at run-time, but for the
122// simple menu events like this the static method is much simpler.
123BEGIN_EVENT_TABLE(MyFrame, wxFrame)
124 EVT_MENU(NetTest_Quit, MyFrame::OnQuit)
125 EVT_MENU(NetTest_About, MyFrame::OnAbout)
126 EVT_MENU(NetTest_HangUp, MyFrame::OnHangUp)
127 EVT_MENU(NetTest_Dial, MyFrame::OnDial)
2690830e 128 EVT_MENU(NetTest_EnumISP, MyFrame::OnEnumISPs)
24e1f1ca 129 EVT_MENU(NetTest_Check, MyFrame::OnCheck)
09884325 130
24df4c19
VZ
131 EVT_UPDATE_UI(NetTest_Dial, MyFrame::OnUpdateUI)
132
09884325
VZ
133 EVT_IDLE(MyFrame::OnIdle)
134END_EVENT_TABLE()
135
136// Create a new application object: this macro will allow wxWindows to create
137// the application object during program execution (it's better than using a
138// static object for many reasons) and also declares the accessor function
139// wxGetApp() which will return the reference of the right type (i.e. MyApp and
140// not wxApp)
141IMPLEMENT_APP(MyApp)
142
143// ============================================================================
144// implementation
145// ============================================================================
146
147// ----------------------------------------------------------------------------
148// the application class
149// ----------------------------------------------------------------------------
150
151// `Main program' equivalent: the program execution "starts" here
152bool MyApp::OnInit()
153{
154 // Create the main application window
24df4c19 155 MyFrame *frame = new MyFrame("Dial-up wxWindows demo",
09884325
VZ
156 wxPoint(50, 50), wxSize(450, 340));
157
158 // Show it and tell the application that it's our main window
159 frame->Show(TRUE);
160 SetTopWindow(frame);
161
24df4c19
VZ
162 // Init dial up manager
163 m_dial = wxDialUpManager::Create();
164
165 if ( !m_dial->IsOk() )
166 {
4693b20c 167 wxLogError(wxT("The sample can't run on this system."));
24df4c19
VZ
168
169 wxLog::GetActiveTarget()->Flush();
170
171 // do it here, OnExit() won't be called
172 delete m_dial;
173
174 return FALSE;
175 }
176
2690830e
VZ
177 frame->SetStatusText(GetDialer()->IsAlwaysOnline() ? "LAN" : "No LAN", 2);
178
09884325
VZ
179 return TRUE;
180}
181
24df4c19
VZ
182int MyApp::OnExit()
183{
184 delete m_dial;
185
186 // exit code is 0, everything is ok
187 return 0;
188}
189
09884325
VZ
190void MyApp::OnConnected(wxDialUpEvent& event)
191{
4693b20c 192 const wxChar *msg;
24df4c19
VZ
193 if ( event.IsOwnEvent() )
194 {
4693b20c
MB
195 msg = event.IsConnectedEvent() ? wxT("Successfully connected")
196 : wxT("Dialing failed");
24df4c19 197
4693b20c 198 wxLogStatus(wxT(""));
24df4c19
VZ
199 }
200 else
201 {
4693b20c
MB
202 msg = event.IsConnectedEvent() ? wxT("Just connected!")
203 : wxT("Disconnected");
24df4c19
VZ
204 }
205
2690830e 206 wxLogMessage(msg);
09884325
VZ
207}
208
209// ----------------------------------------------------------------------------
210// main frame
211// ----------------------------------------------------------------------------
212
213// frame constructor
214MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
215 : wxFrame((wxFrame *)NULL, -1, title, pos, size)
216{
09884325
VZ
217 // create a menu bar
218 wxMenu *menuFile = new wxMenu;
219
220 menuFile->Append(NetTest_Dial, "&Dial\tCtrl-D", "Dial default ISP");
221 menuFile->Append(NetTest_HangUp, "&HangUp\tCtrl-H", "Hang up modem");
222 menuFile->AppendSeparator();
2690830e 223 menuFile->Append(NetTest_EnumISP, "&Enumerate ISPs...\tCtrl-E");
24e1f1ca 224 menuFile->Append(NetTest_Check, "&Check connection status...\tCtrl-C");
2690830e 225 menuFile->AppendSeparator();
09884325
VZ
226 menuFile->Append(NetTest_About, "&About...\tCtrl-A", "Show about dialog");
227 menuFile->AppendSeparator();
228 menuFile->Append(NetTest_Quit, "E&xit\tAlt-X", "Quit this program");
229
230 // now append the freshly created menu to the menu bar...
231 wxMenuBar *menuBar = new wxMenuBar;
232 menuBar->Append(menuFile, "&File");
233
234 // ... and attach this menu bar to the frame
235 SetMenuBar(menuBar);
236
2690830e
VZ
237 // create status bar and fill the LAN field
238 CreateStatusBar(3);
239 static const int widths[3] = { -1, 100, 60 };
240 SetStatusWidths(3, widths);
09884325
VZ
241}
242
243
244// event handlers
245
246void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
247{
248 // TRUE is to force the frame to close
249 Close(TRUE);
250}
251
252void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
253{
254 wxString msg;
255 msg.Printf(_T("This is the network functions test sample.\n"
256