#ifndef EVENTBROWSER_H #define EVENTBROWSER_H #include #include "Code/Core.h" namespace Ui { class EventBrowser; } class EventBrowser : public QFrame, public ILogViewerForm { Q_OBJECT public: explicit EventBrowser(Core *core, QWidget *parent = 0); ~EventBrowser(); void OnLogfileLoaded(); void OnLogfileClosed(); void OnEventSelected(uint32_t frameID, uint32_t eventID); private slots: void on_find_clicked(); void on_gotoEID_clicked(); void on_events_itemSelectionChanged(); private: Ui::EventBrowser *ui; Core *m_Core; }; #endif // EVENTBROWSER_H