mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-10 19:05:31 +00:00
22 lines
334 B
ObjectPascal
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.
|