195 lines
6.0 KiB
C++
195 lines
6.0 KiB
C++
/*
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
*
|
|
* Copyright (C) 2016 Chris Pavlina <pavlina.chris@gmail.com>
|
|
* Copyright (C) 2016-2017 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, 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
|
|
*/
|
|
|
|
/**
|
|
* @file widget_hotkey_list.h
|
|
*/
|
|
|
|
#ifndef __widget_hotkey_list__
|
|
#define __widget_hotkey_list__
|
|
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include <wx/treelist.h>
|
|
#include <widgets/two_column_tree_list.h>
|
|
|
|
#include <hotkeys_basic.h>
|
|
#include <hotkey_store.h>
|
|
|
|
|
|
class WIDGET_HOTKEY_CLIENT_DATA;
|
|
|
|
class WIDGET_HOTKEY_LIST : public TWO_COLUMN_TREE_LIST
|
|
{
|
|
HOTKEY_STORE& m_hk_store;
|
|
bool m_readOnly;
|
|
|
|
wxTreeListItem m_context_menu_item;
|
|
|
|
/**
|
|
* Method GetHKClientData
|
|
* Return the WIDGET_HOTKEY_CLIENT_DATA for the given item, or NULL if the
|
|
* item is invalid.
|
|
*/
|
|
WIDGET_HOTKEY_CLIENT_DATA* GetHKClientData( wxTreeListItem aItem );
|
|
|
|
/**
|
|
* Get the WIDGET_HOTKEY_CLIENT_DATA form an item and assert if it isn't
|
|
* found. This is for use when the data not being present indicates an
|
|
* error.
|
|
*/
|
|
WIDGET_HOTKEY_CLIENT_DATA* getExpectedHkClientData( wxTreeListItem aItem );
|
|
|
|
/**
|
|
* Method UpdateFromClientData
|
|
* Refresh the visible text on the widget from the rows' client data objects.
|
|
*/
|
|
void UpdateFromClientData();
|
|
|
|
/**
|
|
* Method updateShownItems
|
|
*
|
|
* Update the items shown in the widget based on a given filter string.
|
|
*
|
|
* @param aFilterStr the string to filter with. Empty means no filter.
|
|
*/
|
|
void updateShownItems( const wxString& aFilterStr );
|
|
|
|
/**
|
|
* Attempt to change the given hotkey to the given key code.
|
|
*
|
|
* If the hotkey conflicts, the user is prompted to change anyway (and
|
|
* in doing so, unset the conflicting key), or cancel the attempt.
|
|
*
|
|
* @param aHotkey the change-able hotkey to try to change
|
|
* @param aKey the key code to change it to
|
|
*/
|
|
void changeHotkey( HOTKEY& aHotkey, long aKey );
|
|
|
|
protected:
|
|
|
|
/**
|
|
* Method EditItem
|
|
* Prompt the user for a new hotkey given a list item.
|
|
*/
|
|
void EditItem( wxTreeListItem aItem );
|
|
|
|
/**
|
|
* Method ResetItem
|
|
* Reset the item to either the default, the value when the dialog was opened, or none.
|
|
*/
|
|
void ResetItem( wxTreeListItem aItem, int aResetId );
|
|
|
|
/**
|
|
* Method OnActivated
|
|
* Handle activation of a row.
|
|
*/
|
|
void OnActivated( wxTreeListEvent& aEvent );
|
|
|
|
/**
|
|
* Method OnContextMenu
|
|
* Handle right-click on a row.
|
|
*/
|
|
void OnContextMenu( wxTreeListEvent& aEvent );
|
|
|
|
/**
|
|
* Method OnMenu
|
|
* Handle activation of a context menu item.
|
|
*/
|
|
void OnMenu( wxCommandEvent& aEvent );
|
|
|
|
/**
|
|
* Function OnSize
|
|
* Handle resizing of the control. Overrides the buggy wxTreeListCtrl::OnSize.
|
|
*/
|
|
void OnSize( wxSizeEvent& aEvent );
|
|
|
|
/**
|
|
* Method ResolveKeyConflicts
|
|
* Check if we can set a hotkey, and prompt the user if there is a conflict between
|
|
* keys. The key code should already have been checked that it's not for the same
|
|
* entry as it's current in, or else this method will prompt for the self-change.
|
|
*
|
|
* The method will do conflict resolution depending on aSectionTag.
|
|
* g_CommonSectionTag means the key code must only be checkd with the aSectionTag
|
|
* section and g_CommonSectionTag section.
|
|
*
|
|
* @param aKey - key to check
|
|
* @param aActionName - name of the action into which the key is proposed to be installed
|
|
*
|
|
* @return true iff the user accepted the overwrite or no conflict existed
|
|
*/
|
|
bool ResolveKeyConflicts( TOOL_ACTION* aAction, long aKey );
|
|
|
|
public:
|
|
/**
|
|
* Constructor WIDGET_HOTKEY_LIST
|
|
* Create a WIDGET_HOTKEY_LIST.
|
|
*
|
|
* @param aParent - parent widget
|
|
* @param aHotkeys - EDA_HOTKEY_CONFIG data - a hotkey store is constructed
|
|
* from this.
|
|
*/
|
|
WIDGET_HOTKEY_LIST( wxWindow* aParent, HOTKEY_STORE& aHotkeyStore, bool aReadOnly );
|
|
|
|
/**
|
|
* Method ApplyFilterString
|
|
* Apply a filter string to the hotkey list, selecting which hotkeys
|
|
* to show.
|
|
*
|
|
* @param aFilterStr the string to filter by
|
|
*/
|
|
void ApplyFilterString( const wxString& aFilterStr );
|
|
|
|
/**
|
|
* Set hotkeys in the control to default or original values.
|
|
* @param aResetToDefault if true,.reset to the defaults inherent to the
|
|
* hotkeym, else reset to the value they had when the dialog was invoked.
|
|
*/
|
|
void ResetAllHotkeys( bool aResetToDefault );
|
|
|
|
/**
|
|
* Method TransferDataToControl
|
|
* Load the hotkey data from the store into the control.
|
|
* @return true iff the operation was successful
|
|
*/
|
|
bool TransferDataToControl();
|
|
|
|
/**
|
|
* Method TransferDataFromControl
|
|
* Save the hotkey data from the control.
|
|
* @return true iff the operation was successful
|
|
*/
|
|
bool TransferDataFromControl();
|
|
|
|
/**
|
|
* Static method MapKeypressToKeycode
|
|
* Map a keypress event to the correct key code for use as a hotkey.
|
|
*/
|
|
static long MapKeypressToKeycode( const wxKeyEvent& aEvent );
|
|
};
|
|
|
|
#endif // __widget_hotkey_list__
|