#ifndef DLGDEVELOPERTOOLS_H #define DLGDEVELOPERTOOLS_H #include #include #include #include "ui_dlgdevelopertoolsdlg.h" #include "configobject.h" #include "controlobject.h" #include "control/controlmodel.h" #include "util/statmodel.h" class DlgDeveloperTools : public QDialog, public Ui::DlgDeveloperTools { Q_OBJECT public: DlgDeveloperTools(QWidget* pParent, ConfigObject* pConfig); virtual ~DlgDeveloperTools(); protected: void timerEvent(QTimerEvent* pTimerEvent); private slots: void slotControlSearch(const QString& search); void slotControlSearchClear(); void slotLogSearch(); private: ControlModel m_controlModel; QSortFilterProxyModel m_controlProxyModel; StatModel m_statModel; QSortFilterProxyModel m_statProxyModel; QFile m_logFile; QTextCursor m_logCursor; }; #endif /* DLGDEVELOPERTOOLS_H */