2015-02-12 03:22:24 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2015-04-05 11:52:41 +02:00
|
|
|
* Copyright (C) 2015 John Beard, john.j.beard@gmail.com
|
|
|
|
* Copyright (C) 1992-2015 KiCad Developers, see AUTHORS.txt for contributors.
|
2015-02-12 03:22:24 +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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DIALOG_CREATE_ARRAY__
|
|
|
|
#define __DIALOG_CREATE_ARRAY__
|
|
|
|
|
|
|
|
// Include the wxFormBuider header base:
|
|
|
|
#include <dialog_create_array_base.h>
|
|
|
|
|
2019-01-24 18:15:21 +00:00
|
|
|
#include <array_options.h>
|
2016-04-02 14:52:29 +02:00
|
|
|
#include <class_board_item.h>
|
2018-01-29 16:39:40 +01:00
|
|
|
#include <pcb_base_frame.h>
|
2016-04-02 14:52:29 +02:00
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
#include <boost/bimap.hpp>
|
2018-06-14 09:26:11 +01:00
|
|
|
#include <widgets/unit_binder.h>
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
class CONFIG_SAVE_RESTORE_WINDOW
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
enum CONFIG_CTRL_TYPE_T
|
|
|
|
{
|
|
|
|
CFG_CTRL_TEXT,
|
2018-11-11 12:25:00 +00:00
|
|
|
CFG_CTRL_UNIT_BINDER,
|
2015-02-12 03:22:24 +00:00
|
|
|
CFG_CTRL_CHECKBOX,
|
|
|
|
CFG_CTRL_RADIOBOX,
|
|
|
|
CFG_CTRL_CHOICE,
|
|
|
|
CFG_CTRL_TAB
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CONFIG_CTRL_T
|
|
|
|
{
|
2018-11-11 12:25:00 +00:00
|
|
|
void* control;
|
2015-02-12 03:22:24 +00:00
|
|
|
CONFIG_CTRL_TYPE_T type;
|
|
|
|
void* dest;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<CONFIG_CTRL_T> ctrls;
|
|
|
|
bool& valid;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
CONFIG_SAVE_RESTORE_WINDOW( bool& validFlag ) :
|
|
|
|
valid( validFlag )
|
|
|
|
{}
|
|
|
|
|
|
|
|
void Add( wxRadioBox* ctrl, int& dest )
|
|
|
|
{
|
|
|
|
CONFIG_CTRL_T ctrlInfo = { ctrl, CFG_CTRL_RADIOBOX, (void*) &dest };
|
|
|
|
|
|
|
|
ctrls.push_back( ctrlInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Add( wxCheckBox* ctrl, bool& dest )
|
|
|
|
{
|
|
|
|
CONFIG_CTRL_T ctrlInfo = { ctrl, CFG_CTRL_CHECKBOX, (void*) &dest };
|
|
|
|
|
|
|
|
ctrls.push_back( ctrlInfo );
|
|
|
|
}
|
|
|
|
|
2016-04-02 14:52:29 +02:00
|
|
|
void Add( wxTextCtrl* ctrl, wxString& dest )
|
2015-02-12 03:22:24 +00:00
|
|
|
{
|
|
|
|
CONFIG_CTRL_T ctrlInfo = { ctrl, CFG_CTRL_TEXT, (void*) &dest };
|
|
|
|
|
|
|
|
ctrls.push_back( ctrlInfo );
|
|
|
|
}
|
|
|
|
|
2018-11-11 12:25:00 +00:00
|
|
|
void Add( UNIT_BINDER& ctrl, int& dest )
|
|
|
|
{
|
|
|
|
CONFIG_CTRL_T ctrlInfo = { &ctrl, CFG_CTRL_UNIT_BINDER, (void*) &dest };
|
|
|
|
|
|
|
|
ctrls.push_back( ctrlInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
void Add( wxChoice* ctrl, int& dest )
|
|
|
|
{
|
|
|
|
CONFIG_CTRL_T ctrlInfo = { ctrl, CFG_CTRL_CHOICE, (void*) &dest };
|
|
|
|
|
|
|
|
ctrls.push_back( ctrlInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
void Add( wxNotebook* ctrl, int& dest )
|
|
|
|
{
|
|
|
|
CONFIG_CTRL_T ctrlInfo = { ctrl, CFG_CTRL_TAB, (void*) &dest };
|
|
|
|
|
|
|
|
ctrls.push_back( ctrlInfo );
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReadConfigFromControls()
|
|
|
|
{
|
|
|
|
for( std::vector<CONFIG_CTRL_T>::const_iterator iter = ctrls.begin(), iend = ctrls.end();
|
|
|
|
iter != iend; ++iter )
|
|
|
|
{
|
|
|
|
switch( iter->type )
|
|
|
|
{
|
|
|
|
case CFG_CTRL_CHECKBOX:
|
|
|
|
*(bool*) iter->dest = static_cast<wxCheckBox*>( iter->control )->GetValue();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CFG_CTRL_TEXT:
|
2016-04-02 14:52:29 +02:00
|
|
|
*(wxString*) iter->dest = static_cast<wxTextCtrl*>( iter->control )->GetValue();
|
2015-02-12 03:22:24 +00:00
|
|
|
break;
|
|
|
|
|
2018-11-11 12:25:00 +00:00
|
|
|
case CFG_CTRL_UNIT_BINDER:
|
|
|
|
*(int*) iter->dest = static_cast<UNIT_BINDER*>( iter->control )->GetValue();
|
|
|
|
break;
|
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
case CFG_CTRL_CHOICE:
|
|
|
|
*(int*) iter->dest = static_cast<wxChoice*>( iter->control )->GetSelection();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CFG_CTRL_RADIOBOX:
|
|
|
|
*(int*) iter->dest = static_cast<wxRadioBox*>( iter->control )->GetSelection();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CFG_CTRL_TAB:
|
|
|
|
*(int*) iter->dest = static_cast<wxNotebook*>( iter->control )->GetSelection();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
wxASSERT_MSG( false, wxString(
|
|
|
|
"Unhandled control type for config store: " ) << iter->type );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
valid = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RestoreConfigToControls()
|
|
|
|
{
|
|
|
|
if( !valid )
|
|
|
|
return;
|
|
|
|
|
|
|
|
for( std::vector<CONFIG_CTRL_T>::const_iterator iter = ctrls.begin(), iend = ctrls.end();
|
|
|
|
iter != iend; ++iter )
|
|
|
|
{
|
|
|
|
switch( iter->type )
|
|
|
|
{
|
|
|
|
case CFG_CTRL_CHECKBOX:
|
|
|
|
static_cast<wxCheckBox*>( iter->control )->SetValue( *(bool*) iter->dest );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CFG_CTRL_TEXT:
|
2016-04-02 14:52:29 +02:00
|
|
|
static_cast<wxTextCtrl*>( iter->control )->SetValue( *(wxString*) iter->dest );
|
2015-02-12 03:22:24 +00:00
|
|
|
break;
|
|
|
|
|
2018-11-11 12:25:00 +00:00
|
|
|
case CFG_CTRL_UNIT_BINDER:
|
|
|
|
static_cast<UNIT_BINDER*>( iter->control )->SetValue( *(int*) iter->dest );
|
|
|
|
break;
|
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
case CFG_CTRL_CHOICE:
|
|
|
|
static_cast<wxChoice*>( iter->control )->SetSelection( *(int*) iter->dest );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CFG_CTRL_RADIOBOX:
|
|
|
|
static_cast<wxRadioBox*>( iter->control )->SetSelection( *(int*) iter->dest );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CFG_CTRL_TAB:
|
|
|
|
static_cast<wxNotebook*>( iter->control )->SetSelection( *(int*) iter->dest );
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
wxASSERT_MSG( false, wxString(
|
|
|
|
"Unhandled control type for config restore: " ) << iter->type );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DIALOG_CREATE_ARRAY : public DIALOG_CREATE_ARRAY_BASE,
|
|
|
|
public CONFIG_SAVE_RESTORE_WINDOW
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2016-03-07 08:13:06 +01:00
|
|
|
#define NUMBERING_TYPE_MAX NUMBERING_ALPHA_FULL
|
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
// Constructor and destructor
|
2016-04-02 14:52:29 +02:00
|
|
|
DIALOG_CREATE_ARRAY( PCB_BASE_FRAME* aParent, bool enableNumbering,
|
|
|
|
wxPoint aOrigPos );
|
|
|
|
|
|
|
|
~DIALOG_CREATE_ARRAY();
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* @return the array options set by this dialogue, or NULL if they were
|
|
|
|
* not set, or could not be set
|
|
|
|
*/
|
|
|
|
ARRAY_OPTIONS* GetArrayOptions() const
|
|
|
|
{
|
|
|
|
return m_settings;
|
|
|
|
}
|
2015-02-12 03:22:24 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
/**
|
|
|
|
* The settings object returned to the caller.
|
2016-04-02 14:52:29 +02:00
|
|
|
* We retain ownership of this
|
2015-02-12 03:22:24 +00:00
|
|
|
*/
|
2016-04-02 14:52:29 +02:00
|
|
|
ARRAY_OPTIONS* m_settings;
|
2015-02-12 03:22:24 +00:00
|
|
|
|
2018-06-14 09:26:11 +01:00
|
|
|
UNIT_BINDER m_hSpacing, m_vSpacing;
|
|
|
|
UNIT_BINDER m_hOffset, m_vOffset;
|
|
|
|
UNIT_BINDER m_hCentre, m_vCentre;
|
|
|
|
UNIT_BINDER m_circRadius;
|
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
/*
|
|
|
|
* The position of the original item(s), used for finding radius, etc
|
|
|
|
*/
|
|
|
|
const wxPoint m_originalItemPosition;
|
|
|
|
|
|
|
|
// Event callbacks
|
2016-09-24 14:53:15 -04:00
|
|
|
void OnParameterChanged( wxCommandEvent& event ) override;
|
2015-02-12 03:22:24 +00:00
|
|
|
|
2015-02-12 03:22:24 +00:00
|
|
|
// Internal callback handlers
|
2015-02-12 03:22:24 +00:00
|
|
|
void setControlEnablement();
|
2015-02-12 03:22:24 +00:00
|
|
|
void calculateCircularArrayProperties();
|
2015-02-12 03:22:24 +00:00
|
|
|
|
2018-03-06 21:11:36 +00:00
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
|
2016-04-02 14:52:29 +02:00
|
|
|
// some uses of arrays might not allow component renumbering
|
|
|
|
bool m_numberingEnabled;
|
2015-02-12 03:22:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __DIALOG_CREATE_ARRAY__
|