2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// 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.
|
2004-04-10 09:11:03 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// 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.
|
2004-05-17 22:15:10 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2005-04-01 22:17:44 +00:00
|
|
|
//
|
2004-04-10 09:11:03 +00:00
|
|
|
#ifndef _DLGABOUT_H_
|
|
|
|
#define _DLGABOUT_H_
|
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma interface "DlgAbout.cpp"
|
|
|
|
#endif
|
|
|
|
|
2005-04-01 22:17:44 +00:00
|
|
|
/*!
|
|
|
|
* Includes
|
|
|
|
*/
|
|
|
|
|
|
|
|
////@begin includes
|
|
|
|
#include "wx/valgen.h"
|
|
|
|
#include "wx/statline.h"
|
|
|
|
////@end includes
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Forward declarations
|
|
|
|
*/
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2005-04-01 22:17:44 +00:00
|
|
|
////@begin forward declarations
|
|
|
|
////@end forward declarations
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Control identifiers
|
|
|
|
*/
|
|
|
|
|
|
|
|
////@begin control identifiers
|
2004-04-10 09:11:03 +00:00
|
|
|
#define ID_DIALOG 10000
|
2005-07-22 00:00:49 +00:00
|
|
|
#define SYMBOL_CDLGABOUT_STYLE wxDEFAULT_DIALOG_STYLE
|
2007-08-16 20:06:50 +00:00
|
|
|
#define SYMBOL_CDLGABOUT_TITLE wxT("")
|
2005-04-01 22:17:44 +00:00
|
|
|
#define SYMBOL_CDLGABOUT_IDNAME ID_DIALOG
|
2006-01-09 14:03:13 +00:00
|
|
|
#define SYMBOL_CDLGABOUT_SIZE wxSize(-1, -1)
|
2005-04-01 22:17:44 +00:00
|
|
|
#define SYMBOL_CDLGABOUT_POSITION wxDefaultPosition
|
2005-07-22 06:56:34 +00:00
|
|
|
#define ID_ABOUTBOINCLINK 10031
|
2005-04-01 22:17:44 +00:00
|
|
|
////@end control identifiers
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* Compatibility
|
|
|
|
*/
|
2004-04-10 09:11:03 +00:00
|
|
|
|
|
|
|
#ifndef wxCLOSE_BOX
|
|
|
|
#define wxCLOSE_BOX 0x1000
|
|
|
|
#endif
|
2005-04-01 22:17:44 +00:00
|
|
|
#ifndef wxFIXED_MINSIZE
|
|
|
|
#define wxFIXED_MINSIZE 0
|
|
|
|
#endif
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2005-04-01 22:17:44 +00:00
|
|
|
/*!
|
|
|
|
* CDlgAbout class declaration
|
|
|
|
*/
|
2004-04-10 09:11:03 +00:00
|
|
|
|
2004-04-10 20:25:27 +00:00
|
|
|
class CDlgAbout: public wxDialog
|
2004-04-10 09:11:03 +00:00
|
|
|
{
|
2005-04-01 22:17:44 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS( CDlgAbout )
|
2004-04-10 09:11:03 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
public:
|
|
|
|
/// Constructors
|
2004-04-10 20:25:27 +00:00
|
|
|
CDlgAbout( );
|
2005-04-01 22:17:44 +00:00
|
|
|
CDlgAbout( wxWindow* parent, wxWindowID id = SYMBOL_CDLGABOUT_IDNAME, const wxString& caption = SYMBOL_CDLGABOUT_TITLE, const wxPoint& pos = SYMBOL_CDLGABOUT_POSITION, const wxSize& size = SYMBOL_CDLGABOUT_SIZE, long style = SYMBOL_CDLGABOUT_STYLE );
|
2004-04-10 09:11:03 +00:00
|
|
|
|
|
|
|
/// Creation
|
2005-04-01 22:17:44 +00:00
|
|
|
bool Create( wxWindow* parent, wxWindowID id = SYMBOL_CDLGABOUT_IDNAME, const wxString& caption = SYMBOL_CDLGABOUT_TITLE, const wxPoint& pos = SYMBOL_CDLGABOUT_POSITION, const wxSize& size = SYMBOL_CDLGABOUT_SIZE, long style = SYMBOL_CDLGABOUT_STYLE );
|
2004-04-10 09:11:03 +00:00
|
|
|
|
|
|
|
/// Creates the controls and sizers
|
|
|
|
void CreateControls();
|
|
|
|
|
2005-04-01 22:17:44 +00:00
|
|
|
////@begin CDlgAbout event handler declarations
|
|
|
|
|
|
|
|
////@end CDlgAbout event handler declarations
|
|
|
|
|
|
|
|
////@begin CDlgAbout member function declarations
|
|
|
|
|
|
|
|
wxString GetVersion() const { return m_strVersion ; }
|
|
|
|
void SetVersion(wxString value) { m_strVersion = value ; }
|
|
|
|
|
|
|
|
/// Retrieves bitmap resources
|
|
|
|
wxBitmap GetBitmapResource( const wxString& name );
|
|
|
|
|
|
|
|
/// Retrieves icon resources
|
|
|
|
wxIcon GetIconResource( const wxString& name );
|
|
|
|
////@end CDlgAbout member function declarations
|
|
|
|
|
2004-04-10 09:11:03 +00:00
|
|
|
/// Should we show tooltips?
|
|
|
|
static bool ShowToolTips();
|
2005-04-01 22:17:44 +00:00
|
|
|
|
|
|
|
////@begin CDlgAbout member variables
|
2005-12-28 12:33:18 +00:00
|
|
|
wxStaticText* m_AboutBOINCTitleCtrl;
|
|
|
|
wxStaticBitmap* m_AboutBOINCLogoCtrl;
|
|
|
|
wxStaticText* m_AboutBOINCSloganCtrl;
|
2009-12-19 05:16:41 +00:00
|
|
|
wxHyperlinkCtrl* m_AboutBOINCURLCtrl;
|
2005-04-01 22:17:44 +00:00
|
|
|
wxString m_strVersion;
|
2008-10-31 21:28:01 +00:00
|
|
|
wxString m_strWidgetsVersion;
|
2005-04-01 22:17:44 +00:00
|
|
|
////@end CDlgAbout member variables
|
2004-04-10 09:11:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _DLGABOUT_H_
|