]> git.cworth.org Git - apitrace/blobdiff - gui/profiledialog.h
Use skiplist-based FastCallSet within trace::CallSet
[apitrace] / gui / profiledialog.h
index 8a2f39ea175c45b3e7649293fd223ad94d603e69..862d068bcd888bcae36ec890df9ccda29f47f26e 100644 (file)
@@ -15,14 +15,11 @@ public:
     ~ProfileDialog();
     
     void setProfile(trace::Profile* profile);
+    void showCall(int call);
 
 public slots:
-    void setVerticalScrollMax(int max);
-    void setHorizontalScrollMax(int max);
-
     void tableDoubleClicked(const QModelIndex& index);
-
-    void selectionChanged(int64_t start, int64_t end);
+    void graphSelectionChanged(SelectionState state);
 
 signals:
     void jumpToCall(int call);
@@ -31,6 +28,4 @@ private:
     trace::Profile *m_profile;
 };
 
-QString getTimeString(int64_t time, int64_t unitTime = 0);
-
 #endif