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