summaryrefslogtreecommitdiffstats
path: root/qtsharp/src/bindings/static/WidgetState.cs
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit90825e2392b2d70e43c7a25b8a3752299a933894 (patch)
treee33aa27f02b74604afbfd0ea4f1cfca8833d882a /qtsharp/src/bindings/static/WidgetState.cs
downloadtdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz
tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'qtsharp/src/bindings/static/WidgetState.cs')
-rw-r--r--qtsharp/src/bindings/static/WidgetState.cs53
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