KiCad PCB EDA Suite
Loading...
Searching...
No Matches
panel_hotkeys_editor.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2004-2021 KiCad Developers, see AUTHORS.TXT for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 3
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
24#ifndef PANEL_HOTKEYS_EDITOR_H
25#define PANEL_HOTKEYS_EDITOR_H
26
27#include <hotkeys_basic.h>
28#include <hotkey_store.h>
29
32
33#include "wx/panel.h"
34
35
36class wxPanel;
37class wxSizer;
38class TOOL_MANAGER;
39
40
42{
43public:
44 PANEL_HOTKEYS_EDITOR( EDA_BASE_FRAME* aFrame, wxWindow* aWindow, bool aReadOnly );
45
46 std::vector<TOOL_ACTION*>& ActionsList() { return m_actions; }
47
48 bool TransferDataToWindow() override;
49 bool TransferDataFromWindow() override;
50
51 void ResetPanel() override;
52
53 wxString GetResetTooltip() const override
54 {
55 return _( "Reset all hotkeys to the built-in KiCad defaults" );
56 }
57
58private:
64 void installButtons( wxSizer* aSizer );
65
71 void OnFilterSearch( wxCommandEvent& aEvent );
72
77 void ImportHotKeys();
78
85 void dumpHotkeys();
86
87protected:
90
91 std::vector<TOOL_ACTION*> m_actions;
94};
95
96
97#endif // PANEL_HOTKEYS_EDITOR_H
The base frame for deriving all KiCad main window classes.
A class that contains a set of hotkeys, arranged into "sections" and provides some book-keeping funct...
Definition: hotkey_store.h:63
wxString GetResetTooltip() const override
Get the tooltip the reset button should display when showing this panel.
void OnFilterSearch(wxCommandEvent &aEvent)
Handle a change in the hotkey filter text.
void ResetPanel() override
Reset the contents of this panel.
std::vector< TOOL_ACTION * > m_actions
void installButtons(wxSizer *aSizer)
Install the button panel (global reset/default, import/export)
WIDGET_HOTKEY_LIST * m_hotkeyListCtrl
std::vector< TOOL_ACTION * > & ActionsList()
EDA_BASE_FRAME * m_frame
bool TransferDataToWindow() override
void ImportHotKeys()
Put up a dialog allowing the user to select a hotkeys file and then overlays those hotkeys onto the c...
void dumpHotkeys()
Dump all actions and their hotkeys to a text file for inclusion in documentation.
bool TransferDataFromWindow() override
A wxPanel that is designed to be reset in a standard manner.
Master controller class:
Definition: tool_manager.h:55
#define _(s)