mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 00:59:43 +02:00
34 lines
857 B
C
34 lines
857 B
C
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
CommandManagerWindowClasses.h
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_COMMAND_MANAGER_WINDOW_CLASSES__
|
|
#define __AUDACITY_COMMAND_MANAGER_WINDOW_CLASSES__
|
|
|
|
/*
|
|
\brief By default, windows when focused override the association of the digits
|
|
and certain navigation keys with commands, but certain windows do not, and
|
|
those inherit this class.
|
|
*/
|
|
struct AUDACITY_DLL_API NonKeystrokeInterceptingWindow
|
|
{
|
|
virtual ~NonKeystrokeInterceptingWindow();
|
|
};
|
|
|
|
/*
|
|
\brief Top-level windows that do redirect keystrokes to the associated
|
|
project's CommandManager inherit this class.
|
|
*/
|
|
struct TopLevelKeystrokeHandlingWindow
|
|
{
|
|
virtual ~TopLevelKeystrokeHandlingWindow();
|
|
};
|
|
|
|
#endif
|