mudlet/docs/libmudlet-widgets-report.md
Vadim Peretokin 2d4d9b9ca5
infrastructure: harden the Widgets audit script and refresh its baseline (#9516)
#### Brief overview of PR changes/additions

Follow-up to #9508. Hardens `cmake/audit-core-widgets.sh` against five
silent-wrong-count failure modes (each reproduced by running the script
against crafted inputs), and refreshes the committed baseline/report to
the current count.

- **CMakeLists parser** now strips `#` comments and a trailing `\r`, and
tracks multi-line `list(APPEND mudlet_SRCS ...)` blocks. Previously a
`)` inside a comment truncated the file list, a commented-out filename
got audited, a wrapped `APPEND` dropped its continuation lines, and a
CRLF checkout only partially parsed.
- **Comment/string stripper** now matches a `/* ... */` comment whose
body contains `*` (the `/** ... */` one-liner that used to latch the
scanner into comment mode and silently swallow the rest of a file), and
hard-fails (exit 2) on an unterminated comment at EOF rather than
under-counting.
- **`--enforce`** is now a real gate: a source file listed in
`CMakeLists.txt` but missing from disk is fatal, and the baseline is
strict-parsed (bare integer on line 1). The old `tr -cd 0-9` pooled
every digit in the file, so a `# updated 2026-07-20` comment produced a
baseline like `20260720158` that out-ranked any real count and passed
forever.
- **Qt sanity**: if the `QtGui`/`QtCore` header listings come out empty
while `QtWidgets` is non-empty (a partial/broken Qt), the script aborts
instead of miscounting relocated forwarder headers (`qaction.h`,
`qshortcut.h`, ...) as Widgets dependencies.
- **Baseline + report refreshed** from `160` to `158`: #9507 decoupled
the telnet engine from UI dialogs after the original report was
generated, so `ctelnet.cpp`/`ctelnet.h` are now clean.

The script stays POSIX `sh`, deterministic (`LC_ALL=C`), and fast
(~0.2s). The parser change is count-neutral: old and new parsers produce
an identical 392-file list on the current `src/CMakeLists.txt`.

#### Motivation for adding to Mudlet

The audit becomes a CI gate once the count reaches 0 (#8681, #9011).
Before that, it must never report a wrong number quietly - every one of
these paths could have made the count drift (up or down) with no visible
error, which would erode trust in the gate. Loud failure beats a
silently passing check.

#### Other info (issues closed, discussion etc)

Follow-up to #9508. No build required (shell + docs only). Self-tested
with a 17-assertion harness that crafts each proven failure input and
confirms the fixed script returns the correct count or exits 2, while
the pre-fix script mis-parses.

**Test case:**

```
bash cmake/audit-core-widgets.sh --summary
# expected: mudlet_core Qt Widgets audit: 158 of 392 files depend on Qt Widgets

bash cmake/audit-core-widgets.sh --enforce
# expected: mudlet_core Qt Widgets audit: 158 offending files (baseline 158).  (exit 0)
```

Assisted-by: Claude:claude-opus-4-8
2026-07-26 18:05:59 +02:00

21 KiB

libmudlet: Qt Widgets dependency audit (mudlet_core)

Measures how many source files in the mudlet_core static-library target (src/CMakeLists.txt) still depend on Qt Widgets. Part of the libmudlet refactor (#8681, #9011): the goal is to drive this count to 0 so mudlet_core can build with Qt Widgets absent, after which this audit becomes an enforcing CI guard (--enforce).

A file is counted as depending on Qt Widgets if it either:

  • directly #includes a QtWidgets-module header (bare <QWidget>, <qwidget.h>, or module-qualified <QtWidgets/...> / <QtWidgets>), or
  • references a QtWidgets class symbol (e.g. QApplication, QSizePolicy) even when the header arrives transitively - those symbols are what break once Qt Widgets is removed.

The QtWidgets header and class sets are derived from the installed Qt's module layout (headers in QtWidgets/ that are not also in QtGui//QtCore/), so Qt6 relocations such as QAction/QShortcut -> QtGui are excluded automatically. The offending-file count is stable across Qt 6.x releases.

Genuine widget classes (the dlg*, T*-widget, and mudlet UI files) are included in the count; the refactor plan moves those wholesale to a future mudlet_app target rather than de-widgeting them, so the count drops through a mix of moving and refactoring.

Regenerate: bash cmake/audit-core-widgets.sh > docs/libmudlet-widgets-report.md CI guard: bash cmake/audit-core-widgets.sh --enforce (baseline in cmake/core-widgets-baseline.txt)

Summary

Metric Count
Source files in mudlet_core 392
Files depending on Qt Widgets 158
Clean files 234
Committed baseline 158

Offending files

Sorted by total references (includes + symbols), then by path. Inc = direct QtWidgets header includes; Sym = QtWidgets class-symbol references.

File Inc Sym Widget references
dlgTriggerEditor.cpp 15 593 QCheckBox, QAbstractButton, QColorDialog, QDialogButtonBox, QFileDialog, QFrame, QHBoxLayout, QLabel, QMessageBox, QScrollBar, QSpinBox, QStyle, QToolButton, QToolBar, QVBoxLayout, QStatusBar, QWidget, QSizePolicy, QGroupBox, QLineEdit, QListWidget, QPushButton, QMainWindow, QSplitter, QTreeWidget, QComboBox, QTimeEdit, QPlainTextEdit, QMenu, QTreeWidgetItem, QTreeWidgetItemIterator, QListWidgetItem, QApplication
dlgProfilePreferences.cpp 9 266 QColorDialog, QDoubleSpinBox, QFileDialog, QFontDialog, QMessageBox, QTableWidget, QToolBar, QLineEdit, QHBoxLayout, QWidget, QDialog, QRadioButton, QCheckBox, QTabWidget, QAbstractButton, QComboBox, QPushButton, QFontComboBox, QSpinBox, QMenu, QLabel, QGridLayout, QKeySequenceEdit, QApplication, QTableWidgetItem, QToolButton
T2DMap.cpp 12 143 QMenu, QWidget, QAbstractItemView, QDialog, QLabel, QListWidget, QVBoxLayout, QHBoxLayout, QPushButton, QInputDialog, QMessageBox, QComboBox, QSizePolicy, QAbstractScrollArea, QFrame, QHeaderView, QTreeWidget, QTreeWidgetItem, QLineEdit, QCheckBox, QAbstractButton, QGridLayout, QFileDialog, QDialogButtonBox, QListWidgetItem, QColorDialog
dlgRoomExits.cpp 0 152 QStyledItemDelegate, QWidget, QStyleOptionViewItem, QSpinBox, QGroupBox, QLineEdit, QDialog, QTreeWidgetItem, QCheckBox, QRadioButton, QAbstractButton, QTreeWidget, QButtonGroup
dlgPackageExporter.cpp 3 138 QFileDialog, QInputDialog, QMessageBox, QWidget, QDialog, QTreeWidgetItem, QTreeWidget, QDialogButtonBox, QAbstractButton, QPushButton, QLineEdit, QTextEdit, QComboBox, QTreeWidgetItemIterator, QApplication, QListView, QAbstractItemView, QTreeView
mudlet.cpp 11 89 QApplication, QFileDialog, QMessageBox, QScrollBar, QSplitter, QStyleFactory, QTableWidget, QToolBar, QToolButton, QToolTip, QStyle, QMainWindow, QSizePolicy, QWidget, QTabBar, QVBoxLayout, QHBoxLayout, QMenu, QDockWidget, QDialog, QLabel
dlgConnectionProfiles.cpp 1 98 QColorDialog, QWidget, QDialog, QAbstractItemView, QAbstractButton, QDialogButtonBox, QPushButton, QTextBrowser, QLineEdit, QCheckBox, QPlainTextEdit, QListWidget, QListView, QListWidgetItem, QGroupBox, QVBoxLayout, QLabel, QMenu, QFileDialog, QApplication
TConsole.cpp 7 87 QAccessibleWidget, QHBoxLayout, QLabel, QLineEdit, QMessageBox, QScrollBar, QSplitter, QWidget, QToolButton, QSizePolicy, QVBoxLayout, QAbstractButton, QMenu, QAbstractSlider, QApplication
dlgTriggerEditor.h 5 63 QDialog, QDockWidget, QListWidgetItem, QScrollArea, QTreeWidget, QLabel, QFrame, QToolButton, QMainWindow, QTreeWidgetItem, QWidget, QToolBar, QSplitter
dlgPackageExporter.h 2 59 QDialog, QTextEdit, QGroupBox, QTreeWidget, QTreeWidgetItem, QWidget, QPushButton
TDetachedWindow.cpp 11 48 QVBoxLayout, QMenuBar, QMenu, QApplication, QToolBar, QToolButton, QLabel, QStackedWidget, QSizePolicy, QWidget, QDockWidget, QMainWindow, QTabBar
dlgRoomProperties.cpp 2 51 QColorDialog, QMenu, QWidget, QDialog, QLineEdit, QComboBox, QAbstractButton, QSpinBox, QListWidgetItem, QVBoxLayout, QSizePolicy, QListWidget, QListView, QHBoxLayout, QPushButton
dlgMapper.cpp 10 41 QFileDialog, QFrame, QLabel, QListWidget, QMenu, QMessageBox, QProgressBar, QProgressDialog, QPushButton, QVBoxLayout, QWidget, QAbstractButton, QToolButton, QComboBox, QApplication, QDialog, QSizePolicy
dlgRoomExits.h 2 49 QDialog, QStyledItemDelegate, QCheckBox, QWidget, QStyleOptionViewItem, QLineEdit, QTreeWidgetItem, QRadioButton, QSpinBox
dlgNotepad.cpp 8 36 QApplication, QHBoxLayout, QInputDialog, QLabel, QLineEdit, QMenu, QPlainTextEdit, QToolButton, QWidget, QTabWidget, QMainWindow, QTextEdit
dlgPackageManager.cpp 3 40 QFileDialog, QMessageBox, QProgressDialog, QWidget, QDialog, QLineEdit, QListWidget, QAbstractButton, QListWidgetItem, QButtonGroup
TTreeWidget.cpp 2 37 QHeaderView, QToolTip, QWidget, QTreeWidget, QAbstractItemView, QTreeWidgetItem, QStyle
dlgMapLabel.cpp 3 34 QColorDialog, QFileDialog, QFontDialog, QWidget, QDialog, QComboBox, QToolButton, QCheckBox, QPlainTextEdit, QPushButton, QApplication
TMxpFrameManager.cpp 4 33 QFrame, QMainWindow, QSizePolicy, QVBoxLayout, QTabWidget, QWidget
updater/UpdateDialog.cpp 5 31 QAbstractButton, QApplication, QMessageBox, QTextBrowser, QToolButton, QWidget, QDialog, QPushButton, QCheckBox
TTextEdit.cpp 5 30 QApplication, QScrollBar, QLabel, QToolTip, QWidgetAction, QWidget, QAbstractSlider, QMenu
mudlet.h 2 31 QMainWindow, QSystemTrayIcon, QMenu, QLabel, QListWidget, QPushButton, QSplitter, QTableWidget, QTableWidgetItem, QTextEdit, QToolButton, QDockWidget, QToolBar, QWidget, QHBoxLayout
dlgColorTrigger.cpp 0 31 QWidget, QDialog, QDialogButtonBox, QAbstractButton, QAbstractSlider, QPushButton
TConsole.h 1 29 QWidget, QHBoxLayout, QLineEdit, QScrollBar, QSplitter, QToolButton
TMapView.cpp 4 26 QApplication, QHBoxLayout, QLabel, QVBoxLayout, QWidget, QSizePolicy, QToolButton, QComboBox, QAbstractButton
dlgModuleManager.cpp 2 27 QFileDialog, QMessageBox, QWidget, QDialog, QAbstractButton, QTableWidget, QHeaderView, QTableWidgetItem
TUiTour.cpp 8 21 QFrame, QHBoxLayout, QLabel, QMenu, QMenuBar, QPushButton, QToolBar, QVBoxLayout, QWidget
TCommandLine.cpp 2 22 QScrollBar, QToolButton, QWidget, QPlainTextEdit, QFrame, QApplication, QMenu
TDetachedWindow.h 7 17 QMainWindow, QVBoxLayout, QToolBar, QToolButton, QLabel, QStackedWidget, QDockWidget, QWidget, QMenu
TMainConsole.cpp 4 20 QLineEdit, QMessageBox, QProgressDialog, QScrollBar, QWidget, QApplication
TTabBar.cpp 3 21 QApplication, QStyleOption, QStyleOptionTab, QWidget, QStyle, QProxyStyle, QTabBar
T2DMap.h 2 19 QTreeWidget, QWidget, QCheckBox, QComboBox, QListWidgetItem, QPushButton, QTreeWidgetItem, QMenu, QDialog
TEasyButtonBar.cpp 1 19 QGridLayout, QWidget, QVBoxLayout, QSizePolicy, QAbstractButton
TToolBar.cpp 0 20 QWidget, QDockWidget, QGridLayout, QSizePolicy, QAbstractButton
dlgTriggerPatternEdit.cpp 8 11 QAbstractButton, QAbstractItemView, QAbstractScrollArea, QAbstractSpinBox, QPlainTextEdit, QComboBox, QLineEdit, QWidget
TFlipButton.cpp 3 15 QMenu, QStyleOptionButton, QStylePainter, QPushButton, QSizePolicy, QStyle
TFeatureCallout.cpp 4 12 QHBoxLayout, QLabel, QPushButton, QVBoxLayout, QWidget
dlgConnectionProfiles.h 0 15 QDialog, QWidget, QListWidgetItem, QListWidget, QPushButton, QLineEdit
main.cpp 3 12 QCheckBox, QMessageBox, QSplashScreen, QApplication
TLabel.cpp 0 15 QWidget, QLabel
dlgNotepad.h 0 14 QLabel, QLineEdit, QPlainTextEdit, QToolButton, QMainWindow, QWidget
utils.h 2 12 QApplication, QWidget
dlgMapper.h 0 13 QFrame, QLabel, QProgressBar, QPushButton, QWidget, QMenu
TTabBar.h 2 11 QProxyStyle, QTabBar, QStyleOption, QWidget, QStyleOptionTab
dlgProfilePreferences.h 1 11 QDialog, QDoubleSpinBox, QWidget, QPushButton, QComboBox, QMenu
TUiTour.h 1 11 QWidget, QFrame, QLabel, QPushButton
updater.cpp 2 10 QMessageBox, QPushButton, QApplication, QAbstractButton
Host.cpp 1 10 QDialog, QLabel, QDockWidget, QApplication
TMapView.h 3 7 QComboBox, QToolButton, QWidget
TTreeWidget.h 1 9 QTreeWidget, QWidget, QTreeWidgetItem
VarUnit.cpp 1 9 QTreeWidgetItem
VarUnit.h 0 10 QTreeWidgetItem
dlgMapLabel.h 1 8 QDialog, QColorDialog, QFontDialog, QWidget
PackageItemDelegate.cpp 1 8 QApplication, QStyledItemDelegate, QStyleOptionViewItem, QStyle
AltFocusMenuBarDisable.cpp 0 8 QProxyStyle, QStyleFactory, QStyleOption, QWidget, QStyleHintReturn, QStyle
dlgPackageManager.h 4 4 QButtonGroup, QDialog, QListWidget, QTextBrowser, QWidget, QListWidgetItem
TKeySequenceEdit.cpp 1 7 QLineEdit, QWidget, QKeySequenceEdit
TMxpFrameManager.h 5 3 QBoxLayout, QHBoxLayout, QTabWidget, QVBoxLayout, QWidget
updater/UpdateDialog.h 1 7 QDialog, QAbstractButton, QWidget
dlgComposer.cpp 1 6 QMenu, QAbstractButton, QWidget, QMainWindow
TAction.cpp 0 7 QMenu
AltFocusMenuBarDisable.h 2 4 QProxyStyle, QStyleFactory, QStyleOption, QWidget, QStyleHintReturn
dlgIRC.cpp 1 5 QScrollBar, QLineEdit, QTextBrowser, QListView
dlgVarsMainArea.cpp 1 5 QListWidgetItem, QWidget, QListWidget
SingleLineTextEdit.cpp 0 6 QWidget, QPlainTextEdit
TAccessibleTextEdit.h 1 5 QAccessibleWidget, QWidget
TCommandLine.h 2 4 QPlainTextEdit, QToolButton, QWidget, QMenu
TEasyButtonBar.h 1 5 QWidget, QGridLayout
TMap.cpp 2 4 QFileDialog, QProgressDialog
TToolBar.h 1 5 QDockWidget, QGridLayout, QWidget
XMLexport.cpp 0 6 QApplication
dlgModuleManager.h 1 4 QDialog, QWidget, QTableWidgetItem
Host.h 0 5 QDialog, QDockWidget, QPushButton, QListWidget
LuaInterface.h 0 5 QTreeWidgetItem
PackageItemDelegate.h 2 3 QStyledItemDelegate, QStyleOptionViewItem
TAccessibleConsole.h 1 4 QAccessibleWidget, QWidget
TFeatureCallout.h 1 4 QWidget
TKeySequenceEdit.h 1 4 QKeySequenceEdit, QLineEdit, QWidget
TLuaInterpreter.cpp 3 2 QFileDialog, QTableWidget, QToolTip, QApplication
TLuaInterpreterMudletObjects.cpp 3 2 QFileDialog, QTableWidget, QToolTip
TLuaInterpreterUI.cpp 3 2 QFileDialog, QTableWidget, QToolTip, QApplication
TrailingWhitespaceMarker.cpp 1 4 QLineEdit, QPlainTextEdit
TrailingWhitespaceMarker.h 1 4 QLineEdit, QPlainTextEdit
TScrollBox.h 1 4 QScrollArea, QWidget
DarkTheme.h 2 2 QProxyStyle, QStyleFactory, QStyle
dlgAliasMainArea.cpp 0 4 QWidget, QLineEdit
dlgRoomProperties.h 1 3 QListWidget, QDialog, QWidget, QListWidgetItem
dlgScriptsMainArea.cpp 0 4 QWidget, QLineEdit
exitstreewidget.cpp 0 4 QWidget, QTreeWidget, QAbstractItemView, QTreeWidgetItem
LuaInterface.cpp 0 4 QTreeWidgetItem
RoomContextMenuHandler.cpp 1 3 QMenu
TAction.h 0 4 QMenu
TDockWidget.cpp 0 4 QDockWidget, QWidget
TMainConsole.h 1 3 QWidget, QProgressDialog
TMapViewManager.cpp 0 4 QDockWidget
TMedia.cpp 0 4 QWidget, QSizePolicy
TScrollBox.cpp 0 4 QWidget, QScrollArea
TSplitter.h 1 3 QSplitter, QWidget, QSplitterHandle
TTextEdit.h 1 3 QWidget, QScrollBar
updater.h 0 4 QAbstractButton, QPushButton
WideComboBox.h 1 3 QComboBox
DarkTheme.cpp 0 3 QStyle, QProxyStyle
dlgActionMainArea.cpp 0 3 QWidget, QLineEdit
dlgColorTrigger.h 0 3 QDialog, QWidget, QPushButton
dlgComposer.h 0 3 QMenu, QMainWindow
dlgKeysMainArea.cpp 0 3 QWidget, QLineEdit
dlgTimersMainArea.cpp 0 3 QWidget, QLineEdit
dlgTriggersMainArea.cpp 0 3 QWidget, QLineEdit
exitstreewidget.h 1 2 QTreeWidget, QWidget
RoomContextMenuHandler.h 0 3 QMenu
SingleLineTextEdit.h 1 2 QPlainTextEdit, QWidget
TAccessibleTextEdit.cpp 0 3 QAccessibleWidget
TFlipButton.h 1 2 QPushButton, QStyleOptionButton
TLabel.h 1 2 QLabel, QWidget
TLuaInterpreterDiscord.cpp 3 0 QFileDialog, QTableWidget, QToolTip
TLuaInterpreterMapper.cpp 3 0 QFileDialog, QTableWidget, QToolTip
TLuaInterpreterNetworking.cpp 3 0 QFileDialog, QTableWidget, QToolTip
TLuaInterpreterTextToSpeech.cpp 3 0 QFileDialog, QTableWidget, QToolTip
TSplitter.cpp 0 3 QWidget, QSplitter, QSplitterHandle
TTextBox.cpp 0 3 QWidget, QPlainTextEdit, QFrame
TTextBox.h 1 2 QPlainTextEdit, QWidget
WideComboBox.cpp 2 1 QScrollBar, QAbstractItemView, QComboBox
ActionUnit.cpp 0 2 QDockWidget
CustomLineDrawContextMenuHandler.cpp 1 1 QMenu
CustomLineEditContextMenuHandler.cpp 1 1 QMenu
dlgAboutDialog.cpp 0 2 QWidget, QDialog
dlgAboutDialog.h 0 2 QDialog, QWidget
dlgActionMainArea.h 0 2 QWidget
dlgAliasMainArea.h 0 2 QWidget
dlgKeysMainArea.h 0 2 QWidget
dlgScriptsMainArea.h 0 2 QWidget
dlgSourceEditorArea.cpp 0 2 QWidget
dlgSourceEditorArea.h 0 2 QWidget
dlgSourceEditorFindArea.cpp 0 2 QWidget
dlgSourceEditorFindArea.h 0 2 QWidget
dlgSystemMessageArea.cpp 0 2 QWidget
dlgSystemMessageArea.h 0 2 QWidget
dlgTimersMainArea.h 0 2 QWidget
dlgTriggerPatternEdit.h 0 2 QWidget
dlgTriggersMainArea.h 0 2 QWidget
dlgVarsMainArea.h 0 2 QWidget
glwidget_integration.h 0 2 QWidget
LabelInteractionHandler.cpp 1 1 QMenu
modern_glwidget.cpp 0 2 QWidget
SelectionRectangleHandler.cpp 1 1 QTreeWidgetItem
TDockWidget.h 1 1 QDockWidget
TMap.h 0 2 QProgressDialog
TMapViewManager.h 1 1 QDockWidget
TSplitterHandle.cpp 0 2 QSplitterHandle, QSplitter
TSplitterHandle.h 1 1 QSplitterHandle
dlgIRC.h 0 1 QMainWindow
glwidget.cpp 0 1 QWidget
glwidget.h 0 1 QWidget
glwidget_integration.cpp 0 1 QWidget
HostManager.cpp 0 1 QApplication
modern_glwidget.h 0 1 QWidget
XMLimport.cpp 0 1 QApplication
XMLimport.h 1 0 QApplication

Clean files (234)

Files with no Qt Widgets dependency
  • ../3rdparty/discord/rpc/include/discord_register.h
  • ../3rdparty/discord/rpc/include/discord_rpc.h
  • ../3rdparty/kdtoolbox/singleshot_connect/singleshot_connect.h
  • ActionUnit.h
  • AliasUnit.cpp
  • AliasUnit.h
  • CameraController.cpp
  • CameraController.h
  • CredentialManager.cpp
  • CredentialManager.h
  • ctelnet.cpp
  • ctelnet.h
  • CustomLineDrawContextMenuHandler.h
  • CustomLineDrawHandler.cpp
  • CustomLineDrawHandler.h
  • CustomLineEditContextMenuHandler.h
  • CustomLineEditHandler.cpp
  • CustomLineEditHandler.h
  • CustomLineSession.cpp
  • CustomLineSession.h
  • discord.cpp
  • discord.h
  • EAction.cpp
  • EAction.h
  • EditorAddItemCommand.cpp
  • EditorAddItemCommand.h
  • EditorCommand.h
  • EditorDeleteItemCommand.cpp
  • EditorDeleteItemCommand.h
  • EditorItemXMLHelpers.cpp
  • EditorItemXMLHelpers.h
  • EditorModifyPropertyCommand.cpp
  • EditorModifyPropertyCommand.h
  • EditorMoveItemCommand.cpp
  • EditorMoveItemCommand.h
  • EditorToggleActiveCommand.cpp
  • EditorToggleActiveCommand.h
  • EditorUndoStack.cpp
  • EditorUndoStack.h
  • enums.h
  • FileOpenHandler.cpp
  • FileOpenHandler.h
  • FontManager.cpp
  • FontManager.h
  • GeometryManager.cpp
  • GeometryManager.h
  • GifTracker.cpp
  • GifTracker.h
  • GMCPAuthenticator.cpp
  • GMCPAuthenticator.h
  • HostManager.h
  • ircmessageformatter.cpp
  • ircmessageformatter.h
  • KeyUnit.cpp
  • KeyUnit.h
  • LabelInteractionHandler.h
  • LabelTextureCache.cpp
  • LabelTextureCache.h
  • mapInfoContributorManager.cpp
  • mapInfoContributorManager.h
  • MiddleMousePanHandler.cpp
  • MiddleMousePanHandler.h
  • MMCP.h
  • MMCPClient.cpp
  • MMCPClient.h
  • MMCPServer.cpp
  • MMCPServer.h
  • MudletInstanceCoordinator.cpp
  • MudletInstanceCoordinator.h
  • MxpTag.cpp
  • MxpTag.h
  • OAuthClientFlow.cpp
  • OAuthClientFlow.h
  • PanInteractionHandler.cpp
  • PanInteractionHandler.h
  • RenderCommand.cpp
  • RenderCommand.h
  • RenderCommandQueue.cpp
  • RenderCommandQueue.h
  • ResourceManager.cpp
  • ResourceManager.h
  • RoomMoveActivationHandler.cpp
  • RoomMoveActivationHandler.h
  • RoomMoveDragHandler.cpp
  • RoomMoveDragHandler.h
  • ScriptUnit.cpp
  • ScriptUnit.h
  • SecureStringUtils.cpp
  • SecureStringUtils.h
  • SelectionRectangleHandler.h
  • SentryWrapper.cpp
  • SentryWrapper.h
  • ShaderManager.cpp
  • ShaderManager.h
  • ShortcutsManager.cpp
  • ShortcutsManager.h
  • sparkleupdater.h
  • sparkleupdater.mm
  • TAlias.cpp
  • TAlias.h
  • TArea.cpp
  • TArea.h
  • TAreaGridIndex.cpp
  • TAreaGridIndex.h
  • TAreaZLevelIndex.cpp
  • TAreaZLevelIndex.h
  • TAstar.h
  • TBuffer.cpp
  • TBuffer.h
  • TDebug.cpp
  • TDebug.h
  • TEncodingHelper.cpp
  • TEncodingHelper.h
  • TEncodingTable.cpp
  • TEncodingTable.h
  • TEntityHandler.cpp
  • TEntityHandler.h
  • TEntityResolver.cpp
  • TEntityResolver.h
  • TEvent.h
  • TForkedProcess.cpp
  • TForkedProcess.h
  • TGameDetails.h
  • THyperlinkCompactManager.cpp
  • THyperlinkCompactManager.h
  • THyperlinkSelectionManager.cpp
  • THyperlinkSelectionManager.h
  • THyperlinkStyling.h
  • THyperlinkVisibilityManager.cpp
  • THyperlinkVisibilityManager.h
  • TimerUnit.cpp
  • TimerUnit.h
  • TKey.cpp
  • TKey.h
  • TLinkStore.cpp
  • TLinkStore.h
  • TLuaInterpreter.h
  • TLuaInterpreterMedia.cpp
  • TLuaInterpreterMMCP.cpp
  • TMapLabel.cpp
  • TMapLabel.h
  • TMatchState.h
  • TMedia.h
  • TMediaData.h
  • TMediaPlaylist.cpp
  • TMediaPlaylist.h
  • TMxpBRTagHandler.cpp
  • TMxpBRTagHandler.h
  • TMxpClient.h
  • TMxpColorTagHandler.cpp
  • TMxpColorTagHandler.h
  • TMxpContext.h
  • TMxpCustomElementTagHandler.cpp
  • TMxpCustomElementTagHandler.h
  • TMxpDestTagHandler.cpp
  • TMxpDestTagHandler.h
  • TMxpElementDefinitionHandler.cpp
  • TMxpElementDefinitionHandler.h
  • TMxpElementRegistry.cpp
  • TMxpElementRegistry.h
  • TMxpEntityTagHandler.cpp
  • TMxpEntityTagHandler.h
  • TMxpEvent.h
  • TMxpExpireTagHandler.cpp
  • TMxpExpireTagHandler.h
  • TMxpFontTagHandler.cpp
  • TMxpFontTagHandler.h
  • TMxpFormattingTagsHandler.cpp
  • TMxpFormattingTagsHandler.h
  • TMxpFrameTagHandler.cpp
  • TMxpFrameTagHandler.h
  • TMxpHRTagHandler.cpp
  • TMxpHRTagHandler.h
  • TMxpImageTagHandler.cpp
  • TMxpImageTagHandler.h
  • TMxpLinkTagHandler.cpp
  • TMxpLinkTagHandler.h
  • TMxpMudlet.cpp
  • TMxpMudlet.h
  • TMxpMusicTagHandler.cpp
  • TMxpMusicTagHandler.h
  • TMxpNodeBuilder.cpp
  • TMxpNodeBuilder.h
  • TMxpProcessor.cpp
  • TMxpProcessor.h
  • TMxpSendTagHandler.cpp
  • TMxpSendTagHandler.h
  • TMxpSoundTagHandler.cpp
  • TMxpSoundTagHandler.h
  • TMxpStatTagHandler.cpp
  • TMxpStatTagHandler.h
  • TMxpSupportTagHandler.cpp
  • TMxpSupportTagHandler.h
  • TMxpTagHandler.cpp
  • TMxpTagHandler.h
  • TMxpTagHandlerResult.h
  • TMxpTagParser.cpp
  • TMxpTagParser.h
  • TMxpTagProcessor.cpp
  • TMxpTagProcessor.h
  • TMxpVarTagHandler.cpp
  • TMxpVarTagHandler.h
  • TMxpVersionTagHandler.cpp
  • TMxpVersionTagHandler.h
  • Tree.h
  • TriggerHighlighter.cpp
  • TriggerHighlighter.h
  • TriggerUnit.cpp
  • TriggerUnit.h
  • TRoom.cpp
  • TRoom.h
  • TRoomDB.cpp
  • TRoomDB.h
  • TScript.cpp
  • TScript.h
  • TStringUtils.cpp
  • TStringUtils.h
  • TTextCodec.cpp
  • TTextCodec.h
  • TTextProperties.h
  • TTimer.cpp
  • TTimer.h
  • TTrigger.cpp
  • TTrigger.h
  • TVar.cpp
  • TVar.h
  • updater/Feed.cpp
  • updater/Feed.h
  • updater/Release.cpp
  • updater/Release.h
  • updater/SemVer.cpp
  • updater/SemVer.h
  • widechar_width.h
  • XMLexport.h