Added new KiCad about dialog, from Rafael Sokolowski <Rafael.Sokolowski@web.de>
This commit is contained in:
parent
7e56bf2828
commit
72c48d46da
|
@ -5,7 +5,14 @@ include_directories(${CMAKE_CURRENT_SOURCE_DIR}
|
||||||
../polygon
|
../polygon
|
||||||
)
|
)
|
||||||
|
|
||||||
|
set( COMMON_ABOUT_DLG_SRCS
|
||||||
|
dialog_about/AboutDialog_main.cpp
|
||||||
|
dialog_about/dialog_about.cpp
|
||||||
|
dialog_about/dialog_about_base.cpp
|
||||||
|
)
|
||||||
|
|
||||||
set(COMMON_SRCS
|
set(COMMON_SRCS
|
||||||
|
${COMMON_ABOUT_DLG_SRCS}
|
||||||
about_kicad.cpp
|
about_kicad.cpp
|
||||||
base_screen.cpp
|
base_screen.cpp
|
||||||
base_struct.cpp
|
base_struct.cpp
|
||||||
|
|
|
@ -22,6 +22,8 @@
|
||||||
#include "macros.h"
|
#include "macros.h"
|
||||||
#include "bitmaps.h"
|
#include "bitmaps.h"
|
||||||
|
|
||||||
|
// Uncomment this line to use the new KiCad About dialog
|
||||||
|
#define USE_NEW_ABOUT_DIALOG
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Class constructor for WinEDA_BasicFrame general options
|
* Class constructor for WinEDA_BasicFrame general options
|
||||||
|
@ -286,9 +288,14 @@ void WinEDA_BasicFrame::GetKicadHelp( wxCommandEvent& event )
|
||||||
*/
|
*/
|
||||||
void WinEDA_BasicFrame::GetKicadAbout( wxCommandEvent& WXUNUSED(event) )
|
void WinEDA_BasicFrame::GetKicadAbout( wxCommandEvent& WXUNUSED(event) )
|
||||||
{
|
{
|
||||||
|
#ifdef USE_NEW_ABOUT_DIALOG
|
||||||
|
bool ShowAboutDialog(wxWindow * parent);
|
||||||
|
ShowAboutDialog(this);
|
||||||
|
#else
|
||||||
wxAboutDialogInfo info;
|
wxAboutDialogInfo info;
|
||||||
InitKiCadAbout(info);
|
InitKiCadAbout(info);
|
||||||
wxAboutBox(info);
|
wxAboutBox(info);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,311 @@
|
||||||
|
/***************************************************************
|
||||||
|
* Name: AboutDialog_main.cpp
|
||||||
|
* Purpose: Code for Application Class
|
||||||
|
* Author: Rafael Sokolowski (rafael.sokolowski@web.de)
|
||||||
|
* Created: 2010-08-06
|
||||||
|
* Copyright: Rafael Sokolowski ()
|
||||||
|
* License:
|
||||||
|
**************************************************************/# include "dialog_about.h"
|
||||||
|
#include "aboutinfo.h"
|
||||||
|
#include <wx/aboutdlg.h>
|
||||||
|
|
||||||
|
|
||||||
|
/* Used icons:
|
||||||
|
* lang_xx_xpm[]; // Icons of various national flags
|
||||||
|
* show_3d_xpm[]; // 3D icon
|
||||||
|
* edit_module_xpm[];
|
||||||
|
* kicad_icon_xpm[]; // Icon of the application
|
||||||
|
*/
|
||||||
|
#include "bitmaps.h"
|
||||||
|
|
||||||
|
|
||||||
|
#include "build_version.h"
|
||||||
|
|
||||||
|
|
||||||
|
#include <wx/arrimpl.cpp>
|
||||||
|
WX_DEFINE_OBJARRAY( Contributors );
|
||||||
|
|
||||||
|
// Helper functions:
|
||||||
|
static wxString HtmlHyperlink( const wxString& url, const wxString& description = wxEmptyString );
|
||||||
|
static wxString HtmlNewline( const unsigned int amount = 1 );
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the <code>AboutAppInfo</code> object with applicaion specific information.
|
||||||
|
*
|
||||||
|
* @info is the object which holds all information about the application
|
||||||
|
*/
|
||||||
|
static void InitKiCadAboutNew( AboutAppInfo& info )
|
||||||
|
{
|
||||||
|
/* set application specific icon */
|
||||||
|
|
||||||
|
// COULD BE: use another function call to get appropriate icon; its hardcoded because there is no top level window existing here
|
||||||
|
// do something like:
|
||||||
|
// wxTheApp->GetTopWindow()->GetIcon() ??? or...
|
||||||
|
// const wxTopLevelWindow * const tlw = wxDynamicCast(::wxGetApp().GetTopWindow(), wxTopLevelWindow); ???
|
||||||
|
// if( tlw ) info.SetIcon( tlw->GetIcon() ); ???
|
||||||
|
info.SetIcon( kicad_icon_xpm );
|
||||||
|
|
||||||
|
/* Set title */
|
||||||
|
|
||||||
|
// COULD BE: info.SetAppName( wxT( ".: " ) + wxGetApp().GetTitle() + wxT( " :." ) );
|
||||||
|
info.SetAppName( wxT( ".: KiCad :." ) );
|
||||||
|
|
||||||
|
/* copyright information */
|
||||||
|
info.SetCopyright( wxT( "(C) 1992-2010 KiCad Developers Team" ) );
|
||||||
|
|
||||||
|
/* KiCad build version */
|
||||||
|
wxString version;
|
||||||
|
version << wxT( "Build: " ) << GetBuildVersion();
|
||||||
|
info.SetBuildVersion( version );
|
||||||
|
|
||||||
|
/* wxWidgets version */
|
||||||
|
wxString libVersion;
|
||||||
|
libVersion
|
||||||
|
<< wxT( "wxWidgets " )
|
||||||
|
<< wxMAJOR_VERSION << wxT( "." )
|
||||||
|
<< wxMINOR_VERSION << wxT( "." )
|
||||||
|
<< wxRELEASE_NUMBER
|
||||||
|
|
||||||
|
/* Unicode or Ansi version */
|
||||||
|
#if wxUSE_UNICODE
|
||||||
|
<< wxT( " Unicode " );
|
||||||
|
#else
|
||||||
|
<< wxT( " Ansi " );
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
/* Operating System Information */
|
||||||
|
|
||||||
|
#if defined __WINDOWS__
|
||||||
|
libVersion << wxT( "on Windows" );
|
||||||
|
|
||||||
|
/* Check for wxMAC */
|
||||||
|
# elif defined __WXMAC__
|
||||||
|
libVersion << wxT( "on Macintosh" );
|
||||||
|
|
||||||
|
/* Linux 64 bits */
|
||||||
|
# elif defined _LP64 && __LINUX__
|
||||||
|
libVersion << wxT( "on 64 Bits GNU/Linux" );
|
||||||
|
|
||||||
|
/* Linux 32 bits */
|
||||||
|
# elif defined __LINUX__
|
||||||
|
libVersion << wxT( "on 32 Bits GNU/Linux" );
|
||||||
|
|
||||||
|
/* OpenBSD */
|
||||||
|
# elif defined __OpenBSD__
|
||||||
|
libVersion << wxT( "on OpenBSD" );
|
||||||
|
|
||||||
|
/* FreeBSD */
|
||||||
|
# elif defined __FreeBSD__
|
||||||
|
libVersion << wxT( "on FreeBSD" );
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
info.SetLibVersion( libVersion );
|
||||||
|
|
||||||
|
|
||||||
|
/* info/description part HTML formatted */
|
||||||
|
|
||||||
|
wxString description;
|
||||||
|
|
||||||
|
/* short description */
|
||||||
|
description << wxT( "<p>" );
|
||||||
|
description << wxT( "<b><u>" ) << _( "Description" ) << wxT( "</u></b>" ); // bold & underlined font for caption
|
||||||
|
|
||||||
|
description << wxT(
|
||||||
|
"<p>The KiCad EDA Suite is a set of open source applications for the creation of electronic schematics and to design printed circuit boards.</p>" );
|
||||||
|
|
||||||
|
description << wxT( "</p>" );
|
||||||
|
|
||||||
|
/* websites */
|
||||||
|
description << wxT( "<p>" );
|
||||||
|
description << wxT( "<b><u>" ) << _( "KiCad on the web" ) << wxT( "</u></b>" ); // bold & underlined font for caption
|
||||||
|
|
||||||
|
// bulletet list with some http links
|
||||||
|
description << wxT( "<ul>" );
|
||||||
|
description << wxT( "<li>" ) << HtmlHyperlink( wxT(
|
||||||
|
"http://iut-tice.ujf-grenoble.fr/kicad" ),
|
||||||
|
_( "The original site of the initiator of Kicad" ) )
|
||||||
|
<< wxT( "</li>" );
|
||||||
|
description << wxT( "<li>" ) <<
|
||||||
|
HtmlHyperlink( wxT( "https://launchpad.net/kicad" ), _( "Project on Launchpad" ) ) << wxT(
|
||||||
|
"</li>" );
|
||||||
|
description << wxT( "<li>" ) <<
|
||||||
|
HtmlHyperlink( wxT( "http://kicad.sourceforge.net" ),
|
||||||
|
_( "Wiki on Sourceforge with many information" ) ) << wxT( "</li>" );
|
||||||
|
description << wxT( "<li>" ) <<
|
||||||
|
HtmlHyperlink( wxT( "http://www.kicadlib.org" ),
|
||||||
|
_( "Repository with additional component libraries" ) ) << wxT( "</li>" );
|
||||||
|
description << wxT( "</ul>" );
|
||||||
|
|
||||||
|
description << wxT( "</p>" );
|
||||||
|
|
||||||
|
description << wxT( "<p>" );
|
||||||
|
description << wxT( "<b><u>" ) << _( "Contribute to KiCad" ) << wxT( "</u></b>" ); // bold & underlined font caption
|
||||||
|
|
||||||
|
// bulletet list with some http links
|
||||||
|
description << wxT( "<ul>" );
|
||||||
|
description << wxT( "<li>" ) <<
|
||||||
|
HtmlHyperlink( wxT( "https://bugs.launchpad.net/kicad" ),
|
||||||
|
_( "Report bugs if you found any" ) ) << wxT( "</li>" );
|
||||||
|
description << wxT( "<li>" ) << HtmlHyperlink( wxT(
|
||||||
|
"https://blueprints.launchpad.net/kicad" ),
|
||||||
|
_( "File an idea for improvement" ) ) << wxT(
|
||||||
|
"</li>" );
|
||||||
|
description << wxT( "<li>" ) <<
|
||||||
|
HtmlHyperlink( wxT( "http://www.kicadlib.org/Kicad_related_links.html" ),
|
||||||
|
_( "KiCad links to user groups, tutorials and much more" ) ) << wxT( "</li>" );
|
||||||
|
description << wxT( "</ul>" );
|
||||||
|
|
||||||
|
description << wxT( "</p>" );
|
||||||
|
|
||||||
|
info.SetDescription( description );
|
||||||
|
|
||||||
|
|
||||||
|
/* License information also HTML formatted */
|
||||||
|
wxString license;
|
||||||
|
license
|
||||||
|
<< wxT( "<div align='center'>" )
|
||||||
|
<< HtmlNewline( 4 )
|
||||||
|
<< _( "The complete KiCad EDA Suite is released under the" ) << HtmlNewline( 2 )
|
||||||
|
<< HtmlHyperlink( wxT( "http://www.gnu.org/licenses" ),
|
||||||
|
_( "GNU General Public License version 2" ) )
|
||||||
|
<< wxT( "</div>" );
|
||||||
|
|
||||||
|
info.SetLicense( license );
|
||||||
|
|
||||||
|
|
||||||
|
/* A contributor consists of the following information:
|
||||||
|
* Mandatory:
|
||||||
|
* - Name
|
||||||
|
* - EMail address
|
||||||
|
* Optional:
|
||||||
|
* - Category
|
||||||
|
* - Category specific icon
|
||||||
|
*
|
||||||
|
* All contributors of the same category will be enumerated under this category
|
||||||
|
* which should be represented by the same icon.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* The developers */
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Jean-Pierre Charras" ),
|
||||||
|
wxT( "jean-pierre.charras@gipsa-lab.inpg.fr" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Dick Hollenbeck" ), wxT( "dick@softplc.com" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Hauptmech" ), wxT( "hauptmech@gmail.com" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Jerry Jacobs" ),
|
||||||
|
wxT( "xor.gate.engineering@gmail.com" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Jonas Diemer" ), wxT( "diemer@gmx.de" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "KBool Library" ),
|
||||||
|
wxT( "http://boolean.klaasholwerda.nl/bool.html" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Lorenzo Marcantonio" ), wxT( "lomarcan@tin.it" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Marco Serantoni" ), wxT( "marco.serantoni@gmail.com" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Rok Markovic" ), wxT( "rok@kanardia.eu" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Tim Hanson" ), wxT( "sideskate@gmail.com" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Vesa Solonen" ), wxT( "vesa.solonen@hut.fi" ) ) );
|
||||||
|
info.AddDeveloper( new Contributor( wxT( "Wayne Stambaugh" ), wxT( "stambaughw@verizon.net" ) ) );
|
||||||
|
|
||||||
|
/* The document writers */
|
||||||
|
info.AddDocWriter( new Contributor( wxT( "Jean-Pierre Charras" ),
|
||||||
|
wxT( "jean-pierre.charras@gipsa-lab.inpg.fr" ) ) );
|
||||||
|
info.AddDocWriter( new Contributor( wxT( "Igor Plyatov" ), wxT( "plyatov@gmail.com" ) ) );
|
||||||
|
|
||||||
|
/* The translators
|
||||||
|
* As category the language to which the translation was done is used
|
||||||
|
* and as icon the national flag of the corresponding country.
|
||||||
|
*/
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Martin Kratoška" ), wxT( "martin@ok1rr.com" ),
|
||||||
|
wxT( "Czech (CZ)" ), new wxBitmap( lang_cs_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Jerry Jacobs" ),
|
||||||
|
wxT( "xor.gate.engineering@gmail.com" ), wxT( "Dutch (NL)" ),
|
||||||
|
new wxBitmap( lang_nl_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Vesa Solonen" ), wxT( "vesa.solonen@hut.fi" ),
|
||||||
|
wxT( "Finnish (FI)" ), new wxBitmap( lang_fi_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Jean-Pierre Charras" ),
|
||||||
|
wxT( "jean-pierre.charras@gipsa-lab.inpg.fr" ),
|
||||||
|
wxT( "French (FR)" ), new wxBitmap( lang_fr_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Mateusz Skowroński" ), wxT( "skowri@gmail.com" ),
|
||||||
|
wxT( "Polish (PL)" ), new wxBitmap( lang_pl_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Renie Marquet" ), wxT( "reniemarquet@uol.com.br" ),
|
||||||
|
wxT( "Portuguese (PT)" ), new wxBitmap( lang_pt_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Igor Plyatov" ), wxT( "plyatov@gmail.com" ),
|
||||||
|
wxT( "Russian (RU)" ), new wxBitmap( lang_ru_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Pedro Martin del Valle" ), wxT( "pkicad@yahoo.es" ),
|
||||||
|
wxT( "Spanish (ES)" ), new wxBitmap( lang_es_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Iñigo Zuluaga" ), wxT( "inigo_zuluaga@yahoo.es" ),
|
||||||
|
wxT( "Spanish (ES)" ), new wxBitmap( lang_es_xpm ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Rafael Sokolowski" ),
|
||||||
|
wxT( "rafael.sokolowski@web.de" ), wxT( "German (DE)" ),
|
||||||
|
new wxBitmap( lang_de_xpm ) ) );
|
||||||
|
|
||||||
|
/* TODO: are these all russian translators, placed them here now, or else align them below other language maintainer with mail adress */
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Remy Halvick" ), wxEmptyString, wxT( "Others" ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "David Briscoe" ), wxEmptyString, wxT( "Others" ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Dominique Laigle" ), wxEmptyString, wxT( "Others" ) ) );
|
||||||
|
info.AddTranslator( new Contributor( wxT( "Paul Burke" ), wxEmptyString, wxT( "Others" ) ) );
|
||||||
|
|
||||||
|
/* Programm credits for icons */
|
||||||
|
info.AddArtist( new Contributor( wxT( "Iñigo Zuluagaz" ), wxT( "inigo_zuluaga@yahoo.es" ),
|
||||||
|
wxT( "Icons by" ), new wxBitmap( edit_module_xpm ) ) );
|
||||||
|
info.AddArtist( new Contributor( wxT( "Renie Marquet" ), wxT( "reniemarquet@uol.com.br" ),
|
||||||
|
wxT( "3D modules by" ), new wxBitmap( show_3d_xpm ) ) );
|
||||||
|
info.AddArtist( new Contributor( wxT( "Christophe Boschat" ), wxT( "nox454@hotmail.fr" ),
|
||||||
|
wxT( "3D modules by" ), new wxBitmap( show_3d_xpm ) ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool ShowAboutDialog( wxWindow* parent )
|
||||||
|
{
|
||||||
|
AboutAppInfo info;
|
||||||
|
|
||||||
|
InitKiCadAboutNew( info );
|
||||||
|
|
||||||
|
dialog_about* dlg = new dialog_about( parent, info );
|
||||||
|
dlg->SetIcon( info.GetIcon() );
|
||||||
|
dlg->Show();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// Helper functions
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wraps the given url with a HTML anchor tag containing a hyperlink text reference
|
||||||
|
* to form a HTML hyperlink.
|
||||||
|
*
|
||||||
|
* @url the url that will be embedded in an anchor tag containing a hyperlink reference
|
||||||
|
* @description the optional describing text that will be represented as a hyperlink.
|
||||||
|
* If not specified the url will be used as hyperlink.
|
||||||
|
* @return a HTML conform hyperlink like <a href='url'>description</a>
|
||||||
|
*/
|
||||||
|
static wxString HtmlHyperlink( const wxString& url, const wxString& description )
|
||||||
|
{
|
||||||
|
wxString hyperlink = wxEmptyString;
|
||||||
|
|
||||||
|
if( description.IsEmpty() )
|
||||||
|
hyperlink << wxT( "<a href='" ) << url << wxT( "'>" ) << url << wxT( "</a>" );
|
||||||
|
else
|
||||||
|
hyperlink << wxT( "<a href='" ) << url << wxT( "'>" ) << description << wxT( "</a>" );
|
||||||
|
|
||||||
|
return hyperlink;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a HTML newline character sequence.
|
||||||
|
*
|
||||||
|
* @amount the amount of HTML newline tags to concatenate, default is to return just one <br> tag
|
||||||
|
* @return the concatenated amount of HTML newline tag(s) <br>
|
||||||
|
*/
|
||||||
|
static wxString HtmlNewline( const unsigned int amount )
|
||||||
|
{
|
||||||
|
wxString newlineTags = wxEmptyString;
|
||||||
|
|
||||||
|
for( size_t i = 0; i<amount; ++i )
|
||||||
|
newlineTags << wxT( "<br>" );
|
||||||
|
|
||||||
|
return newlineTags;
|
||||||
|
}
|
|
@ -0,0 +1,127 @@
|
||||||
|
#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
|
|
@ -0,0 +1,338 @@
|
||||||
|
/***************************************************************
|
||||||
|
* Name: dialog_about.cpp
|
||||||
|
* Purpose: Code for Application Frame
|
||||||
|
* Author: Rafael Sokolowski (rafael.sokolowski@web.de)
|
||||||
|
* Created: 2010-08-06
|
||||||
|
* Copyright: Rafael Sokolowski ()
|
||||||
|
* License:
|
||||||
|
**************************************************************/
|
||||||
|
#include "dialog_about.h"
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// Class dialog_about methods
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
dialog_about::dialog_about(wxWindow *parent, AboutAppInfo& appInfo)
|
||||||
|
: dialog_about_base(parent), info(appInfo)
|
||||||
|
{
|
||||||
|
picInformation = wxBitmap(info_xpm);
|
||||||
|
picDevelopers = wxBitmap(preference_xpm);
|
||||||
|
picDocWriters = wxBitmap(editor_xpm);
|
||||||
|
picArtists = wxBitmap(palette_xpm);
|
||||||
|
picTranslators = wxBitmap(language_xpm);
|
||||||
|
picLicense = wxBitmap(tools_xpm);
|
||||||
|
|
||||||
|
m_bitmapApp->SetBitmap( info.GetIcon() );
|
||||||
|
|
||||||
|
m_staticTextAppTitle->SetLabel( info.GetAppName() );
|
||||||
|
m_staticTextCopyright->SetLabel( info.GetCopyright() );
|
||||||
|
m_staticTextBuildVersion->SetLabel( info.GetBuildVersion() );
|
||||||
|
m_staticTextLibVersion->SetLabel( info.GetLibVersion() );
|
||||||
|
|
||||||
|
/* Affects m_titlepanel the parent of some wxStaticText.
|
||||||
|
* Changing the text afterwards makes it under Windows necessary to call 'Layout()'
|
||||||
|
* so that the new text gets properly layout.
|
||||||
|
*/
|
||||||
|
/* m_staticTextCopyright->GetParent()->Layout();
|
||||||
|
m_staticTextBuildVersion->GetParent()->Layout();
|
||||||
|
m_staticTextLibVersion->GetParent()->Layout();
|
||||||
|
*/
|
||||||
|
DeleteNotebooks();
|
||||||
|
CreateNotebooks();
|
||||||
|
GetSizer()->SetSizeHints(this);
|
||||||
|
m_auiNotebook->Update();
|
||||||
|
|
||||||
|
Centre();
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog_about::~dialog_about()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
wxFlexGridSizer* dialog_about::CreateFlexGridSizer()
|
||||||
|
{
|
||||||
|
// three colums with vertical and horizontal extra space of two pixels
|
||||||
|
wxFlexGridSizer* fgSizer1 = new wxFlexGridSizer( 3, 2, 2 );
|
||||||
|
fgSizer1->SetFlexibleDirection( wxHORIZONTAL );
|
||||||
|
fgSizer1->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
|
||||||
|
|
||||||
|
return fgSizer1;
|
||||||
|
}
|
||||||
|
|
||||||
|
void dialog_about::DeleteNotebooks()
|
||||||
|
{
|
||||||
|
for( size_t i=0; i<m_auiNotebook->GetPageCount(); ++i )
|
||||||
|
m_auiNotebook->DeletePage(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
void dialog_about::CreateNotebooks()
|
||||||
|
{
|
||||||
|
CreateNotebookHtmlPage( m_auiNotebook, _("Information"), picInformation, info.GetDescription() );
|
||||||
|
|
||||||
|
CreateNotebookPage( m_auiNotebook, _("Developers") , picDevelopers, info.GetDevelopers() );
|
||||||
|
CreateNotebookPage( m_auiNotebook, _("Doc Writers"), picDocWriters, info.GetDocWriters() );
|
||||||
|
|
||||||
|
CreateNotebookPageByCategory( m_auiNotebook, _("Artists") , picArtists, info.GetArtists() );
|
||||||
|
CreateNotebookPageByCategory( m_auiNotebook, _("Translators"), picTranslators, info.GetTranslators() );
|
||||||
|
|
||||||
|
CreateNotebookHtmlPage( m_auiNotebook, _("License"), picLicense, info.GetLicense() );
|
||||||
|
}
|
||||||
|
|
||||||
|
void dialog_about::CreateNotebookPage(wxAuiNotebook* parent, const wxString& caption, const wxBitmap& icon, const Contributors& contributors)
|
||||||
|
{
|
||||||
|
wxBoxSizer* bSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
|
wxScrolledWindow* m_scrolledWindow1 = new wxScrolledWindow( parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxVSCROLL );
|
||||||
|
m_scrolledWindow1->SetScrollRate( 5, 5 );
|
||||||
|
|
||||||
|
/* Panel for additional space at the left,
|
||||||
|
* but can also be used to show an additional bitmap.
|
||||||
|
*/
|
||||||
|
wxPanel* panel1 = new wxPanel(m_scrolledWindow1);
|
||||||
|
|
||||||
|
wxFlexGridSizer* fgSizer1 = CreateFlexGridSizer();
|
||||||
|
|
||||||
|
for ( size_t i=0; i<contributors.GetCount(); ++i)
|
||||||
|
{
|
||||||
|
Contributor* contributor = &contributors.Item(i);
|
||||||
|
|
||||||
|
// Icon at first column
|
||||||
|
wxStaticBitmap* m_bitmap1 = CreateStaticBitmap( m_scrolledWindow1, contributor->GetIcon() );
|
||||||
|
fgSizer1->Add( m_bitmap1, 0, wxALIGN_CENTER|wxLEFT|wxRIGHT, 5 );
|
||||||
|
|
||||||
|
// Name of contributor at second column
|
||||||
|
if ( contributor->GetName() != wxEmptyString )
|
||||||
|
{
|
||||||
|
wxStaticText* m_staticText1 = new wxStaticText( m_scrolledWindow1, wxID_ANY, contributor->GetName(), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
m_staticText1->Wrap( -1 );
|
||||||
|
fgSizer1->Add( m_staticText1, 0, wxALIGN_LEFT|wxBOTTOM, 2 );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fgSizer1->AddSpacer(5);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Email address of contributor at third column
|
||||||
|
if ( contributor->GetEMail() != wxEmptyString )
|
||||||
|
{
|
||||||
|
wxHyperlinkCtrl* hyperlink = CreateHyperlink( m_scrolledWindow1, contributor->GetEMail() );
|
||||||
|
fgSizer1->Add( hyperlink, 0, wxALIGN_LEFT|wxBOTTOM, 2 );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fgSizer1->AddSpacer(5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bSizer->Add( panel1, 1, wxEXPAND|wxALL, 10 );
|
||||||
|
bSizer->Add( fgSizer1, 7, wxEXPAND|wxALL, 10 ); // adjust width of panel with first int value
|
||||||
|
m_scrolledWindow1->SetSizer( bSizer );
|
||||||
|
m_scrolledWindow1->Layout();
|
||||||
|
bSizer->Fit( m_scrolledWindow1 );
|
||||||
|
|
||||||
|
parent->AddPage( m_scrolledWindow1, caption, false, icon );
|
||||||
|
}
|
||||||
|
|
||||||
|
void dialog_about::CreateNotebookPageByCategory(wxAuiNotebook* parent, const wxString& caption, const wxBitmap& icon, const Contributors& contributors)
|
||||||
|
{
|
||||||
|
wxBoxSizer* bSizer = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
|
wxScrolledWindow* m_scrolledWindow1 = new wxScrolledWindow( parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxVSCROLL );
|
||||||
|
m_scrolledWindow1->SetScrollRate( 5, 5 );
|
||||||
|
|
||||||
|
/* Panel for additional space at the left,
|
||||||
|
* but can also be used to show an additional bitmap.
|
||||||
|
*/
|
||||||
|
wxPanel* panel1 = new wxPanel(m_scrolledWindow1);
|
||||||
|
|
||||||
|
wxFlexGridSizer* fgSizer1 = CreateFlexGridSizer();
|
||||||
|
|
||||||
|
for ( size_t i=0; i<contributors.GetCount(); ++i)
|
||||||
|
{
|
||||||
|
Contributor* contributor = &contributors.Item(i);
|
||||||
|
|
||||||
|
wxBitmap* icon = contributor->GetIcon();
|
||||||
|
wxString category = contributor->GetCategory();
|
||||||
|
|
||||||
|
/* to construct the next row we expect to have
|
||||||
|
* a category and a contributor that was not considered up to now
|
||||||
|
*/
|
||||||
|
if ( ( category != wxEmptyString ) && !( contributor->IsChecked() ) )
|
||||||
|
{
|
||||||
|
// Icon at first column
|
||||||
|
wxStaticBitmap* m_bitmap1 = CreateStaticBitmap( m_scrolledWindow1, icon );
|
||||||
|
fgSizer1->Add( m_bitmap1, 0, wxALIGN_CENTER|wxLEFT|wxRIGHT, 5 );
|
||||||
|
|
||||||
|
// Category name at second column
|
||||||
|
wxStaticText* m_staticText1 = new wxStaticText( m_scrolledWindow1, wxID_ANY, contributor->GetCategory() + wxT(":"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
m_staticText1->SetFont( wxFont( wxNORMAL_FONT->GetPointSize(), 70, 90, 92, false, wxEmptyString ) ); // bold font
|
||||||
|
m_staticText1->Wrap( -1 );
|
||||||
|
fgSizer1->Add( m_staticText1, 0, wxALIGN_LEFT|wxBOTTOM, 2 );
|
||||||
|
|
||||||
|
// Nothing at third column
|
||||||
|
fgSizer1->AddSpacer(5);
|
||||||
|
|
||||||
|
// Now, all contributors of the same category will follow
|
||||||
|
for ( size_t j=0; j<contributors.GetCount(); ++j )
|
||||||
|
{
|
||||||
|
Contributor* contributor = &contributors.Item(j);
|
||||||
|
|
||||||
|
if ( contributor->GetCategory() == category )
|
||||||
|
{
|
||||||
|
// First column is empty
|
||||||
|
fgSizer1->AddSpacer(5);
|
||||||
|
|
||||||
|
// Name of contributor at second column
|
||||||
|
wxStaticText* m_staticText2 = new wxStaticText( m_scrolledWindow1, wxID_ANY, wxT(" • ") + contributor->GetName(), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
m_staticText1->Wrap( -1 );
|
||||||
|
fgSizer1->Add( m_staticText2, 0, wxALIGN_LEFT|wxBOTTOM, 2 );
|
||||||
|
|
||||||
|
// Email address of contributor at third column
|
||||||
|
if ( contributor->GetEMail() != wxEmptyString )
|
||||||
|
{
|
||||||
|
wxHyperlinkCtrl* hyperlink = CreateHyperlink( m_scrolledWindow1, contributor->GetEMail() );
|
||||||
|
fgSizer1->Add( hyperlink, 0, wxALIGN_LEFT|wxBOTTOM, 2 );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fgSizer1->AddSpacer(5);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* this contributor was added to the gui,
|
||||||
|
* thus can be ignored next time
|
||||||
|
*/
|
||||||
|
contributor->SetChecked( true );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Now, lets list the remaining contributors that have not been considered
|
||||||
|
* because they were not assigned to any category.
|
||||||
|
*/
|
||||||
|
for ( size_t k=0; k<contributors.GetCount(); ++k )
|
||||||
|
{
|
||||||
|
Contributor* contributor = &contributors.Item(k);
|
||||||
|
|
||||||
|
if ( contributor->IsChecked() )
|
||||||
|
continue;
|
||||||
|
|
||||||
|
// Icon at first column
|
||||||
|
wxStaticBitmap* m_bitmap1 = CreateStaticBitmap( m_scrolledWindow1, contributor->GetIcon() );
|
||||||
|
fgSizer1->Add( m_bitmap1, 0, wxALIGN_CENTER|wxLEFT|wxRIGHT, 5 );
|
||||||
|
|
||||||
|
// Name of contributor at second column
|
||||||
|
if ( contributor->GetName() != wxEmptyString )
|
||||||
|
{
|
||||||
|
wxStaticText* m_staticText1 = new wxStaticText( m_scrolledWindow1, wxID_ANY, contributor->GetName(), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
m_staticText1->Wrap( -1 );
|
||||||
|
fgSizer1->Add( m_staticText1, 0, wxALIGN_LEFT|wxBOTTOM, 2 );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fgSizer1->AddSpacer(5);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Email address of contributor at third column
|
||||||
|
if ( contributor->GetEMail() != wxEmptyString )
|
||||||
|
{
|
||||||
|
wxHyperlinkCtrl* hyperlink = CreateHyperlink( m_scrolledWindow1, contributor->GetEMail() );
|
||||||
|
fgSizer1->Add( hyperlink, 0, wxALIGN_LEFT|wxBOTTOM, 2 );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
fgSizer1->AddSpacer(5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bSizer->Add( panel1, 1, wxEXPAND|wxALL, 10 );
|
||||||
|
bSizer->Add( fgSizer1, 7, wxEXPAND|wxALL, 10 ); // adjust width of panel with first int value
|
||||||
|
m_scrolledWindow1->SetSizer( bSizer );
|
||||||
|
m_scrolledWindow1->Layout();
|
||||||
|
bSizer->Fit( m_scrolledWindow1 );
|
||||||
|
|
||||||
|
parent->AddPage( m_scrolledWindow1, caption, false, icon );
|
||||||
|
}
|
||||||
|
|
||||||
|
void dialog_about::CreateNotebookHtmlPage(wxAuiNotebook* parent, const wxString& caption, const wxBitmap& icon, const wxString& html)
|
||||||
|
{
|
||||||
|
wxPanel* panel = new wxPanel( parent, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL );
|
||||||
|
|
||||||
|
wxBoxSizer* bSizer = new wxBoxSizer( wxVERTICAL );
|
||||||
|
|
||||||
|
wxString htmlPage = wxEmptyString, htmlContent = html;
|
||||||
|
|
||||||
|
// to have a unique look background color for HTML pages is set to the default as it is used for all the other widgets
|
||||||
|
wxString htmlColor = ( this->GetBackgroundColour() ).GetAsString( wxC2S_HTML_SYNTAX );
|
||||||
|
|
||||||
|
// beginning of html structure
|
||||||
|
htmlPage.Append( wxT("<html><body bgcolor='") + htmlColor + wxT("'>") );
|
||||||
|
|
||||||
|
htmlPage.Append( htmlContent );
|
||||||
|
|
||||||
|
// end of html structure indicated by closing tags
|
||||||
|
htmlPage.Append( wxT("</body></html>") );
|
||||||
|
|
||||||
|
// the html page is going to be created with previously created html content
|
||||||
|
wxHtmlWindow* htmlWindow = new wxHtmlWindow( panel, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHW_SCROLLBAR_AUTO|wxHW_NO_SELECTION );
|
||||||
|
|
||||||
|
// HTML font set to font properties as they are used for widgets to have an unique look under different platforms with HTML
|
||||||
|
wxFont font = this->GetFont();
|
||||||
|
htmlWindow->SetStandardFonts( font.GetPointSize(), font.GetFaceName(), font.GetFaceName() );
|
||||||
|
htmlWindow->SetPage( htmlPage );
|
||||||
|
|
||||||
|
// the HTML window shall not be used to open external links, thus this task is delegated to users default browser
|
||||||
|
htmlWindow->Connect( wxEVT_COMMAND_HTML_LINK_CLICKED, wxHtmlLinkEventHandler( dialog_about::OnHtmlLinkClicked ), NULL, this );
|
||||||
|
|
||||||
|
// no additional space around the html window as it is also the case by the other notebook pages
|
||||||
|
bSizer->Add( htmlWindow, 1, wxALL|wxEXPAND, 0 );
|
||||||
|
panel->SetSizer( bSizer );
|
||||||
|
panel->Layout();
|
||||||
|
bSizer->Fit( panel );
|
||||||
|
|
||||||
|
parent->AddPage( panel, caption, false, icon );
|
||||||
|
}
|
||||||
|
|
||||||
|
wxHyperlinkCtrl* dialog_about::CreateHyperlink(wxScrolledWindow* parent, const wxString& email)
|
||||||
|
{
|
||||||
|
wxHyperlinkCtrl* hyperlink = new wxHyperlinkCtrl(
|
||||||
|
parent, wxID_ANY,
|
||||||
|
wxT("<") + email + wxT(">"), /* the label */
|
||||||
|
wxT("mailto:") + email
|
||||||
|
+ wxT("?subject=KiCad - ")
|
||||||
|
+ info.GetBuildVersion()
|
||||||
|
+ wxT( " , ") + info.GetLibVersion()
|
||||||
|
); /* the url */
|
||||||
|
|
||||||
|
return hyperlink;
|
||||||
|
}
|
||||||
|
|
||||||
|
wxStaticBitmap* dialog_about::CreateStaticBitmap(wxScrolledWindow* parent, wxBitmap* icon)
|
||||||
|
{
|
||||||
|
wxStaticBitmap* bitmap = new wxStaticBitmap( parent, wxID_ANY, wxNullBitmap, wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
if ( icon )
|
||||||
|
{
|
||||||
|
bitmap->SetBitmap( *icon );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
bitmap->SetBitmap( right_xpm );
|
||||||
|
}
|
||||||
|
return bitmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// Event handlers
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void dialog_about::OnClose(wxCloseEvent &event)
|
||||||
|
{
|
||||||
|
Destroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
void dialog_about::OnOkClick(wxCommandEvent &event)
|
||||||
|
{
|
||||||
|
Destroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
void dialog_about::OnHtmlLinkClicked( wxHtmlLinkEvent& event )
|
||||||
|
{
|
||||||
|
::wxLaunchDefaultBrowser( event.GetLinkInfo().GetHref() );
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
/***************************************************************
|
||||||
|
* Name: dialog_about.h
|
||||||
|
* Purpose: Defines Application Frame
|
||||||
|
* Author: Rafael Sokolowski (rafael.sokolowski@web.de)
|
||||||
|
* Created: 2010-08-06
|
||||||
|
* Copyright: Rafael Sokolowski ()
|
||||||
|
* License:
|
||||||
|
**************************************************************/
|
||||||
|
|
||||||
|
#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>
|
||||||
|
|
||||||
|
#include "aboutinfo.h"
|
||||||
|
#include "dialog_about_base.h"
|
||||||
|
|
||||||
|
/* Pixel information of icons in XPM format.
|
||||||
|
* All KiCad icons are linked into shared library 'libbitmaps.a'.
|
||||||
|
* Icons:
|
||||||
|
* preference_xpm[]; // Icon for 'Developers' tab
|
||||||
|
* editor_xpm[]; // Icon for 'Doc Writers' tab
|
||||||
|
* palette_xpm[]; // Icon for 'Artists' tab
|
||||||
|
* language_xpm[]; // Icon for 'Translators' tab
|
||||||
|
* right_xpm[]; // Right arrow icon for list items
|
||||||
|
* info_xpm[]; // Bulb for description tab
|
||||||
|
* tools_xpm[]; // Sheet of paper icon for license info tab
|
||||||
|
*/
|
||||||
|
#include "bitmaps.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* About dialog to show application specific information.
|
||||||
|
* Needs an <code>AboutAppInfo</code> object that contains the data to be displayed.
|
||||||
|
*/
|
||||||
|
class dialog_about : public dialog_about_base
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
|
||||||
|
// Icons for the various tabs of wxAuiNotebook
|
||||||
|
wxBitmap picInformation, picDevelopers, picDocWriters, picArtists, picTranslators,
|
||||||
|
picLicense;
|
||||||
|
|
||||||
|
AboutAppInfo info;
|
||||||
|
|
||||||
|
public:
|
||||||
|
dialog_about( wxWindow* dlg, AboutAppInfo& appInfo );
|
||||||
|
~dialog_about();
|
||||||
|
private:
|
||||||
|
void initDialog();
|
||||||
|
virtual void OnClose( wxCloseEvent& event );
|
||||||
|
virtual void OnOkClick( wxCommandEvent& event );
|
||||||
|
virtual void OnHtmlLinkClicked( wxHtmlLinkEvent& event );
|
||||||
|
|
||||||
|
// Notebook pages
|
||||||
|
wxFlexGridSizer* CreateFlexGridSizer();
|
||||||
|
void DeleteNotebooks();
|
||||||
|
void CreateNotebooks();
|
||||||
|
void CreateNotebookPage( wxAuiNotebook* parent,
|
||||||
|
const wxString& caption,
|
||||||
|
const wxBitmap& icon,
|
||||||
|
const Contributors& contributors );
|
||||||
|
void CreateNotebookPageByCategory( wxAuiNotebook* parent,
|
||||||
|
const wxString& caption,
|
||||||
|
const wxBitmap& icon,
|
||||||
|
const Contributors& contributors );
|
||||||
|
void CreateNotebookHtmlPage( wxAuiNotebook* parent,
|
||||||
|
const wxString& caption,
|
||||||
|
const wxBitmap& icon,
|
||||||
|
const wxString& html );
|
||||||
|
|
||||||
|
wxHyperlinkCtrl* CreateHyperlink( wxScrolledWindow* parent, const wxString& email );
|
||||||
|
wxStaticBitmap* CreateStaticBitmap( wxScrolledWindow* parent, wxBitmap* icon );
|
||||||
|
};
|
||||||
|
#endif // DIALOG_ABOUT_H
|
|
@ -0,0 +1,77 @@
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
// C++ code generated with wxFormBuilder (version Apr 16 2008)
|
||||||
|
// http://www.wxformbuilder.org/
|
||||||
|
//
|
||||||
|
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "dialog_about_base.h"
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
dialog_about_base::dialog_about_base( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxDialog( parent, id, title, pos, size, style )
|
||||||
|
{
|
||||||
|
this->SetSizeHints( wxSize( -1,-1 ), wxDefaultSize );
|
||||||
|
|
||||||
|
wxBoxSizer* bSizer1;
|
||||||
|
bSizer1 = new wxBoxSizer( wxVERTICAL );
|
||||||
|
|
||||||
|
wxBoxSizer* bSizer3;
|
||||||
|
bSizer3 = new wxBoxSizer( wxHORIZONTAL );
|
||||||
|
|
||||||
|
m_bitmapApp = new wxStaticBitmap( this, wxID_ANY, wxNullBitmap, wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
bSizer3->Add( m_bitmapApp, 0, wxALIGN_CENTER|wxALL, 5 );
|
||||||
|
|
||||||
|
wxBoxSizer* b_apptitleSizer;
|
||||||
|
b_apptitleSizer = new wxBoxSizer( wxVERTICAL );
|
||||||
|
|
||||||
|
m_staticTextAppTitle = new wxStaticText( this, wxID_ANY, _("App Title"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE|wxST_NO_AUTORESIZE );
|
||||||
|
m_staticTextAppTitle->Wrap( -1 );
|
||||||
|
m_staticTextAppTitle->SetFont( wxFont( 14, 70, 90, 92, false, wxEmptyString ) );
|
||||||
|
|
||||||
|
b_apptitleSizer->Add( m_staticTextAppTitle, 0, wxALIGN_CENTER|wxALL|wxEXPAND, 5 );
|
||||||
|
|
||||||
|
m_staticTextCopyright = new wxStaticText( this, wxID_ANY, _("Copyright Info"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE|wxST_NO_AUTORESIZE );
|
||||||
|
m_staticTextCopyright->Wrap( -1 );
|
||||||
|
b_apptitleSizer->Add( m_staticTextCopyright, 0, wxALIGN_CENTER|wxALL|wxEXPAND, 1 );
|
||||||
|
|
||||||
|
m_staticTextBuildVersion = new wxStaticText( this, wxID_ANY, _("Build Version Info"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE|wxST_NO_AUTORESIZE );
|
||||||
|
m_staticTextBuildVersion->Wrap( -1 );
|
||||||
|
b_apptitleSizer->Add( m_staticTextBuildVersion, 0, wxALIGN_CENTER_HORIZONTAL|wxEXPAND|wxTOP|wxRIGHT|wxLEFT, 5 );
|
||||||
|
|
||||||
|
m_staticTextLibVersion = new wxStaticText( this, wxID_ANY, _("Lib Version Info"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE|wxST_NO_AUTORESIZE );
|
||||||
|
m_staticTextLibVersion->Wrap( -1 );
|
||||||
|
b_apptitleSizer->Add( m_staticTextLibVersion, 0, wxALIGN_CENTER_HORIZONTAL|wxBOTTOM|wxRIGHT|wxLEFT|wxEXPAND, 5 );
|
||||||
|
|
||||||
|
bSizer3->Add( b_apptitleSizer, 1, wxEXPAND, 5 );
|
||||||
|
|
||||||
|
bSizer1->Add( bSizer3, 0, wxEXPAND, 5 );
|
||||||
|
|
||||||
|
wxStaticLine* m_staticline1;
|
||||||
|
m_staticline1 = new wxStaticLine( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLI_HORIZONTAL );
|
||||||
|
bSizer1->Add( m_staticline1, 0, wxEXPAND | wxALL, 5 );
|
||||||
|
|
||||||
|
m_auiNotebook = new wxAuiNotebook( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxAUI_NB_SCROLL_BUTTONS|wxAUI_NB_TAB_FIXED_WIDTH|wxAUI_NB_WINDOWLIST_BUTTON );
|
||||||
|
m_auiNotebook->SetMinSize( wxSize( 550,300 ) );
|
||||||
|
|
||||||
|
|
||||||
|
bSizer1->Add( m_auiNotebook, 2, wxEXPAND | wxALL, 5 );
|
||||||
|
|
||||||
|
m_buttonOK = new wxButton( this, wxID_ANY, _("OK"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||||
|
m_buttonOK->SetDefault();
|
||||||
|
bSizer1->Add( m_buttonOK, 0, wxALIGN_CENTER|wxALL, 5 );
|
||||||
|
|
||||||
|
this->SetSizer( bSizer1 );
|
||||||
|
this->Layout();
|
||||||
|
|
||||||
|
// Connect Events
|
||||||
|
this->Connect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( dialog_about_base::OnClose ) );
|
||||||
|
m_buttonOK->Connect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( dialog_about_base::OnOkClick ), NULL, this );
|
||||||
|
}
|
||||||
|
|
||||||
|
dialog_about_base::~dialog_about_base()
|
||||||
|
{
|
||||||
|
// Disconnect Events
|
||||||
|
this->Disconnect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( dialog_about_base::OnClose ) );
|
||||||
|
m_buttonOK->Disconnect( wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler( dialog_about_base::OnOkClick ), NULL, this );
|
||||||
|
}
|
|
@ -0,0 +1,516 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
|
||||||
|
<wxFormBuilder_Project>
|
||||||
|
<FileVersion major="1" minor="9" />
|
||||||
|
<object class="Project" expanded="1">
|
||||||
|
<property name="class_decoration"></property>
|
||||||
|
<property name="code_generation">C++</property>
|
||||||
|
<property name="disconnect_events">1</property>
|
||||||
|
<property name="encoding">UTF-8</property>
|
||||||
|
<property name="event_generation">connect</property>
|
||||||
|
<property name="file">dialog_about_base</property>
|
||||||
|
<property name="first_id">1000</property>
|
||||||
|
<property name="help_provider">none</property>
|
||||||
|
<property name="internationalize">1</property>
|
||||||
|
<property name="name">MyProject</property>
|
||||||
|
<property name="namespace"></property>
|
||||||
|
<property name="path">.</property>
|
||||||
|
<property name="precompiled_header"></property>
|
||||||
|
<property name="relative_path">1</property>
|
||||||
|
<property name="use_enum">1</property>
|
||||||
|
<property name="use_microsoft_bom">0</property>
|
||||||
|
<object class="Dialog" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="center"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="extra_style"></property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size">-1,-1</property>
|
||||||
|
<property name="name">dialog_about_base</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size">510,434</property>
|
||||||
|
<property name="style">wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxSTAY_ON_TOP</property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="title">About...</property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<event name="OnActivate"></event>
|
||||||
|
<event name="OnActivateApp"></event>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnClose">OnClose</event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnHibernate"></event>
|
||||||
|
<event name="OnIconize"></event>
|
||||||
|
<event name="OnIdle"></event>
|
||||||
|
<event name="OnInitDialog"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
<object class="wxBoxSizer" expanded="1">
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">bSizer1</property>
|
||||||
|
<property name="orient">wxVERTICAL</property>
|
||||||
|
<property name="permission">none</property>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxEXPAND</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxBoxSizer" expanded="1">
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">bSizer3</property>
|
||||||
|
<property name="orient">wxHORIZONTAL</property>
|
||||||
|
<property name="permission">none</property>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxALIGN_CENTER|wxALL</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxStaticBitmap" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="bitmap"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">m_bitmapApp</property>
|
||||||
|
<property name="permission">protected</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxEXPAND</property>
|
||||||
|
<property name="proportion">1</property>
|
||||||
|
<object class="wxBoxSizer" expanded="1">
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">b_apptitleSizer</property>
|
||||||
|
<property name="orient">wxVERTICAL</property>
|
||||||
|
<property name="permission">none</property>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxALIGN_CENTER|wxALL|wxEXPAND</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxStaticText" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font">,90,92,14,70,0</property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="label">App Title</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">m_staticTextAppTitle</property>
|
||||||
|
<property name="permission">protected</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="style">wxALIGN_CENTRE|wxST_NO_AUTORESIZE</property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<property name="wrap">-1</property>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">1</property>
|
||||||
|
<property name="flag">wxALIGN_CENTER|wxALL|wxEXPAND</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxStaticText" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="label">Copyright Info</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">m_staticTextCopyright</property>
|
||||||
|
<property name="permission">protected</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="style">wxALIGN_CENTRE|wxST_NO_AUTORESIZE</property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<property name="wrap">-1</property>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxALIGN_CENTER_HORIZONTAL|wxEXPAND|wxTOP|wxRIGHT|wxLEFT</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxStaticText" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="label">Build Version Info</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">m_staticTextBuildVersion</property>
|
||||||
|
<property name="permission">protected</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="style">wxALIGN_CENTRE|wxST_NO_AUTORESIZE</property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<property name="wrap">-1</property>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxALIGN_CENTER_HORIZONTAL|wxBOTTOM|wxRIGHT|wxLEFT|wxEXPAND</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxStaticText" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="label">Lib Version Info</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">m_staticTextLibVersion</property>
|
||||||
|
<property name="permission">protected</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="style">wxALIGN_CENTRE|wxST_NO_AUTORESIZE</property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<property name="wrap">-1</property>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxEXPAND | wxALL</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxStaticLine" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">m_staticline1</property>
|
||||||
|
<property name="permission">none</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="style">wxLI_HORIZONTAL</property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxEXPAND | wxALL</property>
|
||||||
|
<property name="proportion">2</property>
|
||||||
|
<object class="wxAuiNotebook" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size">550,300</property>
|
||||||
|
<property name="name">m_auiNotebook</property>
|
||||||
|
<property name="permission">protected</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="style">wxAUI_NB_SCROLL_BUTTONS|wxAUI_NB_TAB_FIXED_WIDTH|wxAUI_NB_WINDOWLIST_BUTTON</property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tab_ctrl_height">-1</property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="uniform_bitmap_size"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<event name="OnAuiNotebookAllowDND"></event>
|
||||||
|
<event name="OnAuiNotebookBeginDrag"></event>
|
||||||
|
<event name="OnAuiNotebookButton"></event>
|
||||||
|
<event name="OnAuiNotebookDragMotion"></event>
|
||||||
|
<event name="OnAuiNotebookEndDrag"></event>
|
||||||
|
<event name="OnAuiNotebookPageChanged"></event>
|
||||||
|
<event name="OnAuiNotebookPageChanging"></event>
|
||||||
|
<event name="OnAuiNotebookPageClose"></event>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
<object class="sizeritem" expanded="1">
|
||||||
|
<property name="border">5</property>
|
||||||
|
<property name="flag">wxALIGN_CENTER|wxALL</property>
|
||||||
|
<property name="proportion">0</property>
|
||||||
|
<object class="wxButton" expanded="1">
|
||||||
|
<property name="bg"></property>
|
||||||
|
<property name="context_help"></property>
|
||||||
|
<property name="default">1</property>
|
||||||
|
<property name="enabled">1</property>
|
||||||
|
<property name="fg"></property>
|
||||||
|
<property name="font"></property>
|
||||||
|
<property name="hidden">0</property>
|
||||||
|
<property name="id">wxID_ANY</property>
|
||||||
|
<property name="label">OK</property>
|
||||||
|
<property name="maximum_size"></property>
|
||||||
|
<property name="minimum_size"></property>
|
||||||
|
<property name="name">m_buttonOK</property>
|
||||||
|
<property name="permission">private</property>
|
||||||
|
<property name="pos"></property>
|
||||||
|
<property name="size"></property>
|
||||||
|
<property name="style"></property>
|
||||||
|
<property name="subclass"></property>
|
||||||
|
<property name="tooltip"></property>
|
||||||
|
<property name="window_extra_style"></property>
|
||||||
|
<property name="window_name"></property>
|
||||||
|
<property name="window_style"></property>
|
||||||
|
<event name="OnButtonClick">OnOkClick</event>
|
||||||
|
<event name="OnChar"></event>
|
||||||
|
<event name="OnEnterWindow"></event>
|
||||||
|
<event name="OnEraseBackground"></event>
|
||||||
|
<event name="OnKeyDown"></event>
|
||||||
|
<event name="OnKeyUp"></event>
|
||||||
|
<event name="OnKillFocus"></event>
|
||||||
|
<event name="OnLeaveWindow"></event>
|
||||||
|
<event name="OnLeftDClick"></event>
|
||||||
|
<event name="OnLeftDown"></event>
|
||||||
|
<event name="OnLeftUp"></event>
|
||||||
|
<event name="OnMiddleDClick"></event>
|
||||||
|
<event name="OnMiddleDown"></event>
|
||||||
|
<event name="OnMiddleUp"></event>
|
||||||
|
<event name="OnMotion"></event>
|
||||||
|
<event name="OnMouseEvents"></event>
|
||||||
|
<event name="OnMouseWheel"></event>
|
||||||
|
<event name="OnPaint"></event>
|
||||||
|
<event name="OnRightDClick"></event>
|
||||||
|
<event name="OnRightDown"></event>
|
||||||
|
<event name="OnRightUp"></event>
|
||||||
|
<event name="OnSetFocus"></event>
|
||||||
|
<event name="OnSize"></event>
|
||||||
|
<event name="OnUpdateUI"></event>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</object>
|
||||||
|
</wxFormBuilder_Project>
|
|
@ -0,0 +1,58 @@
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
// C++ code generated with wxFormBuilder (version Apr 16 2008)
|
||||||
|
// http://www.wxformbuilder.org/
|
||||||
|
//
|
||||||
|
// PLEASE DO "NOT" EDIT THIS FILE!
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#ifndef __dialog_about_base__
|
||||||
|
#define __dialog_about_base__
|
||||||
|
|
||||||
|
#include <wx/intl.h>
|
||||||
|
|
||||||
|
#include <wx/bitmap.h>
|
||||||
|
#include <wx/image.h>
|
||||||
|
#include <wx/icon.h>
|
||||||
|
#include <wx/statbmp.h>
|
||||||
|
#include <wx/gdicmn.h>
|
||||||
|
#include <wx/font.h>
|
||||||
|
#include <wx/colour.h>
|
||||||
|
#include <wx/settings.h>
|
||||||
|
#include <wx/string.h>
|
||||||
|
#include <wx/stattext.h>
|
||||||
|
#include <wx/sizer.h>
|
||||||
|
#include <wx/statline.h>
|
||||||
|
#include <wx/aui/auibook.h>
|
||||||
|
#include <wx/button.h>
|
||||||
|
#include <wx/dialog.h>
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
/// Class dialog_about_base
|
||||||
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
class dialog_about_base : public wxDialog
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
wxButton* m_buttonOK;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
wxStaticBitmap* m_bitmapApp;
|
||||||
|
wxStaticText* m_staticTextAppTitle;
|
||||||
|
wxStaticText* m_staticTextCopyright;
|
||||||
|
wxStaticText* m_staticTextBuildVersion;
|
||||||
|
wxStaticText* m_staticTextLibVersion;
|
||||||
|
wxAuiNotebook* m_auiNotebook;
|
||||||
|
|
||||||
|
// Virtual event handlers, overide them in your derived class
|
||||||
|
virtual void OnClose( wxCloseEvent& event ){ event.Skip(); }
|
||||||
|
virtual void OnOkClick( wxCommandEvent& event ){ event.Skip(); }
|
||||||
|
|
||||||
|
|
||||||
|
public:
|
||||||
|
dialog_about_base( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("About..."), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 510,434 ), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxSTAY_ON_TOP );
|
||||||
|
~dialog_about_base();
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif //__dialog_about_base__
|
Loading…
Reference in New Issue