| 99 | |
| 100 | |
| 101 | class DebugModulesItemDelegate : public QStyledItemDelegate |
| 102 | { |
| 103 | Q_OBJECT |
| 104 | |
| 105 | QFont m_font; |
| 106 | int m_baseline, m_charWidth, m_charHeight, m_charOffset; |
| 107 | |
| 108 | public: |
| 109 | DebugModulesItemDelegate(QWidget* parent); |
| 110 | void updateFonts(); |
| 111 | void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& idx) const; |
| 112 | QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& idx) const; |
| 113 | }; |
| 114 | |
| 115 | |
| 116 | class DebugModulesFilterProxyModel : public QSortFilterProxyModel |
nothing calls this directly
no outgoing calls
no test coverage detected