mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-15 02:33:15 +02:00
Recommendation is to avoid using the year nomenclature as this information is already encoded in the git repo. Avoids needing to repeatly update. Also updates AUTHORS.txt from current repo with contributor names
76 lines
2.3 KiB
C++
76 lines
2.3 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright The KiCad Developers, see AUTHORS.txt for contributors.
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
|
|
#ifndef _DIALOG_PLUGIN_OPTIONS_H_
|
|
#define _DIALOG_PLUGIN_OPTIONS_H_
|
|
|
|
#include <dialog_plugin_options_base.h>
|
|
#include <core/utf8.h>
|
|
/**
|
|
* DIALOG_PLUGIN_OPTIONS
|
|
* is an options editor in the form of a two column name/value
|
|
* spreadsheet like (table) UI.
|
|
*/
|
|
class DIALOG_PLUGIN_OPTIONS : public DIALOG_PLUGIN_OPTIONS_BASE
|
|
{
|
|
public:
|
|
DIALOG_PLUGIN_OPTIONS( wxWindow* aParent, const wxString& aNickname,
|
|
const std::map<std::string, UTF8>& aPluginOptions, const wxString& aFormattedOptions,
|
|
wxString* aResult );
|
|
|
|
~DIALOG_PLUGIN_OPTIONS() override;
|
|
|
|
bool TransferDataToWindow() override;
|
|
|
|
bool TransferDataFromWindow() override;
|
|
|
|
private:
|
|
const wxString& m_callers_options;
|
|
wxString* m_result;
|
|
std::map<std::string, UTF8> m_choices;
|
|
wxString m_initial_help;
|
|
bool m_grid_widths_dirty;
|
|
|
|
int appendRow();
|
|
|
|
void appendOption();
|
|
|
|
//-----<event handlers>------------------------------------------------------
|
|
void onListBoxItemSelected( wxCommandEvent& event ) override;
|
|
|
|
void onListBoxItemDoubleClicked( wxCommandEvent& event ) override;
|
|
|
|
void onAppendOption( wxCommandEvent& ) override;
|
|
|
|
void onAppendRow( wxCommandEvent& ) override;
|
|
|
|
void onDeleteRow( wxCommandEvent& ) override;
|
|
|
|
void onGridCellChange( wxGridEvent& aEvent ) override;
|
|
|
|
void onUpdateUI( wxUpdateUIEvent& ) override;
|
|
|
|
void onSize( wxSizeEvent& aEvent ) override;
|
|
};
|
|
|
|
|
|
#endif // _DIALOG_PLUGIN_OPTIONS_H_
|
|
|