// TQApplication.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 } }