48 lines
986 B
C#
48 lines
986 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebWindowTest
|
|
{
|
|
public partial class LayoutConst
|
|
{
|
|
public enum CompileStep
|
|
{
|
|
Tree = 0,
|
|
Frame = 1,
|
|
Split,
|
|
Sash,
|
|
Fill,
|
|
General,
|
|
ArcElement
|
|
}
|
|
|
|
public enum PositionJoints
|
|
{
|
|
BL = 0, // Bottom Left
|
|
BR = 1, // Bottom Right
|
|
TR, // Top Right
|
|
TL // Top Left
|
|
}
|
|
|
|
public enum DataAction
|
|
{
|
|
/// <summary>
|
|
/// Nessuna richiesta
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// Reset dizionario shape
|
|
/// </summary>
|
|
ResetDictShape,
|
|
/// <summary>
|
|
/// Reset dizionario HwOptions
|
|
/// </summary>
|
|
ResetHwOpt
|
|
}
|
|
}
|
|
}
|