Skip to content
Snippets Groups Projects
Select Git revision
  • 223ef74d5ccb5858f3d5032b56f1485a9b7e8bb6
  • master default protected
2 results

test_property.py

Blame
  • NoInternetConnectionPage.cpp 5.09 KiB
    // This file is part of BOINC.
    // http://boinc.berkeley.edu
    // Copyright (C) 2008 University of California
    //
    // 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.
    //
    // BOINC 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 Lesser General Public License for more details.
    //
    // You should have received a copy of the GNU Lesser General Public License
    // along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
    //
    #if defined(__GNUG__) && !defined(__APPLE__)
    #pragma implementation "NoInternetConnectionPage.h"
    #endif
    
    #include "stdwx.h"
    #include "diagnostics.h"
    #include "util.h"
    #include "mfile.h"
    #include "miofile.h"
    #include "parse.h"
    #include "error_numbers.h"
    #include "wizardex.h"
    #include "error_numbers.h"
    #include "BOINCGUIApp.h"
    #include "SkinManager.h"
    #include "MainDocument.h"
    #include "BOINCBaseWizard.h"
    #include "WizardAttach.h"
    #include "NoInternetConnectionPage.h"
    
    
    /*!
     * CErrNoInternetConnectionPage type definition
     */
    
    IMPLEMENT_DYNAMIC_CLASS( CErrNoInternetConnectionPage, wxWizardPageEx )
    
    /*!
     * CErrNoInternetConnectionPage event table definition
     */
    
    BEGIN_EVENT_TABLE( CErrNoInternetConnectionPage, wxWizardPageEx )
    
    ////@begin CErrNoInternetConnectionPage event table entries
        EVT_WIZARDEX_PAGE_CHANGED( -1, CErrNoInternetConnectionPage::OnPageChanged )
        EVT_WIZARDEX_CANCEL( -1, CErrNoInternetConnectionPage::OnCancel )
    
    ////@end CErrNoInternetConnectionPage event table entries
    
    END_EVENT_TABLE()
    
    /*!
     * CErrNoInternetConnectionPage constructors
     */
    
    CErrNoInternetConnectionPage::CErrNoInternetConnectionPage( )
    {
    }
    
    CErrNoInternetConnectionPage::CErrNoInternetConnectionPage( CBOINCBaseWizard* parent )
    {
        Create( parent );
    }