2018-03-12 22:45:17 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2018-03-12 22:45:17 +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
|
|
|
|
*/
|
|
|
|
|
2020-12-17 08:12:18 -05:00
|
|
|
#include <dialogs/dialog_text_entry.h>
|
2025-08-11 12:08:52 +01:00
|
|
|
#include <string_utils.h>
|
2018-03-12 22:45:17 +00:00
|
|
|
|
|
|
|
|
2025-08-11 12:08:52 +01:00
|
|
|
WX_TEXT_ENTRY_DIALOG::WX_TEXT_ENTRY_DIALOG( wxWindow* aParent, const wxString& aFieldLabel,
|
|
|
|
const wxString& aCaption, const wxString& aDefaultValue,
|
2024-01-29 15:59:28 +00:00
|
|
|
bool aExtraWidth ) :
|
2025-08-11 12:08:52 +01:00
|
|
|
WX_TEXT_ENTRY_DIALOG_BASE( aParent, wxID_ANY, aCaption, wxDefaultPosition, wxDefaultSize )
|
2018-03-12 22:45:17 +00:00
|
|
|
{
|
2024-06-19 17:07:38 +01:00
|
|
|
if( aFieldLabel.IsEmpty() )
|
|
|
|
m_label->Hide();
|
|
|
|
else
|
|
|
|
m_label->SetLabel( aFieldLabel );
|
|
|
|
|
2018-03-12 22:45:17 +00:00
|
|
|
m_textCtrl->SetValue( aDefaultValue );
|
2024-01-29 15:59:28 +00:00
|
|
|
m_textCtrl->SetMinSize( FromDIP( aExtraWidth ? wxSize( 700, -1 ) : wxSize( 300, -1 ) ) );
|
2020-12-24 10:35:57 +00:00
|
|
|
|
2025-08-11 12:08:52 +01:00
|
|
|
// DIALOG_SHIM needs a title- and label-specific hash_key so we don't save/restore state between
|
|
|
|
// usage cases.
|
|
|
|
m_hash_key = TO_UTF8( aCaption + aFieldLabel );
|
|
|
|
|
2021-11-16 19:39:58 +00:00
|
|
|
SetupStandardButtons();
|
|
|
|
|
2020-12-24 10:35:57 +00:00
|
|
|
SetInitialFocus( m_textCtrl );
|
2024-01-29 15:59:28 +00:00
|
|
|
|
|
|
|
this->Layout();
|
|
|
|
m_mainSizer->Fit( this );
|
2018-03-12 22:45:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void WX_TEXT_ENTRY_DIALOG::SetTextValidator( const wxTextValidator& validator )
|
|
|
|
{
|
|
|
|
m_textCtrl->SetValidator( validator );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-10-27 11:03:35 +00:00
|
|
|
wxString WX_TEXT_ENTRY_DIALOG::GetValue() const
|
2018-03-12 22:45:17 +00:00
|
|
|
{
|
|
|
|
return m_textCtrl->GetValue();
|
|
|
|
}
|
|
|
|
|
2021-09-24 10:35:36 -07:00
|
|
|
|