debugger: code cosmetics for custom displays

This commit is contained in:
hjk
2010-03-15 17:44:56 +01:00
parent 0cd06f55bc
commit e8936ad9d2
5 changed files with 116 additions and 20 deletions

View File

@@ -282,14 +282,17 @@ private:
bool m_expandPointers;
bool m_inChange;
typedef QMap<QString, QPointer<QWidget> > EditWindows;
EditWindows m_editWindows;
// QWidgets and QProcesses taking care of special displays.
typedef QMap<QString, QPointer<QObject> > EditHandlers;
EditHandlers m_editHandlers;
QHash<QByteArray, int> m_watcherNames;
QByteArray watcherName(const QByteArray &exp);
QHash<QString, int> m_typeFormats;
QHash<QString, int> m_individualFormats;
QSet<QByteArray> m_expandedINames; // Those expanded in the treeview.
// Items expanded in the Locals & Watchers view.
QSet<QByteArray> m_expandedINames;
WatchModel *m_locals;
WatchModel *m_watchers;