From 4475dee373b8c9376153684b8b2a246c53d5b7ed Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Sat, 18 Apr 2020 02:05:16 -0500 Subject: [PATCH] Forgot to add new file --- src/menus/WindowMenus.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/menus/WindowMenus.h diff --git a/src/menus/WindowMenus.h b/src/menus/WindowMenus.h new file mode 100644 index 000000000..854752cfa --- /dev/null +++ b/src/menus/WindowMenus.h @@ -0,0 +1,22 @@ +#include "../Audacity.h" + +#include "../commands/CommandManager.h" + +#ifdef __WXMAC__ + +/// Namespace for functions for window management (mac only?) +namespace WindowActions { + + // Range of assigned menu IDs + static const wxWindowID ID_BASE = 30000; + static const wxWindowID ID_LAST = 30999; + + // Exported helper functions + void Refresh(); +}; + +#else + +// Not WXMAC. + +#endif