mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
globally change all use of "frame" to refer to audio into "sample".
Generated by tools/f2s. Some hand-editing will be required in a few places to fix up comments related to timecode and video in order to keep the legible
This commit is contained in:
parent
cb956e3e48
commit
30b087ab3d
577 changed files with 9003 additions and 8997 deletions
|
|
@ -36,7 +36,7 @@ public:
|
|||
EditorCursor (Editor&);
|
||||
~EditorCursor ();
|
||||
|
||||
void set_position (framepos_t);
|
||||
void set_position (samplepos_t);
|
||||
|
||||
|
||||
void show ();
|
||||
|
|
@ -44,20 +44,20 @@ public:
|
|||
void set_color (Gtkmm2ext::Color);
|
||||
void set_sensitive (bool);
|
||||
|
||||
framepos_t current_frame () const {
|
||||
return _current_frame;
|
||||
samplepos_t current_sample () const {
|
||||
return _current_sample;
|
||||
}
|
||||
|
||||
ArdourCanvas::Arrow& track_canvas_item () {
|
||||
return *_track_canvas_item;
|
||||
}
|
||||
|
||||
PBD::Signal1<void, framepos_t> PositionChanged;
|
||||
PBD::Signal1<void, samplepos_t> PositionChanged;
|
||||
|
||||
private:
|
||||
Editor& _editor;
|
||||
ArdourCanvas::Arrow* _track_canvas_item;
|
||||
framepos_t _current_frame;
|
||||
samplepos_t _current_sample;
|
||||
};
|
||||
|
||||
#endif // __gtk_ardour_editor_cursors_h__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue