2013-10-18 13:32:22 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2019-02-11 16:28:50 +00:00
|
|
|
* Copyright (C) 1992-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
2013-10-18 13:32:22 +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-04-06 12:01:53 +00:00
|
|
|
/**
|
2011-11-08 16:37:25 +00:00
|
|
|
* @file confirm.cpp
|
2013-04-06 12:01:53 +00:00
|
|
|
* @brief utilities to display some error, warning and info short messges
|
2011-11-08 16:37:25 +00:00
|
|
|
*/
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2013-10-18 13:32:22 +00:00
|
|
|
#include <wx/stockitem.h>
|
2017-07-20 13:03:33 +00:00
|
|
|
#include <wx/richmsgdlg.h>
|
2016-01-18 05:17:56 +00:00
|
|
|
|
2017-09-23 09:20:10 +00:00
|
|
|
#include <confirm.h>
|
2016-01-18 05:17:56 +00:00
|
|
|
#include <bitmaps.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <html_messagebox.h>
|
2016-01-18 05:17:56 +00:00
|
|
|
|
2017-11-06 08:35:05 +00:00
|
|
|
#include <functional>
|
2018-02-21 17:26:45 +00:00
|
|
|
#include <unordered_map>
|
|
|
|
|
|
|
|
// Set of dialogs that have been chosen not to be shown again
|
|
|
|
static std::unordered_map<unsigned long, int> doNotShowAgainDlgs;
|
|
|
|
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
KIDIALOG::KIDIALOG( wxWindow* aParent, const wxString& aMessage,
|
|
|
|
const wxString& aCaption, long aStyle )
|
2018-09-09 04:24:29 +00:00
|
|
|
: wxRichMessageDialog( aParent, aMessage, aCaption, aStyle | wxCENTRE | wxSTAY_ON_TOP ),
|
|
|
|
m_hash( 0 )
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
KIDIALOG::KIDIALOG( wxWindow* aParent, const wxString& aMessage,
|
|
|
|
KD_TYPE aType, const wxString& aCaption )
|
2019-02-16 13:09:21 +00:00
|
|
|
: wxRichMessageDialog( aParent, aMessage, getCaption( aType, aCaption ), getStyle( aType ) ),
|
|
|
|
m_hash( 0 )
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
2018-08-29 22:37:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KIDIALOG::DoNotShowCheckbox( wxString aUniqueId, int line )
|
|
|
|
{
|
|
|
|
ShowCheckBox( _( "Do not show again" ), false );
|
|
|
|
|
|
|
|
m_hash = std::hash<wxString>{}( aUniqueId ) + line;
|
2018-02-21 17:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
bool KIDIALOG::DoNotShowAgain() const
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
2018-03-02 15:52:45 +00:00
|
|
|
return doNotShowAgainDlgs.count( m_hash ) > 0;
|
2018-02-21 17:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
void KIDIALOG::ForceShowAgain()
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
2018-03-02 15:52:45 +00:00
|
|
|
doNotShowAgainDlgs.erase( m_hash );
|
2018-02-21 17:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
bool KIDIALOG::Show( bool aShow )
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
2018-07-25 09:45:20 +00:00
|
|
|
// We should check the do-not-show-again setting only when the dialog is displayed
|
|
|
|
if( aShow )
|
|
|
|
{
|
|
|
|
// Check if this dialog should be shown to the user
|
|
|
|
auto it = doNotShowAgainDlgs.find( m_hash );
|
2018-02-21 17:26:45 +00:00
|
|
|
|
2018-07-25 09:45:20 +00:00
|
|
|
if( it != doNotShowAgainDlgs.end() )
|
|
|
|
return it->second;
|
|
|
|
}
|
2018-02-21 17:26:45 +00:00
|
|
|
|
2020-01-15 18:29:15 +00:00
|
|
|
int ret = wxRichMessageDialog::Show( aShow );
|
2018-02-21 17:26:45 +00:00
|
|
|
|
2020-01-08 00:50:59 +00:00
|
|
|
// Has the user asked not to show the dialog again and it was confirmed
|
|
|
|
if( IsCheckBoxChecked() && ret != wxID_CANCEL )
|
2018-03-02 15:52:45 +00:00
|
|
|
doNotShowAgainDlgs[m_hash] = ret;
|
2018-02-21 17:26:45 +00:00
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
return ret;
|
2018-02-21 17:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-02 10:57:03 +00:00
|
|
|
int KIDIALOG::ShowModal()
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
|
|
|
// Check if this dialog should be shown to the user
|
2018-03-02 15:52:45 +00:00
|
|
|
auto it = doNotShowAgainDlgs.find( m_hash );
|
2018-02-21 17:26:45 +00:00
|
|
|
|
|
|
|
if( it != doNotShowAgainDlgs.end() )
|
|
|
|
return it->second;
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
int ret = wxRichMessageDialog::ShowModal();
|
2018-02-21 17:26:45 +00:00
|
|
|
|
|
|
|
// Has the user asked not to show the dialog again
|
2020-01-08 00:50:59 +00:00
|
|
|
if( IsCheckBoxChecked() && ret != wxID_CANCEL )
|
2018-03-02 15:52:45 +00:00
|
|
|
doNotShowAgainDlgs[m_hash] = ret;
|
2018-02-21 17:26:45 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
wxString KIDIALOG::getCaption( KD_TYPE aType, const wxString& aCaption )
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
2018-03-02 15:52:45 +00:00
|
|
|
if( !aCaption.IsEmpty() )
|
|
|
|
return aCaption;
|
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
|
|
|
case KD_NONE: /* fall through */
|
|
|
|
case KD_INFO: return _( "Message" );
|
|
|
|
case KD_QUESTION: return _( "Question" );
|
|
|
|
case KD_WARNING: return _( "Warning" );
|
|
|
|
case KD_ERROR: return _( "Error" );
|
|
|
|
}
|
|
|
|
|
|
|
|
return wxEmptyString;
|
2018-02-21 17:26:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
long KIDIALOG::getStyle( KD_TYPE aType )
|
2018-02-21 17:26:45 +00:00
|
|
|
{
|
2018-09-09 04:24:29 +00:00
|
|
|
long style = wxOK | wxCENTRE | wxSTAY_ON_TOP;
|
2018-03-02 15:52:45 +00:00
|
|
|
|
|
|
|
switch( aType )
|
|
|
|
{
|
|
|
|
case KD_NONE: break;
|
|
|
|
case KD_INFO: style |= wxICON_INFORMATION; break;
|
|
|
|
case KD_QUESTION: style |= wxICON_QUESTION; break;
|
|
|
|
case KD_WARNING: style |= wxICON_WARNING; break;
|
|
|
|
case KD_ERROR: style |= wxICON_ERROR; break;
|
|
|
|
}
|
2018-02-21 17:26:45 +00:00
|
|
|
|
2018-03-02 15:52:45 +00:00
|
|
|
return style;
|
2018-02-21 17:26:45 +00:00
|
|
|
}
|
2017-11-06 08:35:05 +00:00
|
|
|
|
2007-12-05 20:54:11 +00:00
|
|
|
|
2018-08-01 23:06:12 +00:00
|
|
|
int UnsavedChangesDialog( wxWindow* parent, const wxString& aMessage, bool* aApplyToAll )
|
2012-03-08 17:47:23 +00:00
|
|
|
{
|
2019-06-15 16:05:33 +00:00
|
|
|
wxRichMessageDialog dlg( parent, aMessage, wxEmptyString,
|
|
|
|
wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_WARNING | wxCENTER );
|
|
|
|
dlg.ShowDetailedText( _( "If you don't save, all your changes will be permanently lost." ) );
|
|
|
|
dlg.SetYesNoLabels( wxMessageDialog::ButtonLabel( _( "Save" ) ),
|
|
|
|
wxMessageDialog::ButtonLabel( _( "Discard Changes" ) ) );
|
2018-08-01 23:06:12 +00:00
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
if( aApplyToAll )
|
|
|
|
dlg.ShowCheckBox( _( "Apply to all" ), true );
|
2018-08-01 23:06:12 +00:00
|
|
|
|
|
|
|
int ret = dlg.ShowModal();
|
|
|
|
|
|
|
|
if( aApplyToAll )
|
2019-06-15 16:05:33 +00:00
|
|
|
*aApplyToAll = dlg.IsCheckBoxChecked();
|
2018-08-01 23:06:12 +00:00
|
|
|
|
|
|
|
// Returns wxID_YES, wxID_NO, or wxID_CANCEL
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
int UnsavedChangesDialog( wxWindow* parent, const wxString& aMessage )
|
2018-10-03 21:44:17 +00:00
|
|
|
{
|
2019-06-15 16:05:33 +00:00
|
|
|
wxMessageDialog dlg( parent, aMessage, wxEmptyString,
|
|
|
|
wxYES_NO | wxCANCEL | wxYES_DEFAULT | wxICON_WARNING | wxCENTER );
|
|
|
|
dlg.SetExtendedMessage( _( "If you don't save, all your changes will be permanently lost." ) );
|
|
|
|
dlg.SetYesNoLabels( wxMessageDialog::ButtonLabel( _( "Save" ) ),
|
|
|
|
wxMessageDialog::ButtonLabel( _( "Discard Changes" ) ) );
|
2018-10-03 21:44:17 +00:00
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
// Returns wxID_YES, wxID_NO, or wxID_CANCEL
|
|
|
|
return dlg.ShowModal();
|
|
|
|
}
|
2018-10-03 21:44:17 +00:00
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
|
|
|
|
bool ConfirmRevertDialog( wxWindow* parent, const wxString& aMessage )
|
|
|
|
{
|
|
|
|
wxMessageDialog dlg( parent, aMessage, wxEmptyString,
|
|
|
|
wxOK | wxCANCEL | wxOK_DEFAULT | wxICON_WARNING | wxCENTER );
|
|
|
|
dlg.SetExtendedMessage( _( "Your current changes will be permanently lost." ) );
|
|
|
|
dlg.SetOKCancelLabels( wxMessageDialog::ButtonLabel( _( "Revert" ) ),
|
|
|
|
wxMessageDialog::ButtonLabel( _( "Cancel" ) ) );
|
|
|
|
|
|
|
|
return dlg.ShowModal() == wxID_OK;
|
2018-10-03 21:44:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-11 20:46:03 +00:00
|
|
|
bool HandleUnsavedChanges( wxWindow* aParent, const wxString& aMessage,
|
|
|
|
const std::function<bool()>& aSaveFunction )
|
|
|
|
{
|
2019-06-15 16:05:33 +00:00
|
|
|
switch( UnsavedChangesDialog( aParent, aMessage ) )
|
2018-08-11 20:46:03 +00:00
|
|
|
{
|
|
|
|
case wxID_YES: return aSaveFunction();
|
|
|
|
case wxID_NO: return true;
|
|
|
|
default:
|
|
|
|
case wxID_CANCEL: return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
int OKOrCancelDialog( wxWindow* aParent, const wxString& aWarning, const wxString& aMessage,
|
|
|
|
const wxString& aOKLabel, const wxString& aCancelLabel, bool* aApplyToAll )
|
2018-08-01 23:06:12 +00:00
|
|
|
{
|
2019-06-15 16:05:33 +00:00
|
|
|
wxRichMessageDialog dlg( aParent, aMessage, wxEmptyString,
|
|
|
|
wxOK | wxCANCEL | wxOK_DEFAULT | wxICON_WARNING | wxCENTER );
|
|
|
|
dlg.ShowDetailedText( _( "If you don't save, all your changes will be permanently lost." ) );
|
|
|
|
dlg.SetOKCancelLabels( wxMessageDialog::ButtonLabel( aOKLabel ),
|
|
|
|
wxMessageDialog::ButtonLabel( aCancelLabel ) );
|
2012-03-08 17:47:23 +00:00
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
if( aApplyToAll )
|
|
|
|
dlg.ShowCheckBox( _( "Apply to all" ), true );
|
2018-08-01 13:36:42 +00:00
|
|
|
|
2012-03-08 17:47:23 +00:00
|
|
|
int ret = dlg.ShowModal();
|
2016-05-06 15:15:30 +00:00
|
|
|
|
2018-08-01 13:36:42 +00:00
|
|
|
if( aApplyToAll )
|
2019-06-15 16:05:33 +00:00
|
|
|
*aApplyToAll = dlg.IsCheckBoxChecked();
|
2018-08-01 13:36:42 +00:00
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
// Returns wxID_OK or wxID_CANCEL
|
2012-03-08 17:47:23 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2011-11-08 16:37:25 +00:00
|
|
|
|
2013-10-18 13:32:22 +00:00
|
|
|
|
2017-07-20 14:06:41 +00:00
|
|
|
// DisplayError should be deprecated, use DisplayErrorMessage instead
|
2009-11-23 15:16:50 +00:00
|
|
|
void DisplayError( wxWindow* parent, const wxString& text, int displaytime )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2007-12-05 20:54:11 +00:00
|
|
|
wxMessageDialog* dialog;
|
|
|
|
|
2017-07-20 13:03:33 +00:00
|
|
|
int icon = displaytime > 0 ? wxICON_INFORMATION : wxICON_ERROR;
|
|
|
|
|
|
|
|
dialog = new wxMessageDialog( parent, text, _( "Warning" ),
|
2018-09-09 04:24:29 +00:00
|
|
|
wxOK | wxCENTRE | wxRESIZE_BORDER | icon | wxSTAY_ON_TOP );
|
2007-12-05 20:54:11 +00:00
|
|
|
|
|
|
|
dialog->ShowModal();
|
|
|
|
dialog->Destroy();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
2007-12-05 20:54:11 +00:00
|
|
|
|
2017-09-23 09:20:10 +00:00
|
|
|
void DisplayErrorMessage( wxWindow* aParent, const wxString& aText, const wxString& aExtraInfo )
|
2007-05-06 16:03:28 +00:00
|
|
|
{
|
2017-07-20 13:03:33 +00:00
|
|
|
wxRichMessageDialog* dlg;
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2017-07-20 13:03:33 +00:00
|
|
|
dlg = new wxRichMessageDialog( aParent, aText, _( "Error" ),
|
2018-09-09 04:24:29 +00:00
|
|
|
wxOK | wxCENTRE | wxRESIZE_BORDER |
|
|
|
|
wxICON_ERROR | wxSTAY_ON_TOP );
|
2007-05-06 16:03:28 +00:00
|
|
|
|
2017-07-20 13:03:33 +00:00
|
|
|
if( !aExtraInfo.IsEmpty() )
|
|
|
|
{
|
|
|
|
dlg->ShowDetailedText( aExtraInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
dlg->ShowModal();
|
|
|
|
dlg->Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-23 09:20:10 +00:00
|
|
|
void DisplayInfoMessage( wxWindow* aParent, const wxString& aMessage, const wxString& aExtraInfo )
|
2017-07-20 13:03:33 +00:00
|
|
|
{
|
|
|
|
wxRichMessageDialog* dlg;
|
|
|
|
|
|
|
|
dlg = new wxRichMessageDialog( aParent, aMessage, _( "Info" ),
|
2018-09-09 04:24:29 +00:00
|
|
|
wxOK | wxCENTRE | wxRESIZE_BORDER |
|
|
|
|
wxICON_INFORMATION | wxSTAY_ON_TOP );
|
2017-07-20 13:03:33 +00:00
|
|
|
|
|
|
|
if( !aExtraInfo.IsEmpty() )
|
|
|
|
{
|
|
|
|
dlg->ShowDetailedText( aExtraInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
dlg->ShowModal();
|
|
|
|
dlg->Destroy();
|
2007-05-06 16:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-18 13:32:22 +00:00
|
|
|
bool IsOK( wxWindow* aParent, const wxString& aMessage )
|
|
|
|
{
|
|
|
|
wxMessageDialog dlg( aParent, aMessage, _( "Confirmation" ),
|
2018-09-09 03:16:07 +00:00
|
|
|
wxYES_NO | wxCENTRE | wxICON_QUESTION | wxSTAY_ON_TOP );
|
2019-02-07 14:41:58 +00:00
|
|
|
dlg.SetEscapeId( wxID_NO );
|
2013-10-18 13:32:22 +00:00
|
|
|
|
2013-10-19 13:22:24 +00:00
|
|
|
return dlg.ShowModal() == wxID_YES;
|
2013-10-18 13:32:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-15 16:05:33 +00:00
|
|
|
int SelectSingleOption( wxWindow* aParent, const wxString& aTitle,
|
|
|
|
const wxString& aMessage, const wxArrayString& aOptions )
|
2017-11-06 08:35:05 +00:00
|
|
|
{
|
2018-03-02 16:30:10 +00:00
|
|
|
wxSingleChoiceDialog dlg( aParent, aMessage, aTitle, aOptions );
|
2017-11-06 08:35:05 +00:00
|
|
|
|
2018-03-02 16:30:10 +00:00
|
|
|
if( dlg.ShowModal() != wxID_OK )
|
|
|
|
return -1;
|
2017-11-06 08:35:05 +00:00
|
|
|
|
2018-03-02 16:30:10 +00:00
|
|
|
return dlg.GetSelection();
|
2017-11-06 08:35:05 +00:00
|
|
|
}
|
|
|
|
|