kicad/common/basicframe.cpp

437 lines
12 KiB
C++
Raw Normal View History

/**
* EDA_BASE_FRAME Class Functions
* @file basicframe.cpp
*/
2007-05-06 16:03:28 +00:00
2008-08-15 16:38:05 +00:00
#include <wx/aboutdlg.h>
#include <wx/fontdlg.h>
#include <wx/clipbrd.h>
#include <wx/statline.h>
#include <wx/platinfo.h>
#include "build_version.h"
2007-05-06 16:03:28 +00:00
#include "fctsys.h"
#include "appl_wxstruct.h"
2007-05-06 16:03:28 +00:00
#include "common.h"
#include "online_help.h"
2007-05-06 16:03:28 +00:00
#include "id.h"
#include "confirm.h"
#include "eda_doc.h"
#include "wxstruct.h"
#include "macros.h"
#include "bitmaps.h"
/*
* Class constructor for EDA_BASE_FRAME general options
*/
EDA_BASE_FRAME::EDA_BASE_FRAME( wxWindow* father,
int idtype,
const wxString& title,
const wxPoint& pos,
const wxSize& size,
long style ) :
2008-03-04 14:27:48 +00:00
wxFrame( father, -1, title, pos, size, style )
2007-05-06 16:03:28 +00:00
{
2008-03-04 14:27:48 +00:00
wxSize minsize;
m_Ident = idtype;
2008-03-04 14:27:48 +00:00
m_HToolBar = NULL;
m_FrameIsActive = TRUE;
m_MsgFrameHeight = WinEDA_MsgPanel::GetRequiredHeight();
2008-03-04 14:27:48 +00:00
minsize.x = 470;
minsize.y = 350 + m_MsgFrameHeight;
2008-03-04 14:27:48 +00:00
SetSizeHints( minsize.x, minsize.y, -1, -1, -1, -1 );
if( ( size.x < minsize.x ) || ( size.y < minsize.y ) )
2008-03-04 14:27:48 +00:00
SetSize( 0, 0, minsize.x, minsize.y );
// Create child subwindows.
GetClientSize( &m_FrameSize.x, &m_FrameSize.y ); /* dimensions of the user
* area of the main
* window */
2008-03-04 14:27:48 +00:00
m_FramePos.x = m_FramePos.y = 0;
m_FrameSize.y -= m_MsgFrameHeight;
2009-11-02 22:24:55 +00:00
Connect( ID_HELP_COPY_VERSION_STRING,
wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler( EDA_BASE_FRAME::CopyVersionInfoToClipboard ) );
2007-05-06 16:03:28 +00:00
}
2008-03-04 14:27:48 +00:00
EDA_BASE_FRAME::~EDA_BASE_FRAME()
{
if( wxGetApp().m_HtmlCtrl )
delete wxGetApp().m_HtmlCtrl;
wxGetApp().m_HtmlCtrl = NULL;
/* This needed for OSX: avoids further OnDraw processing after this
* destructor and before the native window is destroyed
*/
this->Freeze();
2007-05-06 16:03:28 +00:00
}
2008-03-04 14:27:48 +00:00
/*
* Virtual function
*/
void EDA_BASE_FRAME::ReCreateMenuBar()
2007-05-06 16:03:28 +00:00
{
2007-05-06 16:03:28 +00:00
}
/**
* Function SetLanguage (virtual)
* called on a language menu selection
* when using a derived function, do not forget to call this one
*/
void EDA_BASE_FRAME::SetLanguage( wxCommandEvent& event )
{
int id = event.GetId();
wxGetApp().SetLanguageIdentifier( id );
2010-12-18 08:59:04 +00:00
wxGetApp().SetLanguage();
ReCreateMenuBar();
GetMenuBar()->Refresh();
}
2007-05-06 16:03:28 +00:00
/**
* Load common frame parameters from configuration.
*
* The method is virtual so you can override it to load frame specific
* parameters. Don't forget to call the base method or your frames won't
* remember their positions and sizes.
*/
void EDA_BASE_FRAME::LoadSettings()
2007-05-06 16:03:28 +00:00
{
wxString text;
int Ypos_min;
wxConfig* config;
config = wxGetApp().m_EDA_Config;
2008-03-04 14:27:48 +00:00
int maximized = 0;
if( config )
2008-03-04 14:27:48 +00:00
{
text = m_FrameName + wxT( "Pos_x" );
config->Read( text, &m_FramePos.x );
2008-03-04 14:27:48 +00:00
text = m_FrameName + wxT( "Pos_y" );
config->Read( text, &m_FramePos.y );
2008-03-04 14:27:48 +00:00
text = m_FrameName + wxT( "Size_x" );
config->Read( text, &m_FrameSize.x, 600 );
2008-03-04 14:27:48 +00:00
text = m_FrameName + wxT( "Size_y" );
config->Read( text, &m_FrameSize.y, 400 );
text = m_FrameName + wxT( "Maximized" );
config->Read( text, &maximized, 0 );
2008-03-04 14:27:48 +00:00
}
// Ensure Window title bar is visible
#if defined( __WXMAC__ )
2008-03-04 14:27:48 +00:00
// for macOSX, the window must be below system (macOSX) toolbar
// Ypos_min = GetMBarHeight(); seems no more exist in new API (subject to change)
Ypos_min = 20;
2007-05-06 16:03:28 +00:00
#else
2008-03-04 14:27:48 +00:00
Ypos_min = 0;
2007-05-06 16:03:28 +00:00
#endif
2008-03-04 14:27:48 +00:00
if( m_FramePos.y < Ypos_min )
m_FramePos.y = Ypos_min;
if( maximized )
Maximize();
2007-05-06 16:03:28 +00:00
}
/**
* Save common frame parameters from configuration.
*
* The method is virtual so you can override it to save frame specific
* parameters. Don't forget to call the base method or your frames won't
* remember their positions and sizes.
*/
void EDA_BASE_FRAME::SaveSettings()
2007-05-06 16:03:28 +00:00
{
2008-03-04 14:27:48 +00:00
wxString text;
wxConfig* config;
2007-05-06 16:03:28 +00:00
config = wxGetApp().m_EDA_Config;
2007-05-06 16:03:28 +00:00
if( ( config == NULL ) || IsIconized() )
2008-03-04 14:27:48 +00:00
return;
2007-05-06 16:03:28 +00:00
2008-03-04 14:27:48 +00:00
m_FrameSize = GetSize();
m_FramePos = GetPosition();
2007-05-06 16:03:28 +00:00
2008-03-04 14:27:48 +00:00
text = m_FrameName + wxT( "Pos_x" );
config->Write( text, (long) m_FramePos.x );
2008-03-04 14:27:48 +00:00
text = m_FrameName + wxT( "Pos_y" );
config->Write( text, (long) m_FramePos.y );
2008-03-04 14:27:48 +00:00
text = m_FrameName + wxT( "Size_x" );
config->Write( text, (long) m_FrameSize.x );
2008-03-04 14:27:48 +00:00
text = m_FrameName + wxT( "Size_y" );
config->Write( text, (long) m_FrameSize.y );
text = m_FrameName + wxT( "Maximized" );
config->Write( text, IsMaximized() );
2007-05-06 16:03:28 +00:00
}
void EDA_BASE_FRAME::PrintMsg( const wxString& text )
2007-05-06 16:03:28 +00:00
{
2008-03-04 14:27:48 +00:00
SetStatusText( text );
2007-05-06 16:03:28 +00:00
}
2008-03-04 14:27:48 +00:00
/*
* Display a bargraph (0 to 50 point length) for a PerCent value from 0 to 100
*/
void EDA_BASE_FRAME::DisplayActivity( int PerCent, const wxString& Text )
2007-05-06 16:03:28 +00:00
{
2008-03-04 14:27:48 +00:00
wxString Line;
2007-05-06 16:03:28 +00:00
2008-03-04 14:27:48 +00:00
Line = Text;
2007-05-06 16:03:28 +00:00
2008-03-04 14:27:48 +00:00
PerCent = (PerCent < 0) ? 0 : PerCent;
PerCent = (PerCent > 100) ? 100 : PerCent;
PerCent /= 2; // Bargraph is 0 .. 50 points from 0% to 100%
if( PerCent )
Line.Pad( PerCent, '*' );
2007-05-06 16:03:28 +00:00
2008-03-04 14:27:48 +00:00
SetStatusText( Line );
2007-05-06 16:03:28 +00:00
}
2008-03-04 14:27:48 +00:00
/*
* Update the list of recent opened files.
*/
void EDA_BASE_FRAME::UpdateFileHistory( const wxString& FullFileName,
wxFileHistory * aFileHistory )
2007-05-06 16:03:28 +00:00
{
wxFileHistory * fileHistory = aFileHistory;
if( fileHistory == NULL )
fileHistory = & wxGetApp().m_fileHistory;
fileHistory->AddFileToHistory( FullFileName );
ReCreateMenuBar();
}
2007-05-06 16:03:28 +00:00
/*
* Fetch the file name from the file history list.
*/
wxString EDA_BASE_FRAME::GetFileFromHistory( int cmdId, const wxString& type,
wxFileHistory * aFileHistory )
{
wxString fn, msg;
size_t i;
wxFileHistory * fileHistory = aFileHistory;
if( fileHistory == NULL )
fileHistory = & wxGetApp().m_fileHistory;
int baseId = fileHistory->GetBaseId();
wxASSERT( cmdId >= baseId
&& cmdId < baseId + ( int )fileHistory->GetCount() );
i = ( size_t )( cmdId - baseId );
if( i < fileHistory->GetCount() )
2008-03-04 14:27:48 +00:00
{
fn = fileHistory->GetHistoryFile( i );
if( !wxFileName::FileExists( fn ) )
2008-03-04 14:27:48 +00:00
{
msg = type + _( " file <" ) + fn + _( "> was not found." );
DisplayError( this, msg );
fileHistory->RemoveFileFromHistory( i );
fn = wxEmptyString;
ReCreateMenuBar();
2008-03-04 14:27:48 +00:00
}
}
2007-05-06 16:03:28 +00:00
return fn;
2007-05-06 16:03:28 +00:00
}
/*
*
*/
void EDA_BASE_FRAME::GetKicadHelp( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
wxString msg;
#if defined ONLINE_HELP_FILES_FORMAT_IS_HTML
if( wxGetApp().m_HtmlCtrl == NULL )
2008-03-04 14:27:48 +00:00
{
wxGetApp().InitOnLineHelp();
2008-03-04 14:27:48 +00:00
}
if( wxGetApp().m_HtmlCtrl )
2008-03-04 14:27:48 +00:00
{
wxGetApp().m_HtmlCtrl->DisplayContents();
wxGetApp().m_HtmlCtrl->Display( wxGetApp().m_HelpFileName );
2008-03-04 14:27:48 +00:00
}
else
{
msg.Printf( _( "Help file %s not found." ), GetChars( wxGetApp().m_HelpFileName ) );
2008-03-04 14:27:48 +00:00
DisplayError( this, msg );
}
#elif defined ONLINE_HELP_FILES_FORMAT_IS_PDF
wxString helpFile = wxGetApp().GetHelpFile();
if( !helpFile )
{
msg.Printf( _( "Help file %s could not be found." ),
GetChars( wxGetApp().m_HelpFileName ) );
DisplayError( this, msg );
}
else
GetAssociatedDocument( this, helpFile );
#else
# error Help files format not defined
#endif
2007-05-06 16:03:28 +00:00
}
/*
* Function OnSelectPreferredEditor
* Open a dialog to select the preferred editor that will be used in Kicad
* to edit or display files (reports ... )
* The full filename editor is saved in configuration (global params)
*/
void EDA_BASE_FRAME::OnSelectPreferredEditor( wxCommandEvent& event )
{
wxFileName fn = wxGetApp().m_EditorName;
wxString wildcard( wxT( "*" ) );
#ifdef __WINDOWS__
wildcard += wxT( ".exe" );
#endif
wildcard = _( "Executable file (" ) + wildcard + wxT( ")|" ) + wildcard;
wxFileDialog dlg( this, _( "Select Prefered Editor" ), fn.GetPath(),
fn.GetFullName(), wildcard,
wxFD_OPEN | wxFD_FILE_MUST_EXIST );
if( dlg.ShowModal() == wxID_CANCEL )
return;
wxASSERT( wxGetApp().m_EDA_CommonConfig );
wxConfig* cfg = wxGetApp().m_EDA_CommonConfig;
wxGetApp().m_EditorName = dlg.GetPath();
cfg->Write( wxT( "Editor" ), wxGetApp().m_EditorName );
}
/*
*
*/
void EDA_BASE_FRAME::GetKicadAbout( wxCommandEvent& event )
2007-05-06 16:03:28 +00:00
{
bool ShowAboutDialog(wxWindow * parent);
ShowAboutDialog(this);
2007-05-06 16:03:28 +00:00
}
void EDA_BASE_FRAME::AddHelpVersionInfoMenuEntry( wxMenu* aMenu )
{
wxASSERT( aMenu != NULL );
wxMenuItem* item = NULL;
// Copy version string to clipboard for bug report purposes.
item = new wxMenuItem( aMenu, ID_HELP_COPY_VERSION_STRING,
_( "Copy &Version Information" ),
_( "Copy the version string to clipboard to send with bug reports" ) );
// For some reason images are not always added to the OSX menu items. Anyone want
// to clarify as to why this is the case? Putting this information in some formal
// developer notes would be helpful. A good place to put this information would be
// ./documentation/guidelines/UIpolicies.txt.
#if !defined( __WXMAC__ )
item->SetBitmap( copy_button );
#endif
aMenu->Append( item );
}
2010-09-29 18:19:26 +00:00
// This is an enhanced version of the compiler build macro provided by wxWidgets
// in <wx/build.h>. Please do not make any of these strings translatable. They
// are used for conveying troubleshooting information to developers.
#if defined(__GXX_ABI_VERSION)
#define __ABI_VERSION ",compiler with C++ ABI " __WX_BO_STRINGIZE(__GXX_ABI_VERSION)
#else
#define __ABI_VERSION ",compiler without C++ ABI "
#endif
#if defined(__INTEL_COMPILER)
#define __BO_COMPILER ",Intel C++"
#elif defined(__GNUG__)
#define __BO_COMPILER ",GCC " \
__WX_BO_STRINGIZE(__GNUC__) "." \
__WX_BO_STRINGIZE(__GNUC_MINOR__) "." \
__WX_BO_STRINGIZE(__GNUC_PATCHLEVEL__)
#elif defined(__VISUALC__)
#define __BO_COMPILER ",Visual C++"
#elif defined(__BORLANDC__)
#define __BO_COMPILER ",Borland C++"
#elif defined(__DIGITALMARS__)
#define __BO_COMPILER ",DigitalMars"
#elif defined(__WATCOMC__)
#define __BO_COMPILER ",Watcom C++"
#else
#define __BO_COMPILER ",unknown"
#endif
#if wxCHECK_VERSION( 2, 9, 0 )
2010-09-29 18:19:26 +00:00
static inline const char* KICAD_BUILD_OPTIONS_SIGNATURE()
{
return
" (" __WX_BO_UNICODE __ABI_VERSION __BO_COMPILER __WX_BO_STL
__WX_BO_WXWIN_COMPAT_2_6 __WX_BO_WXWIN_COMPAT_2_8 ")"
;
}
#else
2010-09-29 18:19:26 +00:00
static inline const char* KICAD_BUILD_OPTIONS_SIGNATURE()
{
return
" (" __WX_BO_DEBUG ","
__WX_BO_UNICODE __ABI_VERSION __BO_COMPILER __WX_BO_STL
__WX_BO_WXWIN_COMPAT_2_4 __WX_BO_WXWIN_COMPAT_2_6 ")"
;
}
#endif
2010-09-29 18:19:26 +00:00
void EDA_BASE_FRAME::CopyVersionInfoToClipboard( wxCommandEvent& event )
2010-09-29 18:19:26 +00:00
{
if( !wxTheClipboard->Open() )
{
wxMessageBox( _( "Could not open clipboard to write version information." ),
_( "Clipboard Error" ), wxOK | wxICON_EXCLAMATION, this );
return;
}
wxString tmp;
wxPlatformInfo info;
tmp = wxT( "Application: " ) + wxGetApp().GetTitle() + wxT( "\n" );
tmp += wxT( "Version: " ) + GetBuildVersion() + wxT( "\n" );
tmp << wxT( "Build: " ) << wxVERSION_STRING
<< FROM_UTF8( KICAD_BUILD_OPTIONS_SIGNATURE() ) << wxT( "\n" )
<< wxT( "Platform: " ) << wxGetOsDescription() << wxT( ", " )
<< info.GetArchName() << wxT( ", " ) << info.GetEndiannessName() << wxT( ", " )
<< info.GetPortIdName();
wxTheClipboard->SetData( new wxTextDataObject( tmp ) );
wxTheClipboard->Close();
}