New keyboard shortcuts dialog -> Fixed items order and use wxNotebook on top

This commit is contained in:
Enrico Turri 2020-02-12 08:49:56 +01:00
parent 742c6b6746
commit b5152e4126
2 changed files with 29 additions and 25 deletions

View file

@ -14,12 +14,12 @@ namespace GUI {
class KBShortcutsDialog : public DPIDialog
{
typedef std::pair<std::string, std::string> Shortcut;
typedef std::vector< Shortcut > Shortcuts;
typedef std::vector<std::pair<wxString, Shortcuts>> ShortcutsVec;
typedef std::vector<Shortcut> Shortcuts;
typedef std::vector<std::pair<wxString, Shortcuts>> ShortcutsVec;
ShortcutsVec m_full_shortcuts;
ScalableBitmap m_logo_bmp;
std::vector<wxStaticBitmap*> m_head_bitmaps;
ShortcutsVec m_full_shortcuts;
ScalableBitmap m_logo_bmp;
wxStaticBitmap* m_header_bitmap;
public:
KBShortcutsDialog();