2020-03-23 10:44:02 -07:00
|
|
|
#pragma once
|
|
|
|
|
#include "keyboardmanager/common/KeyboardManagerState.h"
|
2020-04-09 09:20:19 -07:00
|
|
|
#include "keyboardmanager/common/Shortcut.h"
|
2020-03-23 10:44:02 -07:00
|
|
|
#include "keyboardmanager/common/Helpers.h"
|
|
|
|
|
|
|
|
|
|
// Function to create the Edit Shortcuts Window
|
2020-04-21 14:14:50 -07:00
|
|
|
void createEditShortcutsWindow(HINSTANCE hInst, KeyboardManagerState& keyboardManagerState);
|
2020-04-14 09:24:11 -07:00
|
|
|
|
2020-04-29 17:58:31 -07:00
|
|
|
// Function to check if there is already a window active if yes bring to foreground
|
2020-05-12 15:58:11 -07:00
|
|
|
bool CheckEditShortcutsWindowActive();
|
|
|
|
|
|
|
|
|
|
// Function to close any active Edit Shortcuts window
|
|
|
|
|
void CloseActiveEditShortcutsWindow();
|