comparison view/AlignmentView.h @ 976:f2c63ec85901 alignment-simple

Branch to test simple FFT model code
author Chris Cannam
date Mon, 15 Jun 2015 09:15:55 +0100
parents 99299949f965
children 57d192e26331
comparison
equal deleted inserted replaced
946:36cddc3de023 976:f2c63ec85901
28 28
29 void setViewAbove(View *view); 29 void setViewAbove(View *view);
30 void setViewBelow(View *view); 30 void setViewBelow(View *view);
31 31
32 public slots: 32 public slots:
33 virtual void globalCentreFrameChanged(int); 33 virtual void globalCentreFrameChanged(sv_frame_t);
34 virtual void viewCentreFrameChanged(View *, int); 34 virtual void viewCentreFrameChanged(View *, sv_frame_t);
35 virtual void viewAboveZoomLevelChanged(int, bool); 35 virtual void viewAboveZoomLevelChanged(int, bool);
36 virtual void viewBelowZoomLevelChanged(int, bool); 36 virtual void viewBelowZoomLevelChanged(int, bool);
37 virtual void viewManagerPlaybackFrameChanged(int); 37 virtual void viewManagerPlaybackFrameChanged(sv_frame_t);
38 38
39 protected: 39 protected:
40 virtual void paintEvent(QPaintEvent *e); 40 virtual void paintEvent(QPaintEvent *e);
41 virtual bool shouldLabelSelections() const { return false; } 41 virtual bool shouldLabelSelections() const { return false; }
42 42
43 std::vector<int> getKeyFrames(); 43 std::vector<sv_frame_t> getKeyFrames();
44 std::vector<int> getDefaultKeyFrames(); 44 std::vector<sv_frame_t> getDefaultKeyFrames();
45 45
46 View *m_above; 46 View *m_above;
47 View *m_below; 47 View *m_below;
48 }; 48 };
49 49