Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FrameFlags.cs « Metacity « libsteticui « MonoDevelop.GtkCore « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bc6172fbe850590845aedd892da055885a440787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.

namespace Stetic.Metacity
{

	using System;
	using System.Runtime.InteropServices;

#region Autogenerated code
	[Flags]
	internal enum FrameFlags {

		AllowsDelete = 1 << 0,
		AllowsMenu = 1 << 1,
		AllowsMinimize = 1 << 2,
		AllowsMaximize = 1 << 3,
		AllowsVerticalResize = 1 << 4,
		AllowsHorizontalResize = 1 << 5,
		HasFocus = 1 << 6,
		Shaded = 1 << 7,
		Stuck = 1 << 8,
		Maximized = 1 << 9,
		AllowsShade = 1 << 10,
		AllowsMove = 1 << 11,
		Fullscreen = 1 << 12,
		IsFlashing = 1 << 13,
	}
#endregion
}