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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// TTQApplication.cs - A Qt to C# binding.
//
// Copyright (C) 2002 Adam Treat ([email protected])
//
// 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
}
}
|