2010-11-16 09:53:16 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2010-2012 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2012-2014 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2012-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2014-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2010-11-16 09:53:16 -05:00
|
|
|
|
2015-12-07 17:08:19 -05:00
|
|
|
#ifndef __gtk_ardour_editor_cursors_h__
|
|
|
|
#define __gtk_ardour_editor_cursors_h__
|
|
|
|
|
2010-11-16 09:53:16 -05:00
|
|
|
#include "pbd/signals.h"
|
2014-06-25 15:27:37 -04:00
|
|
|
#include "ardour/types.h"
|
2010-11-16 09:53:16 -05:00
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
#include "canvas/arrow.h"
|
|
|
|
#include "canvas/line.h"
|
|
|
|
#include "canvas/types.h"
|
|
|
|
|
2010-11-16 09:53:16 -05:00
|
|
|
class Editor;
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
class EditorCursor
|
|
|
|
{
|
|
|
|
public:
|
2021-07-27 14:10:10 -04:00
|
|
|
EditorCursor (Editor&, bool (Editor::*)(GdkEvent*,ArdourCanvas::Item*), std::string const &);
|
|
|
|
EditorCursor (Editor&, std::string const &);
|
2017-07-01 12:42:24 -04:00
|
|
|
~EditorCursor ();
|
2010-11-16 09:53:16 -05:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
void set_position (samplepos_t);
|
2013-04-04 00:32:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
void show ();
|
|
|
|
void hide ();
|
2017-07-17 12:34:35 -04:00
|
|
|
void set_color (Gtkmm2ext::Color);
|
2014-06-30 16:32:38 -04:00
|
|
|
void set_sensitive (bool);
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
samplepos_t current_sample () const {
|
|
|
|
return _current_sample;
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
|
|
|
|
2014-05-21 11:12:57 -04:00
|
|
|
ArdourCanvas::Arrow& track_canvas_item () {
|
2014-02-12 15:13:11 -05:00
|
|
|
return *_track_canvas_item;
|
2013-04-04 00:32:52 -04:00
|
|
|
}
|
2010-11-16 09:53:16 -05:00
|
|
|
|
2017-09-18 12:39:17 -04:00
|
|
|
PBD::Signal1<void, samplepos_t> PositionChanged;
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2013-04-04 00:32:52 -04:00
|
|
|
Editor& _editor;
|
2014-05-21 11:12:57 -04:00
|
|
|
ArdourCanvas::Arrow* _track_canvas_item;
|
2019-04-08 18:27:05 -04:00
|
|
|
samplepos_t _current_sample;
|
2010-11-16 09:53:16 -05:00
|
|
|
};
|
2015-12-07 17:08:19 -05:00
|
|
|
|
|
|
|
#endif // __gtk_ardour_editor_cursors_h__
|