152 lines
5.1 KiB
C++
152 lines
5.1 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2014 Rafael Sokolowski <Rafael.Sokolowski@web.de>
|
|
* Copyright (C) 2014 KiCad Developers, see CHANGELOG.TXT for contributors.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, you may find one here:
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef ABOUTAPPINFO_H
|
|
#define ABOUTAPPINFO_H
|
|
|
|
#include <wx/aboutdlg.h>
|
|
#include <wx/bitmap.h>
|
|
#include <wx/dynarray.h>
|
|
|
|
class Contributor;
|
|
|
|
WX_DECLARE_OBJARRAY( Contributor, Contributors );
|
|
|
|
|
|
/**
|
|
* An object of this class is meant to be used to store application specific information
|
|
* like who has contributed in which area of the application, the license, copyright
|
|
* and other descriptive information.
|
|
*/
|
|
class AboutAppInfo
|
|
{
|
|
public:
|
|
AboutAppInfo() {};
|
|
virtual ~AboutAppInfo() {};
|
|
|
|
void AddDeveloper( const Contributor* developer ) { if( developer != NULL )
|
|
developers.Add( developer );}
|
|
void AddDocWriter( const Contributor* docwriter ) { if( docwriter != NULL )
|
|
docwriters.Add( docwriter );}
|
|
void AddArtist( const Contributor* artist ) { if( artist != NULL )
|
|
artists.Add( artist );}
|
|
void AddTranslator( const Contributor* translator ) { if( translator != NULL )
|
|
translators.Add( translator );}
|
|
|
|
Contributors GetDevelopers() { return developers; }
|
|
Contributors GetDocWriters() { return docwriters; }
|
|
Contributors GetArtists() { return artists; }
|
|
Contributors GetTranslators() { return translators; }
|
|
|
|
void SetDescription( const wxString& text ) { description = text; }
|
|
wxString& GetDescription() { return description; }
|
|
|
|
void SetLicense( const wxString& text ) { license = text; }
|
|
wxString& GetLicense() { return license; }
|
|
|
|
void SetCopyright( const wxString& text ) { copyright = text; }
|
|
wxString GetCopyright()
|
|
{
|
|
wxString copyrightText = copyright;
|
|
|
|
#if wxUSE_UNICODE
|
|
const wxString utf8_copyrightSign = wxString::FromUTF8( "\xc2\xa9" );
|
|
copyrightText.Replace( _T( "(c)" ), utf8_copyrightSign );
|
|
copyrightText.Replace( _T( "(C)" ), utf8_copyrightSign );
|
|
#endif // wxUSE_UNICODE
|
|
|
|
return copyrightText;
|
|
}
|
|
|
|
|
|
void SetAppName( const wxString& name ) { appName = name; }
|
|
wxString& GetAppName() { return appName; }
|
|
|
|
void SetBuildVersion( const wxString& version ) { buildVersion = version; }
|
|
wxString& GetBuildVersion() { return buildVersion; }
|
|
|
|
void SetLibVersion( const wxString& version ) { libVersion = version; }
|
|
wxString& GetLibVersion() { return libVersion; }
|
|
|
|
void SetIcon( const wxIcon& icon ) { appIcon = icon; }
|
|
wxIcon& GetIcon() { return appIcon; }
|
|
|
|
protected:
|
|
private:
|
|
Contributors developers;
|
|
Contributors docwriters;
|
|
Contributors artists;
|
|
Contributors translators;
|
|
|
|
wxString description;
|
|
wxString license;
|
|
|
|
wxString copyright; // Todo: copyright sign in unicode
|
|
wxString appName;
|
|
wxString buildVersion;
|
|
wxString libVersion;
|
|
|
|
wxIcon appIcon;
|
|
};
|
|
|
|
/**
|
|
* A contributor, a person which was involved in the development of the application
|
|
* or which has contributed in any kind somehow to the project.
|
|
*
|
|
* A contributor consists of the following mandatory information:
|
|
* - Name
|
|
* - EMail address
|
|
*
|
|
* Each contributor can have optional information assigned like:
|
|
* - A category
|
|
* - A category specific icon
|
|
*/
|
|
class Contributor
|
|
{
|
|
public:
|
|
Contributor( const wxString& name,
|
|
const wxString& email,
|
|
const wxString& category = wxEmptyString,
|
|
wxBitmap* icon = NULL ) :
|
|
m_checked( false )
|
|
{ m_name = name; m_email = email; m_category = category; m_icon = icon; }
|
|
virtual ~Contributor() {}
|
|
|
|
wxString& GetName() { return m_name; }
|
|
wxString& GetEMail() { return m_email; }
|
|
wxString& GetCategory() { return m_category; }
|
|
wxBitmap* GetIcon() { return m_icon; }
|
|
void SetChecked( bool status ) { m_checked = status; }
|
|
bool IsChecked() { return m_checked; }
|
|
protected:
|
|
private:
|
|
wxString m_name;
|
|
wxString m_email;
|
|
wxString m_category;
|
|
wxBitmap* m_icon;
|
|
bool m_checked;
|
|
};
|
|
|
|
#endif // ABOUTAPPINFO_H
|