2024-01-03 19:47:35 +01: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.
|
2024-01-03 19:47:35 +01: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_MULTICHANNEL_REPEAT_LAYOUT__
|
|
|
|
#define __DIALOG_MULTICHANNEL_REPEAT_LAYOUT__
|
|
|
|
|
|
|
|
#include <vector>
|
2025-04-19 16:33:08 +02:00
|
|
|
#include <board.h>
|
2024-01-03 19:47:35 +01:00
|
|
|
#include <widgets/unit_binder.h>
|
|
|
|
|
|
|
|
#include <dialogs/dialog_multichannel_repeat_layout_base.h>
|
|
|
|
|
|
|
|
class PCB_BASE_FRAME;
|
|
|
|
class MULTICHANNEL_TOOL;
|
2024-01-05 15:51:18 +01:00
|
|
|
struct RULE_AREA;
|
2024-01-03 19:47:35 +01:00
|
|
|
|
|
|
|
class DIALOG_MULTICHANNEL_REPEAT_LAYOUT : public DIALOG_MULTICHANNEL_REPEAT_LAYOUT_BASE
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DIALOG_MULTICHANNEL_REPEAT_LAYOUT(
|
|
|
|
PCB_BASE_FRAME* aFrame,
|
|
|
|
MULTICHANNEL_TOOL* aParentTool );
|
2025-04-24 21:45:12 +02:00
|
|
|
~DIALOG_MULTICHANNEL_REPEAT_LAYOUT();
|
2024-01-03 19:47:35 +01:00
|
|
|
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
|
|
|
|
private:
|
2024-01-04 17:32:51 +01:00
|
|
|
struct TABLE_ENTRY {
|
|
|
|
RULE_AREA *m_targetRA;
|
|
|
|
bool m_isOK;
|
|
|
|
bool m_doCopy;
|
|
|
|
wxString m_raName;
|
|
|
|
wxString m_errMsg;
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<TABLE_ENTRY> m_targetRAs;
|
2024-01-03 19:47:35 +01:00
|
|
|
MULTICHANNEL_TOOL* m_parentTool;
|
2025-04-19 16:33:08 +02:00
|
|
|
BOARD* m_board;
|
2024-01-03 19:47:35 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|