Skip to content
Snippets Groups Projects
Select Git revision
  • fd5c67bbf9f1eaa6ebb06bfa6f5c0139095de2a2
  • master default protected
  • antenna-patterns
  • qt5-qopenglwidget
  • license-demo
  • isolated
  • isolated-fixedprofile
  • release_1.1
  • press-conference
  • rim-only
  • release_1.0
11 results

pulsescopewidget.h

Blame
  • ProjectInfoPage.h 4.29 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/>.
    //
    #ifndef _WIZ_PROJECTINFOPAGE_H_
    #define _WIZ_PROJECTINFOPAGE_H_
    
    #if defined(__GNUG__) && !defined(__APPLE__)
    #pragma interface "ProjectInfoPage.cpp"
    #endif
    
    
    class CProjectInfo;
    
    
    /*!
     * CProjectInfoPage class declaration
     */
    
    class CProjectInfoPage: public wxWizardPageEx
    {    
        DECLARE_DYNAMIC_CLASS( CProjectInfoPage )
        DECLARE_EVENT_TABLE()
    
    public:
        /// Constructors
        CProjectInfoPage( );
    
        CProjectInfoPage( CBOINCBaseWizard* parent );
    
        /// Destructor
        ~CProjectInfoPage( );
    
        /// Creation
        bool Create( CBOINCBaseWizard* parent );
    
        /// Creates the controls and sizers
        void CreateControls();
    
    ////@begin CProjectInfoPage event handler declarations
    
        /// wxEVT_COMMAND_COMBOBOX_SELECTED event handler for ID_PROJECTCATEGORY
        void OnProjectCategorySelected( wxCommandEvent& event );
    
        /// wxEVT_COMMAND_LISTBOX_SELECTED event handler for ID_PROJECTS
        void OnProjectSelected( wxCommandEvent& event );
    
        /// wxEVT_WIZARD_PAGE_CHANGED event handler for ID_PROJECTINFOPAGE
        void OnPageChanged( wxWizardExEvent& event );
    
        /// wxEVT_WIZARD_PAGE_CHANGING event handler for ID_PROJECTINFOPAGE
        void OnPageChanging( wxWizardExEvent& event );
    
        /// wxEVT_WIZARD_CANCEL event handler for ID_PROJECTINFOPAGE
        void OnCancel( wxWizardExEvent& event );
    
    ////@end CProjectInfoPage event handler declarations