2009-02-22 10:43:35 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Enumerates available window borders.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public enum WindowBorder
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The window has a resizable border. A window with a resizable border can be resized by the user or programmatically.
|
|
|
|
|
/// </summary>
|
2009-10-18 15:23:22 +00:00
|
|
|
|
Resizable = 1,
|
2009-02-22 10:43:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The window has a fixed border. A window with a fixed border can only be resized programmatically.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Fixed,
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The window does not have a border. A window with a hidden border can only be resized programmatically.
|
|
|
|
|
/// </summary>
|
|
|
|
|
Hidden
|
|
|
|
|
}
|
|
|
|
|
}
|