2024-10-22 22:29:14 -04:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2024 Mark Roszko <mark.roszko@gmail.com>
|
2025-01-01 13:30:11 -08:00
|
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
2024-10-22 22:29:14 -04: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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2025-01-04 13:06:09 +00:00
|
|
|
#include <dialogs/dialog_executecommand_job_settings_base.h>
|
2024-10-22 22:29:14 -04:00
|
|
|
|
|
|
|
class JOB_SPECIAL_EXECUTE;
|
2025-03-20 16:58:47 +00:00
|
|
|
class SCINTILLA_TRICKS;
|
|
|
|
|
2024-10-22 22:29:14 -04:00
|
|
|
|
2025-01-04 13:06:09 +00:00
|
|
|
class DIALOG_EXECUTECOMMAND_JOB_SETTINGS: public DIALOG_EXECUTECOMMAND_JOB_SETTINGS_BASE
|
2024-10-22 22:29:14 -04:00
|
|
|
{
|
|
|
|
public:
|
2025-01-04 13:06:09 +00:00
|
|
|
DIALOG_EXECUTECOMMAND_JOB_SETTINGS( wxWindow* aParent, JOB_SPECIAL_EXECUTE* aJob );
|
2025-03-20 16:58:47 +00:00
|
|
|
~DIALOG_EXECUTECOMMAND_JOB_SETTINGS();
|
2024-10-22 22:29:14 -04:00
|
|
|
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
|
2025-03-20 16:58:47 +00:00
|
|
|
private:
|
|
|
|
void OnRecordOutputClicked( wxCommandEvent& event ) override;
|
|
|
|
|
2024-10-22 22:29:14 -04:00
|
|
|
private:
|
|
|
|
JOB_SPECIAL_EXECUTE* m_job;
|
|
|
|
|
2025-03-20 16:58:47 +00:00
|
|
|
SCINTILLA_TRICKS* m_scintillaTricks;
|
2024-10-22 22:29:14 -04:00
|
|
|
};
|