mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 17:40:39 +00:00
30 lines
423 B
C++
30 lines
423 B
C++
#ifndef EVENTBROWSER_H
|
|
#define EVENTBROWSER_H
|
|
|
|
#include <QFrame>
|
|
|
|
namespace Ui {
|
|
class EventBrowser;
|
|
}
|
|
|
|
class EventBrowser : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit EventBrowser(QWidget *parent = 0);
|
|
~EventBrowser();
|
|
|
|
private slots:
|
|
void on_find_clicked();
|
|
|
|
void on_gotoEID_clicked();
|
|
|
|
void on_events_itemSelectionChanged();
|
|
|
|
private:
|
|
Ui::EventBrowser *ui;
|
|
};
|
|
|
|
#endif // EVENTBROWSER_H
|