Mercurial > hg > svcore
comparison base/ViewManagerBase.h @ 1043:fe39581d249b cxx11
More type-size adjustments
author | Chris Cannam |
---|---|
date | Wed, 04 Mar 2015 19:08:21 +0000 |
parents | 6a94bb528e9d |
children | 8541563f1fd3 |
comparison
equal
deleted
inserted
replaced
1042:16dc7307d43a | 1043:fe39581d249b |
---|---|
35 public: | 35 public: |
36 virtual ~ViewManagerBase(); | 36 virtual ~ViewManagerBase(); |
37 | 37 |
38 virtual void setAudioPlaySource(AudioPlaySource *source) = 0; | 38 virtual void setAudioPlaySource(AudioPlaySource *source) = 0; |
39 | 39 |
40 virtual int alignPlaybackFrameToReference(int) const = 0; | 40 virtual sv_frame_t alignPlaybackFrameToReference(sv_frame_t) const = 0; |
41 virtual int alignReferenceToPlaybackFrame(int) const = 0; | 41 virtual sv_frame_t alignReferenceToPlaybackFrame(sv_frame_t) const = 0; |
42 | 42 |
43 virtual const MultiSelection &getSelection() const = 0; | 43 virtual const MultiSelection &getSelection() const = 0; |
44 virtual const MultiSelection::SelectionList &getSelections() const = 0; | 44 virtual const MultiSelection::SelectionList &getSelections() const = 0; |
45 virtual int constrainFrameToSelection(int frame) const = 0; | 45 virtual sv_frame_t constrainFrameToSelection(sv_frame_t frame) const = 0; |
46 | 46 |
47 virtual Selection getContainingSelection | 47 virtual Selection getContainingSelection |
48 (int frame, bool defaultToFollowing) const = 0; | 48 (sv_frame_t frame, bool defaultToFollowing) const = 0; |
49 | 49 |
50 virtual bool getPlayLoopMode() const = 0; | 50 virtual bool getPlayLoopMode() const = 0; |
51 virtual bool getPlaySelectionMode() const = 0; | 51 virtual bool getPlaySelectionMode() const = 0; |
52 virtual bool getPlaySoloMode() const = 0; | 52 virtual bool getPlaySoloMode() const = 0; |
53 virtual bool getAlignMode() const = 0; | 53 virtual bool getAlignMode() const = 0; |