1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
// Berkeley Open Infrastructure for Network Computing
// http://boinc.berkeley.edu
// Copyright (C) 2005 University of California
//
// This 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 2.1 of the License, or (at your option) any later version.
//
// This software 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.
//
// To view the GNU Lesser General Public License visit
// http://www.gnu.org/copyleft/lesser.html
// or write to the Free Software Foundation, Inc.,
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma implementation "DlgAbout.h"
#endif
#include "stdwx.h"
#include "BOINCGUIApp.h"
////@begin includes
////@end includes
#include "DlgAbout.h"
#ifdef __WXMSW__
#include "../version.h"
#else
#include "config.h"
#endif
////@begin XPM images
#include "res/boincsm.xpm"
////@end XPM images
/*!
* CDlgAbout type definition
*/
IMPLEMENT_DYNAMIC_CLASS(CDlgAbout, wxDialog)
/*!
* CDlgAbout event table definition
*/
BEGIN_EVENT_TABLE(CDlgAbout, wxDialog)
////@begin CDlgAbout event table entries
////@end CDlgAbout event table entries
END_EVENT_TABLE()
/*!
* CDlgAbout constructors
*/
CDlgAbout::CDlgAbout() {}
CDlgAbout::CDlgAbout(wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style) {
Create(parent, id, caption, pos, size, style);
}
/*!
* CDlgHelpAbout creator
*/
bool CDlgAbout::Create(wxWindow* parent, wxWindowID id, const wxString& caption, const wxPoint& pos, const wxSize& size, long style) {
////@begin CDlgAbout member initialisation
m_strVersion = wxT(BOINC_VERSION_STRING);
m_AboutBOINCTitleCtrl = NULL;
m_AboutBOINCLogoCtrl = NULL;
m_AboutBOINCSloganCtrl = NULL;
m_AboutBOINCURLCtrl = NULL;
////@end CDlgAbout member initialisation
SetExtraStyle(GetExtraStyle()|wxWS_EX_BLOCK_EVENTS);
wxDialog::Create( parent, id, caption, pos, size, style );
CreateControls();
// Change the various dialog items for the branded manager
//
wxString buf = wxEmptyString;
buf.Printf(
_("About %s"),
wxGetApp().GetBrand()->GetApplicationName().c_str()
);
SetTitle(buf);
buf.Printf(
_("%s"),
wxGetApp().GetBrand()->GetApplicationName().c_str()
);
m_AboutBOINCTitleCtrl->SetLabel(buf);
wxBitmap bmp;
if (wxGetApp().GetBrand()->IsBranded()) {
bmp = wxBitmap(*(wxGetApp().GetBrand()->GetApplicationLogo()));
} else {
bmp = wxBitmap(boincsm_xpm);
}
m_AboutBOINCLogoCtrl->SetBitmap(bmp);
m_AboutBOINCSloganCtrl->SetLabel(wxEmptyString);
m_AboutBOINCURLCtrl->SetLabel(
wxGetApp().GetBrand()->GetCompanyWebsite().c_str()
);
GetSizer()->Fit(this);
GetSizer()->SetSizeHints(this);
Centre();
return TRUE;
}
/*!
* Control creation for CDlgHelpAbout
*/
void CDlgAbout::CreateControls() {
////@begin CDlgAbout content construction
CDlgAbout* itemDialog1 = this;
wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVERTICAL);
itemDialog1->SetSizer(itemBoxSizer2);
m_AboutBOINCTitleCtrl = new wxStaticText;
m_AboutBOINCTitleCtrl->Create( itemDialog1, wxID_STATIC, _("BOINC Manager"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE );
m_AboutBOINCTitleCtrl->SetFont(wxFont(24, wxDEFAULT, wxNORMAL, wxBOLD, false, _T("")));
itemBoxSizer2->Add(m_AboutBOINCTitleCtrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxBoxSizer* itemBoxSizer4 = new wxBoxSizer(wxHORIZONTAL);
itemBoxSizer2->Add(itemBoxSizer4, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxBoxSizer* itemBoxSizer5 = new wxBoxSizer(wxVERTICAL);
itemBoxSizer4->Add(itemBoxSizer5, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
wxBitmap m_AboutBOINCLogoCtrlBitmap(wxNullBitmap);
m_AboutBOINCLogoCtrl = new wxStaticBitmap;
m_AboutBOINCLogoCtrl->Create( itemDialog1, wxID_STATIC, m_AboutBOINCLogoCtrlBitmap, wxDefaultPosition, wxSize(50, 50), 0 );
itemBoxSizer5->Add(m_AboutBOINCLogoCtrl, 0, wxALIGN_LEFT|wxALL, 5);
wxFlexGridSizer* itemFlexGridSizer7 = new wxFlexGridSizer(0, 2, 0, 0);
itemBoxSizer4->Add(itemFlexGridSizer7, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
wxStaticText* itemStaticText8 = new wxStaticText;
itemStaticText8->Create( itemDialog1, wxID_STATIC, _("Version:"), wxDefaultPosition, wxDefaultSize, 0 );
itemFlexGridSizer7->Add(itemStaticText8, 0, wxALIGN_RIGHT|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 5);
wxStaticText* itemStaticText9 = new wxStaticText;
itemStaticText9->Create( itemDialog1, wxID_STATIC, _T(""), wxDefaultPosition, wxDefaultSize, 0 );
itemFlexGridSizer7->Add(itemStaticText9, 0, wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 5);
wxStaticText* itemStaticText10 = new wxStaticText;
itemStaticText10->Create( itemDialog1, wxID_STATIC, _("Copyright:"), wxDefaultPosition, wxDefaultSize, 0 );
itemFlexGridSizer7->Add(itemStaticText10, 0, wxALIGN_RIGHT|wxALIGN_TOP|wxLEFT|wxRIGHT, 5);
wxStaticText* itemStaticText11 = new wxStaticText;
itemStaticText11->Create( itemDialog1, wxID_STATIC, _("(C) 2003-2006 University of California at Berkeley.\nAll Rights Reserved."), wxDefaultPosition, wxDefaultSize, 0 );
itemFlexGridSizer7->Add(itemStaticText11, 0, wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL|wxLEFT|wxRIGHT, 5);
m_AboutBOINCSloganCtrl = new wxStaticText;
m_AboutBOINCSloganCtrl->Create( itemDialog1, wxID_STATIC, _("Berkeley Open Infrastructure for Network Computing"), wxDefaultPosition, wxDefaultSize, 0 );
itemBoxSizer2->Add(m_AboutBOINCSloganCtrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxStaticText* itemStaticText13 = new wxStaticText;
itemStaticText13->Create( itemDialog1, wxID_STATIC, _("A software platform for distributed computing using volunteered computer resources"), wxDefaultPosition, wxDefaultSize, 0 );
itemBoxSizer2->Add(itemStaticText13, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
m_AboutBOINCURLCtrl = new wxHyperLink;
m_AboutBOINCURLCtrl->Create( itemDialog1, ID_ABOUTBOINCLINK, wxT("http://boinc.berkeley.edu/"), wxDefaultPosition, wxDefaultSize, wxNO_BORDER );
itemBoxSizer2->Add(m_AboutBOINCURLCtrl, 0, wxALIGN_CENTER_HORIZONTAL|wxALL, 5);
wxStaticLine* itemStaticLine15 = new wxStaticLine;
itemStaticLine15->Create( itemDialog1, wxID_STATIC, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
itemBoxSizer2->Add(itemStaticLine15, 0, wxGROW|wxALL, 5);
wxButton* itemButton16 = new wxButton;
itemButton16->Create( itemDialog1, wxID_OK, _("&OK"), wxDefaultPosition, wxDefaultSize, 0 );
itemButton16->SetDefault();
itemBoxSizer2->Add(itemButton16, 0, wxALIGN_RIGHT|wxALL, 5);
// Set validators
itemStaticText9->SetValidator( wxGenericValidator(& m_strVersion) );
////@end CDlgAbout content construction
}
/*!
* Should we show tooltips?
*/
bool CDlgAbout::ShowToolTips() {
return TRUE;
}
/*!
* Get bitmap resources
*/
wxBitmap CDlgAbout::GetBitmapResource(const wxString& WXUNUSED(name)) {
// Bitmap retrieval
////@begin CDlgAbout bitmap retrieval
return wxNullBitmap;
////@end CDlgAbout bitmap retrieval
}
/*!
* Get icon resources
*/
wxIcon CDlgAbout::GetIconResource(const wxString& WXUNUSED(name)) {
// Icon retrieval
////@begin CDlgAbout icon retrieval
return wxNullIcon;
////@end CDlgAbout icon retrieval
}
const char *BOINC_RCSID_b40c2996e6="$Id: DlgAbout.cpp,v 1.27 2006/04/06 19:54:02 rwalton Exp $";
|