annotate build/gui.txt @ 4:0a29ce1ae854

CMake build script. Small fixes in examples.
author SokoL_SD
date Wed, 13 May 2009 19:01:55 +0000
parents
children b8a79f9fba5a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
1
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
2 ## Qt Lib name.
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
3 set(lib_name QtGui)
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
4
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
5 ## Libraries linked to the cpp part (is active only if CPP_SHARED == true).
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
6 set(link_cpp ${cpp_core_implib} ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY})
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
7
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
8 ## Libraries linked to the d part (is active only if CPP_SHARED == true)..
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
9 set(link_d libqtdcore.a)
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
10
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
11 ## Module specific cpp files.
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
12 set(cpp_files)
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
13
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
14 ## Module specific d files.
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
15 set(d_files)
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
16
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
17 ## Classes.
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
18 set(classes
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
19 QPushButton
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
20 QFileIconProvider
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
21 QPaintDevice
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
22 QPicture
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
23 QPixmap
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
24 QImage
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
25 QBitmap
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
26 QStyle
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
27 QStyleOption
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
28 QDesktopWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
29 QMenu
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
30 QAction
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
31 QDropEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
32 QInputContext
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
33 QWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
34 QApplication
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
35 QIcon
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
36 QIconEngine
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
37 QPalette
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
38 QSizePolicy
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
39 QRegion
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
40 QFontMetrics
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
41 QCursor
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
42 QFont
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
43 QClipboard
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
44 QSessionManager
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
45 QPainterPath
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
46 QPainterPath_Element
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
47 QPaintEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
48 QTransform
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
49 QMatrix
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
50 QPainter
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
51 QDragLeaveEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
52 QPolygon
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
53 QInputEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
54 QDragEnterEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
55 QKeyEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
56 QHideEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
57 QWheelEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
58 QMoveEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
59 QActionGroup
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
60 QActionEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
61 QFocusEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
62 QIconEngineV2
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
63 QFontInfo
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
64 QStyleHintReturn
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
65 QColor
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
66 QDragMoveEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
67 QStyleOptionMenuItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
68 QTabletEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
69 QShowEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
70 QResizeEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
71 QBrush
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
72 QInputMethodEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
73 QContextMenuEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
74 QStyleOptionComplex
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
75 QMouseEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
76 QHelpEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
77 QTextFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
78 QKeySequence
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
79 QCloseEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
80 QGradient
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
81 QTextItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
82 QTextOption
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
83 QPolygonF
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
84 QPen
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
85 QTextCharFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
86 QTextListFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
87 QTextTableFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
88 QTextLength
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
89 QTextFrameFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
90 QTextTableCellFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
91 QTextBlockFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
92 QTextImageFormat
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
93 QFrame
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
94 QLabel
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
95 QAbstractButton
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
96 QMovie
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
97 QCheckBox
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
98 QRadioButton
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
99 QToolButton
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
100 QStyleOptionButton
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
101 QStyleOptionToolButton
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
102 QStyleOptionToolBar
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
103 QStyleOptionToolBox
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
104 QStyleOptionToolBoxV2
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
105 QStyleOptionSlider
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
106 QStyleOptionViewItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
107 QStyleOptionHeader
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
108 QStyleOptionDockWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
109 QStyleOptionTab
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
110 QButtonGroup
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
111 QLCDNumber
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
112 QAbstractSlider
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
113 QDial
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
114 QSlider
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
115 QScrollBar
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
116 QPaintEngine
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
117 QSpacerItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
118 QLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
119 QLayoutItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
120 QPaintEngineState
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
121 QBoxLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
122 QHBoxLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
123 QVBoxLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
124 QFormLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
125 QGridLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
126 QStackedLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
127 QAbstractScrollArea
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
128 QAbstractItemDelegate
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
129 QAbstractItemView
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
130 QTreeView
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
131 QTableView
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
132 QListView
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
133 QHeaderView
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
134 QItemSelection
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
135 QItemSelectionModel
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
136 QItemSelectionRange
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
137 QDirModel
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
138 QSplitter
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
139 QSplitterHandle
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
140 QListWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
141 QListWidgetItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
142 QMainWindow
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
143 QMenuBar
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
144 QToolBar
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
145 QMessageBox
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
146 QDockWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
147 QDialog
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
148 QStatusBar
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
149 QTabWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
150 QTabBar
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
151 QImageIOHandler
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
152 QImageReader
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
153 QTextFrame_iterator
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
154 QTextBlock_iterator
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
155 QPrinter
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
156 QTextLine
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
157 QTextEdit
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
158 QTextCursor
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
159 QTextFrame
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
160 QTextObject
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
161 QTextBlock
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
162 QTextDocument
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
163 QPrinterInfo
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
164 QTextList
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
165 QTextLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
166 QTextBlockUserData
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
167 QTextDocumentFragment
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
168 QTextTable
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
169 QAbstractTextDocumentLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
170 QTextBlockGroup
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
171 QTextObjectInterface
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
172 QTextInlineObject
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
173 QAbstractTextDocumentLayout_PaintContext
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
174 QTextLayout_FormatRange
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
175 QTextFragment
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
176 QTextTableCell
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
177 QPrintEngine
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
178 QStyleOptionTabWidgetFrame
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
179 QComboBox
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
180 QValidator
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
181 QCompleter
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
182 QLineEdit
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
183 QStyleOptionComboBox
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
184 QStyleOptionFrame
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
185 QFileDialog
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
186 QAbstractProxyModel
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
187 QGraphicsItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
188 QGraphicsItemGroup
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
189 QGraphicsWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
190 QGraphicsLayout
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
191 QGraphicsScene
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
192 QGraphicsSimpleTextItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
193 QGraphicsRectItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
194 QGraphicsPolygonItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
195 QGraphicsPixmapItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
196 QGraphicsPathItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
197 QGraphicsLineItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
198 QGraphicsEllipseItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
199 QGraphicsLayoutItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
200 QAbstractGraphicsShapeItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
201 QGraphicsTextItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
202 QGraphicsProxyWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
203 QGraphicsSceneEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
204 QGraphicsSceneWheelEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
205 QGraphicsSceneContextMenuEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
206 QGraphicsSceneMouseEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
207 QGraphicsSceneResizeEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
208 QStyleOptionGraphicsItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
209 QGraphicsSceneMoveEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
210 QGraphicsSceneHoverEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
211 QGraphicsSceneDragDropEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
212 QGraphicsSceneHelpEvent
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
213 QGraphicsView
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
214 QTableWidgetSelectionRange
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
215 QStandardItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
216 QUndoStack
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
217 QTreeWidgetItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
218 QTreeWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
219 QTextEdit_ExtraSelection
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
220 QTableWidgetItem
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
221 QTableWidget
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
222 QTextOption_Tab
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
223 QMdiSubWindow
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
224 QInputMethodEvent_Attribute
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
225 QMdiArea
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
226 QUndoCommand
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
227 QStandardItemModel
0a29ce1ae854 CMake build script.
SokoL_SD
parents:
diff changeset
228 )