2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2003 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_gtk_axis_view_h__
|
|
|
|
#define __ardour_gtk_axis_view_h__
|
|
|
|
|
|
|
|
#include <list>
|
2005-11-28 23:41:15 -05:00
|
|
|
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gdkmm/color.h>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/xml++.h"
|
2009-12-22 15:21:43 -05:00
|
|
|
#include "pbd/signals.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
|
|
|
|
#include "ardour/session_handle.h"
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "prompter.h"
|
2006-06-20 14:50:38 -04:00
|
|
|
#include "selectable.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* AxisView defines the abstract base class for time-axis trackviews and routes.
|
|
|
|
*
|
|
|
|
*/
|
2009-12-22 15:21:43 -05:00
|
|
|
class AxisView : public virtual Selectable, public PBD::ScopedConnectionList, public ARDOUR::SessionHandlePtr
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Returns the current 'Track' Color
|
|
|
|
*
|
|
|
|
* @return the current Track Color
|
|
|
|
*/
|
2005-09-26 14:24:59 -04:00
|
|
|
Gdk::Color color() const { return _color; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
ARDOUR::Session* session() const { return _session; }
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
virtual std::string name() const = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
virtual bool marked_for_display() const { return _marked_for_display; }
|
|
|
|
virtual void set_marked_for_display (bool yn) {
|
2008-09-10 11:03:30 -04:00
|
|
|
_marked_for_display = yn;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2009-12-22 15:21:43 -05:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
sigc::signal<void> Hiding;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-10-11 18:07:47 -04:00
|
|
|
void set_old_order_key (uint32_t ok) { _old_order_key = ok; }
|
|
|
|
uint32_t old_order_key() const { return _old_order_key; }
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
protected:
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
AxisView (ARDOUR::Session* sess);
|
2005-09-25 14:42:24 -04:00
|
|
|
virtual ~AxisView();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/**
|
|
|
|
* Generate a new random TrackView color, unique from those colors already used.
|
|
|
|
*
|
|
|
|
* @return the unique random color.
|
|
|
|
*/
|
2005-10-05 09:48:09 -04:00
|
|
|
static Gdk::Color unique_random_color();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
|
2005-09-26 14:24:59 -04:00
|
|
|
Gdk::Color _color;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
static std::list<Gdk::Color> used_colors;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
Gtk::Label name_label;
|
|
|
|
|
|
|
|
bool _marked_for_display;
|
2007-10-11 18:07:47 -04:00
|
|
|
uint32_t _old_order_key;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
}; /* class AxisView */
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_axis_view_h__ */
|
|
|
|
|