]> git.cworth.org Git - apitrace/blobdiff - gui/mainwindow.h
Show that we're loading a trace.
[apitrace] / gui / mainwindow.h
index 11290e65b186538a88e1758fef3caafa6f4ff8ab..a771bd9c0bb63ad67508002bcb9594cb98950969 100644 (file)
@@ -12,6 +12,7 @@ class ApiTraceFilter;
 class QLineEdit;
 class QModelIndex;
 class QProcess;
+class QProgressBar;
 
 class MainWindow : public QMainWindow
 {
@@ -30,6 +31,8 @@ private slots:
     void replayStop();
     void replayFinished();
     void replayError(QProcess::ProcessError err);
+    void startedLoadingTrace();
+    void finishedLoadingTrace();
 
 private:
     void newTraceFile(const QString &fileName);
@@ -43,6 +46,8 @@ private:
 
     QProcess *m_replayProcess;
 
+    QProgressBar *m_progressBar;
+
     QString m_traceFileName;
 };