]> git.cworth.org Git - apitrace/blobdiff - gui/profiledialog.h
trace: Unwrap all args before serializing them.
[apitrace] / gui / profiledialog.h
index 22ef066f05a25377a0c6fd9e2b2e650048f5f174..862d068bcd888bcae36ec890df9ccda29f47f26e 100644 (file)
@@ -15,16 +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 selectNone();
-    void selectProgram(unsigned program);
-    void selectTime(int64_t start, int64_t end);
+    void graphSelectionChanged(SelectionState state);
 
 signals:
     void jumpToCall(int call);
@@ -33,6 +28,4 @@ private:
     trace::Profile *m_profile;
 };
 
-QString getTimeString(int64_t time, int64_t unitTime = 0);
-
 #endif