Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1452 chris 1
#region --- License ---
2
/* Licensed under the MIT/X11 license.
3
 * Copyright (c) 2006-2008 the OpenTK Team.
4
 * This notice may not be removed from any source distribution.
5
 * See license.txt for licensing details.
6
 */
7
#endregion
8
 
9
using System;
10
using System.Collections.Generic;
11
using System.Text;
12
 
13
namespace OpenTK
14
{
15
    /// <summary>
16
    /// Enumerates available window states.
17
    /// </summary>
18
    public enum WindowState
19
    {
20
        /// <summary>
21
        /// The window is in its normal state.
22
        /// </summary>
23
        Normal = 0,
24
        /// <summary>
25
        /// The window is minimized to the taskbar (also known as 'iconified').
26
        /// </summary>
27
        Minimized,
28
        /// <summary>
29
        /// The window covers the whole working area, which includes the desktop but not the taskbar and/or panels.
30
        /// </summary>
31
        Maximized,
32
        /// <summary>
33
        /// The window covers the whole screen, including all taskbars and/or panels.
34
        /// </summary>
35
        Fullscreen
36
    }
37
}