35 lines
709 B
C#
35 lines
709 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace WorkflowConfigurator
|
|||
|
|
{
|
|||
|
|
/// <summary> Specifies the way a window or control is redrawn </summary>
|
|||
|
|
public enum RedrawType
|
|||
|
|
{
|
|||
|
|
FromScratch,
|
|||
|
|
Iterative,
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary> Return value for FinishEditing() function. Caller does not have to care for details/UI/message boxes </summary>
|
|||
|
|
public enum EditFinishedInfo
|
|||
|
|
{
|
|||
|
|
NoChanges,
|
|||
|
|
DataChanged,
|
|||
|
|
Cancel,
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// When state of UI changes
|
|||
|
|
/// </summary>
|
|||
|
|
public enum Reason
|
|||
|
|
{
|
|||
|
|
NewProcess,
|
|||
|
|
CopyProcess,
|
|||
|
|
OpenProcess,
|
|||
|
|
UnlockBtn,
|
|||
|
|
PrepareBtn,
|
|||
|
|
TestBtn,
|
|||
|
|
ReleaseBtn,
|
|||
|
|
DeactivateBtn,
|
|||
|
|
}
|
|||
|
|
}
|