Due to unforseen naming conflicts, the project has been rebranded under the ReFuel umbrealla and will now be referred to as Dashboard from now on. Other changes will occur to suit the library more for the engine whilst keeping the freestanding nature of the library. Rename folder. Rename to Dashboard.OpenTK Rename to Dashboard.Media.Defaults. Do the last renames and path fixes.
56 lines
770 B
C#
56 lines
770 B
C#
|
|
using System;
|
|
|
|
namespace Dashboard.Controls
|
|
{
|
|
public enum Dock
|
|
{
|
|
None,
|
|
Top,
|
|
Left,
|
|
Bottom,
|
|
Right,
|
|
Center
|
|
}
|
|
|
|
[Flags]
|
|
public enum Anchor
|
|
{
|
|
None = 0,
|
|
Top = 1 << 0,
|
|
Left = 1 << 1,
|
|
Bottom = 1 << 2,
|
|
Right = 1 << 3,
|
|
All = Top | Left | Bottom | Right
|
|
}
|
|
|
|
public enum Direction
|
|
{
|
|
Vertical,
|
|
Horizontal
|
|
}
|
|
|
|
public enum TextAlignment
|
|
{
|
|
Left,
|
|
Center,
|
|
Right,
|
|
Justify,
|
|
}
|
|
|
|
public enum VerticalAlignment
|
|
{
|
|
Top,
|
|
Center,
|
|
Bottom,
|
|
Justify,
|
|
}
|
|
|
|
public enum HorizontalAlignment
|
|
{
|
|
Left,
|
|
Center,
|
|
Right,
|
|
Justify
|
|
}
|
|
} |