2011-01-04 20:27:52 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2011-01-04 20:27:52 +00:00
|
|
|
*
|
2017-06-26 07:11:21 +00:00
|
|
|
* Copyright (C) 1992-2017 jean-pierre Charras jp.charras at wanadoo.fr
|
2023-06-09 16:24:49 +00:00
|
|
|
* Copyright (C) 1992-2023 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-01-04 20:27:52 +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
|
|
|
|
*/
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-16 17:21:01 +00:00
|
|
|
|
2018-01-30 10:49:51 +00:00
|
|
|
#include <sch_edit_frame.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2013-06-07 20:56:55 +00:00
|
|
|
#include <dialog_annotate_base.h>
|
2020-01-13 01:44:19 +00:00
|
|
|
#include <eeschema_settings.h>
|
2021-09-14 22:45:14 +00:00
|
|
|
#include <kiface_base.h>
|
2022-09-03 18:29:02 +00:00
|
|
|
#include <widgets/wx_html_report_panel.h>
|
2021-06-21 01:41:15 +00:00
|
|
|
#include <schematic.h>
|
2023-06-09 21:41:33 +00:00
|
|
|
#include <sch_commit.h>
|
2013-06-07 20:56:55 +00:00
|
|
|
|
2018-08-11 15:19:24 +00:00
|
|
|
// A window name for the annotate dialog to retrieve is if not destroyed
|
|
|
|
#define DLG_WINDOW_NAME "DialogAnnotateWindowName"
|
|
|
|
|
2013-06-07 20:56:55 +00:00
|
|
|
|
|
|
|
/**
|
2021-03-21 17:31:23 +00:00
|
|
|
* A dialog to set/clear reference designators of a schematic with different options.
|
2013-06-07 20:56:55 +00:00
|
|
|
*/
|
|
|
|
class DIALOG_ANNOTATE: public DIALOG_ANNOTATE_BASE
|
|
|
|
{
|
|
|
|
public:
|
2017-09-23 09:20:10 +00:00
|
|
|
DIALOG_ANNOTATE( SCH_EDIT_FRAME* parent, const wxString& message );
|
2018-02-17 11:43:56 +00:00
|
|
|
~DIALOG_ANNOTATE();
|
2013-06-07 20:56:55 +00:00
|
|
|
|
|
|
|
private:
|
2021-03-21 17:31:23 +00:00
|
|
|
/// Initialize member variables.
|
2013-06-07 20:56:55 +00:00
|
|
|
void InitValues();
|
2021-01-01 17:30:47 +00:00
|
|
|
void OnOptionChanged( wxCommandEvent& event ) override;
|
2020-07-13 11:21:40 +00:00
|
|
|
void OnClearAnnotationClick( wxCommandEvent& event ) override;
|
2018-08-06 20:45:01 +00:00
|
|
|
void OnCloseClick( wxCommandEvent& event ) override;
|
|
|
|
void OnClose( wxCloseEvent& event ) override;
|
2016-09-24 18:53:15 +00:00
|
|
|
void OnApplyClick( wxCommandEvent& event ) override;
|
2013-06-07 20:56:55 +00:00
|
|
|
|
|
|
|
// User functions:
|
|
|
|
bool GetResetItems();
|
|
|
|
|
2021-04-26 16:27:22 +00:00
|
|
|
ANNOTATE_SCOPE_T GetScope();
|
|
|
|
|
2022-04-25 17:10:33 +00:00
|
|
|
bool GetRecursive();
|
|
|
|
|
2021-04-26 14:19:11 +00:00
|
|
|
ANNOTATE_ORDER_T GetSortOrder();
|
|
|
|
|
|
|
|
ANNOTATE_ALGO_T GetAnnotateAlgo();
|
2013-06-07 20:56:55 +00:00
|
|
|
|
2018-02-18 20:44:33 +00:00
|
|
|
int GetStartNumber();
|
2021-03-21 17:31:23 +00:00
|
|
|
|
|
|
|
SCH_EDIT_FRAME* m_Parent;
|
2013-06-07 20:56:55 +00:00
|
|
|
};
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-16 17:21:01 +00:00
|
|
|
|
2017-09-23 09:20:10 +00:00
|
|
|
DIALOG_ANNOTATE::DIALOG_ANNOTATE( SCH_EDIT_FRAME* parent, const wxString& message )
|
2009-10-27 19:30:32 +00:00
|
|
|
: DIALOG_ANNOTATE_BASE( parent )
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2018-08-11 15:19:24 +00:00
|
|
|
SetName( DLG_WINDOW_NAME );
|
2008-02-26 01:07:38 +00:00
|
|
|
m_Parent = parent;
|
2018-02-17 11:43:56 +00:00
|
|
|
|
|
|
|
if( !message.IsEmpty() )
|
|
|
|
{
|
2021-01-30 16:30:35 +00:00
|
|
|
m_infoBar->RemoveAllButtons();
|
|
|
|
m_infoBar->ShowMessage( message );
|
2018-02-17 11:43:56 +00:00
|
|
|
|
2022-04-22 11:55:00 +00:00
|
|
|
m_rbScope_Schematic->SetValue( true );
|
|
|
|
m_rbScope_Schematic->Enable( false );
|
2018-02-17 11:43:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_MessageWindow->SetLabel( _( "Annotation Messages:" ) );
|
2021-02-25 15:05:26 +00:00
|
|
|
m_MessageWindow->SetFileName( Prj().GetProjectPath() + wxT( "report.txt" ) );
|
2013-06-07 20:56:55 +00:00
|
|
|
|
2021-11-16 19:39:58 +00:00
|
|
|
SetupStandardButtons( { { wxID_OK, _( "Annotate" ) },
|
|
|
|
{ wxID_CANCEL, _( "Close" ) } } );
|
2018-03-12 04:39:40 +00:00
|
|
|
|
2009-10-27 19:30:32 +00:00
|
|
|
InitValues();
|
|
|
|
Layout();
|
2017-12-24 09:31:18 +00:00
|
|
|
|
|
|
|
// When all widgets have the size fixed, call FinishDialogSettings
|
2020-11-16 11:16:44 +00:00
|
|
|
finishDialogSettings();
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-02-26 01:07:38 +00:00
|
|
|
|
2018-02-17 11:43:56 +00:00
|
|
|
DIALOG_ANNOTATE::~DIALOG_ANNOTATE()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2020-03-23 15:17:22 +00:00
|
|
|
auto cfg = static_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() );
|
2013-06-07 20:56:55 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
cfg->m_AnnotatePanel.sort_order = GetSortOrder();
|
|
|
|
cfg->m_AnnotatePanel.method = GetAnnotateAlgo();
|
2021-04-26 14:19:11 +00:00
|
|
|
cfg->m_AnnotatePanel.options = m_rbOptions->GetSelection();
|
2021-10-03 17:55:50 +00:00
|
|
|
|
2022-04-22 11:55:00 +00:00
|
|
|
if( m_rbScope_Schematic->IsEnabled() )
|
|
|
|
{
|
|
|
|
cfg->m_AnnotatePanel.scope = GetScope();
|
2022-04-25 17:10:33 +00:00
|
|
|
cfg->m_AnnotatePanel.recursive = GetRecursive();
|
2022-04-22 11:55:00 +00:00
|
|
|
}
|
2021-10-03 17:55:50 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
cfg->m_AnnotatePanel.messages_filter = m_MessageWindow->GetVisibleSeverities();
|
2021-06-21 01:41:15 +00:00
|
|
|
|
|
|
|
// Get the "start annotation after" value from dialog and update project settings if changed
|
|
|
|
int startNum = GetStartNumber();
|
|
|
|
SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_parentFrame );
|
|
|
|
|
2021-10-03 17:55:50 +00:00
|
|
|
if( schFrame )
|
|
|
|
{
|
2021-06-21 01:41:15 +00:00
|
|
|
SCHEMATIC_SETTINGS& projSettings = schFrame->Schematic().Settings();
|
|
|
|
|
|
|
|
// If the user has updated the start annotation number then update the project file.
|
|
|
|
// We manually update the project file here in case the user has changed the value
|
|
|
|
// and just clicked the "Close" button on the annotation dialog.
|
|
|
|
|
|
|
|
if( projSettings.m_AnnotateStartNum != startNum )
|
|
|
|
{
|
|
|
|
projSettings.m_AnnotateStartNum = startNum;
|
2023-03-04 19:25:07 +00:00
|
|
|
schFrame->OnModify();
|
2021-06-21 01:41:15 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-17 11:43:56 +00:00
|
|
|
}
|
2011-01-04 20:27:52 +00:00
|
|
|
|
2013-06-07 20:56:55 +00:00
|
|
|
|
2018-02-17 11:43:56 +00:00
|
|
|
void DIALOG_ANNOTATE::InitValues()
|
|
|
|
{
|
2020-07-13 11:21:40 +00:00
|
|
|
EESCHEMA_SETTINGS* cfg = static_cast<EESCHEMA_SETTINGS*>( Kiface().KifaceSettings() );
|
2020-01-13 01:44:19 +00:00
|
|
|
int option;
|
2013-06-07 20:56:55 +00:00
|
|
|
|
2022-04-22 11:55:00 +00:00
|
|
|
if( m_rbScope_Schematic->IsEnabled() )
|
|
|
|
{
|
|
|
|
switch( cfg->m_AnnotatePanel.scope )
|
|
|
|
{
|
|
|
|
default:
|
2023-02-14 12:44:09 +00:00
|
|
|
case ANNOTATE_ALL: m_rbScope_Schematic->SetValue( true ); break;
|
|
|
|
case ANNOTATE_CURRENT_SHEET: m_rbScope_Sheet->SetValue( true ); break;
|
|
|
|
case ANNOTATE_SELECTION: m_rbScope_Selection->SetValue( true ); break;
|
2022-04-22 11:55:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_checkRecursive->SetValue( cfg->m_AnnotatePanel.recursive );
|
|
|
|
}
|
|
|
|
|
2021-10-03 17:55:50 +00:00
|
|
|
|
2021-04-26 14:19:11 +00:00
|
|
|
m_rbOptions->SetSelection( cfg->m_AnnotatePanel.options );
|
2012-08-21 10:45:54 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
option = cfg->m_AnnotatePanel.sort_order;
|
2019-08-26 09:07:38 +00:00
|
|
|
|
2018-02-17 11:43:56 +00:00
|
|
|
switch( option )
|
|
|
|
{
|
|
|
|
default:
|
2023-02-14 12:44:09 +00:00
|
|
|
case SORT_BY_X_POSITION: m_rbSortBy_X_Position->SetValue( true ); break;
|
|
|
|
case SORT_BY_Y_POSITION: m_rbSortBy_Y_Position->SetValue( true ); break;
|
2018-02-17 11:43:56 +00:00
|
|
|
}
|
2012-08-21 10:45:54 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
option = cfg->m_AnnotatePanel.method;
|
2019-08-26 09:07:38 +00:00
|
|
|
|
2018-02-18 20:44:33 +00:00
|
|
|
switch( option )
|
|
|
|
{
|
|
|
|
default:
|
2023-02-14 12:44:09 +00:00
|
|
|
case INCREMENTAL_BY_REF: m_rbFirstFree->SetValue( true ); break;
|
|
|
|
case SHEET_NUMBER_X_100: m_rbSheetX100->SetValue( true ); break;
|
|
|
|
case SHEET_NUMBER_X_1000: m_rbSheetX1000->SetValue( true ); break;
|
2018-02-18 20:44:33 +00:00
|
|
|
}
|
2019-08-26 09:07:38 +00:00
|
|
|
|
2021-06-21 01:41:15 +00:00
|
|
|
int annotateStartNum = 0; // Default "start after" value for annotation
|
|
|
|
|
|
|
|
// See if we can get a "start after" value from the project settings
|
|
|
|
SCH_EDIT_FRAME* schFrame = dynamic_cast<SCH_EDIT_FRAME*>( m_parentFrame );
|
|
|
|
|
|
|
|
if( schFrame )
|
|
|
|
{
|
|
|
|
SCHEMATIC_SETTINGS& projSettings = schFrame->Schematic().Settings();
|
|
|
|
annotateStartNum = projSettings.m_AnnotateStartNum;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_textNumberAfter->SetValue( wxString::Format( wxT( "%d" ), annotateStartNum ) );
|
2015-06-22 15:53:27 +00:00
|
|
|
|
2023-10-21 18:56:19 +00:00
|
|
|
annotate_down_right_bitmap->SetBitmap( KiBitmapBundle( BITMAPS::annotate_down_right ) );
|
|
|
|
annotate_right_down_bitmap->SetBitmap( KiBitmapBundle( BITMAPS::annotate_right_down ) );
|
2010-11-11 21:10:27 +00:00
|
|
|
|
2020-01-13 01:44:19 +00:00
|
|
|
m_MessageWindow->SetVisibleSeverities( cfg->m_AnnotatePanel.messages_filter );
|
2018-02-17 11:43:56 +00:00
|
|
|
|
|
|
|
m_MessageWindow->MsgPanelSetMinSize( wxSize( -1, 160 ) );
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
|
|
|
|
2008-04-16 17:21:01 +00:00
|
|
|
|
2018-08-06 20:45:01 +00:00
|
|
|
// This is a modeless dialog so we have to handle these ourselves.
|
|
|
|
void DIALOG_ANNOTATE::OnCloseClick( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DIALOG_ANNOTATE::OnClose( wxCloseEvent& event )
|
|
|
|
{
|
|
|
|
Destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-10-27 19:30:32 +00:00
|
|
|
void DIALOG_ANNOTATE::OnApplyClick( wxCommandEvent& event )
|
2008-02-26 01:07:38 +00:00
|
|
|
{
|
2023-06-09 21:41:33 +00:00
|
|
|
SCH_COMMIT commit( m_Parent );
|
2023-06-09 16:24:49 +00:00
|
|
|
|
2018-02-17 11:43:56 +00:00
|
|
|
m_MessageWindow->Clear();
|
|
|
|
REPORTER& reporter = m_MessageWindow->Reporter();
|
|
|
|
m_MessageWindow->SetLazyUpdate( true ); // Don't update after each message
|
|
|
|
|
2023-06-09 16:24:49 +00:00
|
|
|
m_Parent->AnnotateSymbols( &commit, GetScope(), GetSortOrder(), GetAnnotateAlgo(),
|
|
|
|
GetRecursive(), GetStartNumber(), GetResetItems(), true, reporter );
|
2018-02-17 11:43:56 +00:00
|
|
|
|
2023-06-09 16:24:49 +00:00
|
|
|
commit.Push( _( "Annotate" ) );
|
2018-02-17 11:43:56 +00:00
|
|
|
|
2023-06-09 16:24:49 +00:00
|
|
|
m_MessageWindow->Flush( true ); // Now update to show all messages
|
2011-01-01 17:28:21 +00:00
|
|
|
|
2021-01-01 17:30:47 +00:00
|
|
|
m_sdbSizer1Cancel->SetDefault();
|
2012-08-21 10:45:54 +00:00
|
|
|
|
2018-02-18 20:44:33 +00:00
|
|
|
// Don't close dialog if there are things the user needs to address
|
|
|
|
if( reporter.HasMessage() )
|
|
|
|
return;
|
|
|
|
|
2021-01-30 16:30:35 +00:00
|
|
|
if( m_infoBar->IsShown() )
|
2012-08-21 10:45:54 +00:00
|
|
|
{
|
2018-02-18 20:44:33 +00:00
|
|
|
// Close the dialog by calling the default handler for a wxID_OK event
|
2018-02-17 11:43:56 +00:00
|
|
|
event.SetId( wxID_OK );
|
|
|
|
event.Skip();
|
2012-08-21 10:45:54 +00:00
|
|
|
}
|
2008-02-26 01:07:38 +00:00
|
|
|
}
|
2007-06-05 12:10:51 +00:00
|
|
|
|
2008-04-16 17:21:01 +00:00
|
|
|
|
2020-07-13 11:21:40 +00:00
|
|
|
void DIALOG_ANNOTATE::OnClearAnnotationClick( wxCommandEvent& event )
|
2008-04-16 17:21:01 +00:00
|
|
|
{
|
2023-04-29 00:02:42 +00:00
|
|
|
m_Parent->DeleteAnnotation( GetScope(), GetRecursive() );
|
2008-04-16 17:21:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-01 17:30:47 +00:00
|
|
|
void DIALOG_ANNOTATE::OnOptionChanged( wxCommandEvent& event )
|
|
|
|
{
|
|
|
|
m_sdbSizer1OK->Enable( true );
|
|
|
|
m_sdbSizer1OK->SetDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-07 20:56:55 +00:00
|
|
|
bool DIALOG_ANNOTATE::GetResetItems()
|
2008-02-26 01:07:38 +00:00
|
|
|
{
|
2018-02-17 11:43:56 +00:00
|
|
|
return m_rbOptions->GetSelection() >= 1;
|
2008-02-26 01:07:38 +00:00
|
|
|
}
|
|
|
|
|
2018-02-17 11:43:56 +00:00
|
|
|
|
2021-04-26 16:27:22 +00:00
|
|
|
ANNOTATE_SCOPE_T DIALOG_ANNOTATE::GetScope()
|
|
|
|
{
|
2022-04-22 11:55:00 +00:00
|
|
|
if( m_rbScope_Schematic->GetValue() )
|
|
|
|
return ANNOTATE_ALL;
|
|
|
|
else if( m_rbScope_Sheet->GetValue() )
|
|
|
|
return ANNOTATE_CURRENT_SHEET;
|
|
|
|
else
|
|
|
|
return ANNOTATE_SELECTION;
|
2021-04-26 16:27:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-25 17:10:33 +00:00
|
|
|
bool DIALOG_ANNOTATE::GetRecursive()
|
|
|
|
{
|
|
|
|
return m_checkRecursive->GetValue();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-04-26 14:19:11 +00:00
|
|
|
ANNOTATE_ORDER_T DIALOG_ANNOTATE::GetSortOrder()
|
2007-06-05 12:10:51 +00:00
|
|
|
{
|
2013-06-07 20:56:55 +00:00
|
|
|
if( m_rbSortBy_Y_Position->GetValue() )
|
2021-04-26 14:19:11 +00:00
|
|
|
return SORT_BY_Y_POSITION;
|
2018-02-17 11:43:56 +00:00
|
|
|
else
|
2021-04-26 14:19:11 +00:00
|
|
|
return SORT_BY_X_POSITION;
|
2007-06-05 12:10:51 +00:00
|
|
|
}
|
2008-04-16 17:21:01 +00:00
|
|
|
|
2013-06-07 20:56:55 +00:00
|
|
|
|
2021-04-26 14:19:11 +00:00
|
|
|
ANNOTATE_ALGO_T DIALOG_ANNOTATE::GetAnnotateAlgo()
|
2011-01-04 20:27:52 +00:00
|
|
|
{
|
2018-02-18 20:44:33 +00:00
|
|
|
if( m_rbSheetX100->GetValue() )
|
2021-04-26 14:19:11 +00:00
|
|
|
return SHEET_NUMBER_X_100;
|
2018-02-18 20:44:33 +00:00
|
|
|
else if( m_rbSheetX1000->GetValue() )
|
2021-04-26 14:19:11 +00:00
|
|
|
return SHEET_NUMBER_X_1000;
|
2018-02-18 20:44:33 +00:00
|
|
|
else
|
2021-04-26 14:19:11 +00:00
|
|
|
return INCREMENTAL_BY_REF;
|
2018-02-17 11:43:56 +00:00
|
|
|
}
|
2013-06-07 20:56:55 +00:00
|
|
|
|
|
|
|
|
2018-02-18 20:44:33 +00:00
|
|
|
int DIALOG_ANNOTATE::GetStartNumber()
|
2018-02-17 11:43:56 +00:00
|
|
|
{
|
2022-09-16 04:38:10 +00:00
|
|
|
return EDA_UNIT_UTILS::UI::ValueFromString( m_textNumberAfter->GetValue() );
|
2018-02-18 20:44:33 +00:00
|
|
|
}
|
2018-02-17 11:43:56 +00:00
|
|
|
|
2018-02-18 20:44:33 +00:00
|
|
|
|
|
|
|
void SCH_EDIT_FRAME::OnAnnotate( wxCommandEvent& event )
|
|
|
|
{
|
2018-08-11 15:19:24 +00:00
|
|
|
DIALOG_ANNOTATE* dlg = static_cast<DIALOG_ANNOTATE*> ( wxWindow::FindWindowByName( DLG_WINDOW_NAME ) );
|
|
|
|
|
|
|
|
if( !dlg )
|
2018-02-18 20:44:33 +00:00
|
|
|
{
|
2018-08-11 15:19:24 +00:00
|
|
|
dlg = new DIALOG_ANNOTATE( this, wxEmptyString );
|
|
|
|
dlg->Show( true );
|
2018-02-18 20:44:33 +00:00
|
|
|
}
|
2018-08-11 15:19:24 +00:00
|
|
|
else // The dialog is already opened, perhaps not visible
|
2018-02-18 20:44:33 +00:00
|
|
|
{
|
2018-08-11 15:19:24 +00:00
|
|
|
dlg->Show( true );
|
2018-02-18 20:44:33 +00:00
|
|
|
}
|
2011-01-04 20:27:52 +00:00
|
|
|
}
|
2013-06-07 20:56:55 +00:00
|
|
|
|
|
|
|
|
2018-02-18 20:44:33 +00:00
|
|
|
int SCH_EDIT_FRAME::ModalAnnotate( const wxString& aMessage )
|
2013-06-07 20:56:55 +00:00
|
|
|
{
|
2018-02-18 20:44:33 +00:00
|
|
|
DIALOG_ANNOTATE dlg( this, aMessage );
|
2013-06-07 20:56:55 +00:00
|
|
|
|
|
|
|
return dlg.ShowModal();
|
|
|
|
}
|