diff options
Diffstat (limited to 'qtsharp/src/bindings/static/WidgetState.cs')
-rw-r--r-- | qtsharp/src/bindings/static/WidgetState.cs | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/qtsharp/src/bindings/static/WidgetState.cs b/qtsharp/src/bindings/static/WidgetState.cs new file mode 100644 index 00000000..8afc9024 --- /dev/null +++ b/qtsharp/src/bindings/static/WidgetState.cs @@ -0,0 +1,53 @@ +// QApplication.cs - A Qt to C# binding. +// +// Copyright (C) 2002 Adam Treat (manyoso@yahoo.com) +// +// This program is free software; you can redistribute it and/or +// modify it under the terms of the GNU General Public License +// as published by the Free Software Foundation; either version 2 +// of the License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +// +// Generated File. Do Not Modify. + +namespace Qt { + + using Qt; + using System; + using System.Runtime.InteropServices; + + public enum WidgetState { + WState_Created = 1, + WState_Disabled = 2, + WState_Visible = 4, + WState_ForceHide = 8, + WState_OwnCursor = 16, + WState_MouseTracking = 32, + WState_CompressKeys = 64, + WState_BlockUpdates = 128, + WState_InPaintEvent = 256, + WState_Reparented = 512, + WState_ConfigPending = 1024, + WState_Resized = 2048, + WState_AutoMask = 4096, + WState_Polished = 8192, + WState_DND = 16384, + WState_Reserved0 = 32768, + WState_Reserved1 = 65536, + WState_Reserved2 = 131072, + WState_Reserved3 = 262144, + WState_Maximized = 524288, + WState_Minimized = 1048576, + WState_ForceDisabled = 2097152, + WState_Exposed = 4194304, + WState_HasMouse = 8388608 + } +}
\ No newline at end of file |