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;
39class wxSearchCtrl;
40
41
43{
44public:
45 PANEL_HOTKEYS_EDITOR( EDA_BASE_FRAME* aFrame, wxWindow* aWindow, bool aReadOnly );
47
48 std::vector<TOOL_ACTION*>& ActionsList() { return m_actions; }
49
50 bool TransferDataToWindow() override;
51 bool TransferDataFromWindow() override;
52
53 void ResetPanel() override;
54
55 wxString GetResetTooltip() const override
56 {
57 return _( "Reset all hotkeys to the built-in KiCad defaults" );
58 }
59
60private:
66 void installButtons( wxSizer* aSizer );
67
73 void OnFilterSearch( wxCommandEvent& aEvent );
74
79 void ImportHotKeys();
80
87 void dumpHotkeys();
88
89 wxSearchCtrl* m_filterSearch;
90
91protected:
94
95 std::vector<TOOL_ACTION*> m_actions;
98};
99
100
101#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:66
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.
wxSearchCtrl * m_filterSearch
bool TransferDataFromWindow() override
A wxPanel that is designed to be reset in a standard manner.
Master controller class:
Definition: tool_manager.h:57
#define _(s)