spiegel-keyman/developer/src/tike/main/Keyman.System.Debug.DebugUIStatus.pas

22 lines
334 B
ObjectPascal

{
* Keyman is copyright (C) SIL International. MIT License.
*
* Debug user interface status enumeration
}
unit Keyman.System.Debug.DebugUIStatus;
interface
type
TDebugUIStatus = (
duiInvalid,
duiPaused,
duiFocusedForInput,
duiReadyForInput,
duiDebugging,
duiClosing,
duiTest);
implementation
end.