2014-10-19 20:20:16 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Rafael Sokolowski <Rafael.Sokolowski@web.de>
|
2017-08-18 06:06:45 +00:00
|
|
|
* Copyright (C) 2010-2017 KiCad Developers, see CHANGELOG.TXT for contributors.
|
2014-10-19 20:20:16 +00:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
#ifndef DIALOG_ABOUT_H
|
|
|
|
#define DIALOG_ABOUT_H
|
|
|
|
|
|
|
|
#include <wx/html/htmlwin.h>
|
|
|
|
#include <wx/statbmp.h>
|
|
|
|
#include <wx/stattext.h>
|
|
|
|
#include <wx/hyperlink.h>
|
|
|
|
|
2016-03-11 16:40:24 +00:00
|
|
|
#include "aboutinfo.h"
|
|
|
|
#include "dialog_about_base.h"
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* About dialog to show application specific information.
|
2017-08-18 06:06:45 +00:00
|
|
|
* Needs a <code>ABOUT_APP_INFO</code> object that contains the data to be displayed.
|
2013-05-26 04:36:44 +00:00
|
|
|
*/
|
2017-08-18 06:06:45 +00:00
|
|
|
class DIALOG_ABOUT : public DIALOG_ABOUT_BASE
|
2013-05-26 04:36:44 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
// Icons for the various tabs of wxAuiNotebook
|
2017-08-18 06:06:45 +00:00
|
|
|
wxBitmap m_picInformation;
|
|
|
|
wxBitmap m_picDevelopers;
|
|
|
|
wxBitmap m_picDocWriters;
|
|
|
|
wxBitmap m_picArtists;
|
|
|
|
wxBitmap m_picTranslators;
|
|
|
|
wxBitmap m_picPackagers;
|
|
|
|
wxBitmap m_picLicense;
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2017-08-18 06:06:45 +00:00
|
|
|
ABOUT_APP_INFO m_info;
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
public:
|
2017-08-18 06:06:45 +00:00
|
|
|
DIALOG_ABOUT( EDA_BASE_FRAME* aParent, ABOUT_APP_INFO& aAppInfo );
|
|
|
|
~DIALOG_ABOUT();
|
2015-11-19 20:03:02 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
private:
|
2017-08-18 06:06:45 +00:00
|
|
|
void initDialog();
|
|
|
|
|
|
|
|
/** build the version info message
|
|
|
|
* @param aMsg is the result
|
|
|
|
* @param aFormatHtml = true to use a minimal HTML format
|
|
|
|
* false to use a plain text
|
|
|
|
*/
|
|
|
|
void buildVersionInfoData( wxString& aMsg, bool aFormatHtml );
|
|
|
|
|
|
|
|
void onHtmlLinkClicked( wxHtmlLinkEvent& event );
|
|
|
|
|
|
|
|
virtual void onCopyVersionInfo( wxCommandEvent& event ) override;
|
|
|
|
virtual void onShowVersionInfo( wxCommandEvent& event ) override;
|
2013-05-26 04:36:44 +00:00
|
|
|
|
|
|
|
// Notebook pages
|
2017-08-18 06:06:45 +00:00
|
|
|
wxFlexGridSizer* createFlexGridSizer();
|
|
|
|
void createNotebooks();
|
|
|
|
void createNotebookPage( wxAuiNotebook* aParent,
|
2016-04-18 18:15:44 +00:00
|
|
|
const wxString& aCaption,
|
|
|
|
const wxBitmap& aIcon,
|
2017-08-18 06:06:45 +00:00
|
|
|
const CONTRIBUTORS& aContributors );
|
|
|
|
void createNotebookPageByCategory( wxAuiNotebook* aParent,
|
2016-04-18 18:15:44 +00:00
|
|
|
const wxString& aCaption,
|
|
|
|
const wxBitmap& aIcon,
|
2017-08-18 06:06:45 +00:00
|
|
|
const CONTRIBUTORS& aContributors );
|
|
|
|
void createNotebookHtmlPage( wxAuiNotebook* aParent,
|
2016-04-18 18:15:44 +00:00
|
|
|
const wxString& aCaption,
|
|
|
|
const wxBitmap& aIcon,
|
|
|
|
const wxString& aHtmlMessage );
|
2013-05-26 04:36:44 +00:00
|
|
|
|
2017-08-18 06:06:45 +00:00
|
|
|
wxStaticText* wxStaticTextMail( wxScrolledWindow* aParent, const wxString& email );
|
|
|
|
wxStaticBitmap* createStaticBitmap( wxScrolledWindow* aParent, wxBitmap* icon );
|
2013-05-26 04:36:44 +00:00
|
|
|
};
|
2015-11-19 20:03:02 +00:00
|
|
|
|
2013-05-26 04:36:44 +00:00
|
|
|
#endif // DIALOG_ABOUT_H
|