xlang v4.0 Release
程序设计语言基础库文档
载入中...
搜索中...
未找到
QtitanDef.x
浏览该文件的文档.
1//xlang Source, Name:QtitanDef.x
2//Date: Mon Feb 19:14:19 2021
3
4package Qtitan{
5 public enum SortOrder
6 {
7 SortNone,
8 SortAscending,
9 SortDescending
10 };
11
12 public enum ScrollBarsMode
13 {
18 ScrollAuto
19 };
20
21 public enum LinesStyle
22 {
23 LinesNone = 0,
29 LinesVertical2D
30 };
31
32 public enum ScrollItemStyle
33 {
35 ScrollByPixel
36 };
37
38 public enum HighlightEffect
39 {
41 AlphaEffect
42 };
43
44 public enum ItemPosition
45 {
46 AtNone = 0,
48 AtEnd
49 };
50
51 public enum LayoutArea
52 {
53 DefaultArea = 0,
57 BottomArea
58 };
59
60 public enum BestFitModeFlag
61 {
62 FitToHeader = 1,
63 FitToViewContent = 2,
64 FitToContent = 4,
65 FitToHeaderAndViewContent = FitToHeader | FitToViewContent,
66 FitToHeaderAndContent = FitToHeader | FitToContent
67 };
68
69 public enum LayoutType
70 {
71 Split = 1,
72 Tabbed = 2,
73 AutoHide = 3,
74 Document = 4
75 };
76
77 public enum Theme
78 {
81 Light
82 };
83
84 public enum SelectionOperator
85 {
86 Empty = 0x0000,
87 Clear = 0x0001,
88 Select = 0x0002,
89 Unselect = 0x0004,
90 Invert = 0x0008,
91 StartCurrent = 0x0010
92 };
93
94 public enum EditStrategy
95 {
97 OnRowChange
98 };
99
100 public enum IconApperance
101 {
102 IconInvisible = 0,
105 IconAlignRight
106 };
107
108 public enum ExpandingMode
109 {
110 Expanded = 0,
111 Compact = 1,
112 Minimal = 2,
113 Popup = 3
114 };
115
116 public enum TransitionMode
117 {
120 Suppress
121 };
122
123 public enum ItemDataRoleEx
124 {
125 ComboBoxRole = Qt.ItemDataRole.UserRole + 100,
126 QueryIndexRole
127 };
128
140
141 public enum DockPanelArea
142 {
143 NoDockPanelArea = 0x00,
144 LeftDockPanelArea = 0x01,
145 RightDockPanelArea = 0x02,
146 TopDockPanelArea = 0x04,
147 BottomDockPanelArea = 0x08,
148 InsideDockPanelArea = 0x10,
149 DockPanelArea_Mask = 0xff,
150 AllDockPanelAreas = DockPanelArea_Mask
151 };
152
153 public enum DockBarArea // <-DockBarArea
154 {
155 DockBarNone = 0,
160 DockBarFloat
161 };
162
163 public enum SysButtonKind
164 {
167 BackButton
168 };
169
170 public enum WidgetAlign
171 {
174 AlignClient
175 };
176
177 public enum DockPanelFeature
178 {
179 DockPanelClosable = 0x0001,
180 DockPanelHideable = 0x0002,
181 DockPanelFloatable = 0x0004,
182 DockPaneNoCaption = 0x0008,
183 DockPanelMenuButton = 0x0010,
184
185 DockPanelDockable = 0x0020,
186 DockPanelFloatableByTabDoubleClick = 0x0040,
187 DockPanelFloatableByCaptionDoubleClick = 0x0080,
188 DockPanelHoverShow = 0x0400,
189
190 DockPanelFeatureMask = 0x0fff,
191 AllDockPanelFeatures = DockPanelClosable | DockPanelHideable | DockPanelFloatable,
192 NoDockPanelFeatures = 0x0000
193 };
194};