git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5175
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void OnHangUp(wxCommandEvent& event);
void OnDial(wxCommandEvent& event);
void OnEnumISPs(wxCommandEvent& event);
void OnHangUp(wxCommandEvent& event);
void OnDial(wxCommandEvent& event);
void OnEnumISPs(wxCommandEvent& event);
+ void OnCheck(wxCommandEvent& event);
void OnUpdateUI(wxUpdateUIEvent& event);
void OnIdle(wxIdleEvent& event);
void OnUpdateUI(wxUpdateUIEvent& event);
void OnIdle(wxIdleEvent& event);
NetTest_HangUp,
NetTest_Dial,
NetTest_EnumISP,
NetTest_HangUp,
NetTest_Dial,
NetTest_EnumISP,
EVT_MENU(NetTest_HangUp, MyFrame::OnHangUp)
EVT_MENU(NetTest_Dial, MyFrame::OnDial)
EVT_MENU(NetTest_EnumISP, MyFrame::OnEnumISPs)
EVT_MENU(NetTest_HangUp, MyFrame::OnHangUp)
EVT_MENU(NetTest_Dial, MyFrame::OnDial)
EVT_MENU(NetTest_EnumISP, MyFrame::OnEnumISPs)
+ EVT_MENU(NetTest_Check, MyFrame::OnCheck)
EVT_UPDATE_UI(NetTest_Dial, MyFrame::OnUpdateUI)
EVT_UPDATE_UI(NetTest_Dial, MyFrame::OnUpdateUI)
menuFile->Append(NetTest_HangUp, "&HangUp\tCtrl-H", "Hang up modem");
menuFile->AppendSeparator();
menuFile->Append(NetTest_EnumISP, "&Enumerate ISPs...\tCtrl-E");
menuFile->Append(NetTest_HangUp, "&HangUp\tCtrl-H", "Hang up modem");
menuFile->AppendSeparator();
menuFile->Append(NetTest_EnumISP, "&Enumerate ISPs...\tCtrl-E");
+ menuFile->Append(NetTest_Check, "&Check connection status...\tCtrl-C");
menuFile->AppendSeparator();
menuFile->Append(NetTest_About, "&About...\tCtrl-A", "Show about dialog");
menuFile->AppendSeparator();
menuFile->AppendSeparator();
menuFile->Append(NetTest_About, "&About...\tCtrl-A", "Show about dialog");
menuFile->AppendSeparator();
+void MyFrame::OnCheck(wxCommandEvent& WXUNUSED(event))
+{
+ if(wxGetApp().GetDialer()->IsOnline())
+ wxLogMessage("Network is online.");
+ else
+ wxLogMessage("Network is offline.");
+}
+
void MyFrame::OnEnumISPs(wxCommandEvent& WXUNUSED(event))
{
wxArrayString names;
void MyFrame::OnEnumISPs(wxCommandEvent& WXUNUSED(event))
{
wxArrayString names;