2011-12-26 09:05:19 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011 Paul Davis
|
|
|
|
|
|
|
|
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 __gtk_ardour_panner_interface_h__
|
|
|
|
#define __gtk_ardour_panner_interface_h__
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <gtkmm/drawingarea.h>
|
|
|
|
#include <gtkmm/label.h>
|
2012-06-11 17:21:10 -04:00
|
|
|
#include "gtkmm2ext/persistent_tooltip.h"
|
2012-06-06 07:47:09 -04:00
|
|
|
#include "pbd/destructible.h"
|
2011-12-26 09:05:19 -05:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Panner;
|
|
|
|
}
|
|
|
|
|
2012-06-06 07:47:09 -04:00
|
|
|
class PannerEditor;
|
|
|
|
|
2012-06-11 17:21:10 -04:00
|
|
|
class PannerPersistentTooltip : public Gtkmm2ext::PersistentTooltip
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PannerPersistentTooltip (Gtk::Widget* w);
|
|
|
|
|
|
|
|
void target_start_drag ();
|
|
|
|
void target_stop_drag ();
|
|
|
|
|
|
|
|
bool dragging () const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool _dragging;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-12-26 09:05:19 -05:00
|
|
|
/** Parent class for some panner UI classes that contains some common code */
|
2012-06-06 07:47:09 -04:00
|
|
|
class PannerInterface : public Gtk::DrawingArea, public PBD::Destructible
|
2011-12-26 09:05:19 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PannerInterface (boost::shared_ptr<ARDOUR::Panner>);
|
|
|
|
virtual ~PannerInterface ();
|
|
|
|
|
2012-06-06 07:47:09 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Panner> panner () {
|
|
|
|
return _panner;
|
|
|
|
}
|
|
|
|
|
|
|
|
void edit ();
|
|
|
|
|
2011-12-26 09:05:19 -05:00
|
|
|
protected:
|
2012-06-11 17:21:10 -04:00
|
|
|
virtual void set_tooltip () = 0;
|
2012-06-06 07:47:09 -04:00
|
|
|
|
2011-12-26 09:05:19 -05:00
|
|
|
void value_change ();
|
2011-12-26 09:30:35 -05:00
|
|
|
|
2011-12-26 09:05:19 -05:00
|
|
|
bool on_enter_notify_event (GdkEventCrossing *);
|
|
|
|
bool on_leave_notify_event (GdkEventCrossing *);
|
|
|
|
bool on_key_release_event (GdkEventKey *);
|
2012-06-06 07:47:09 -04:00
|
|
|
bool on_button_press_event (GdkEventButton*);
|
|
|
|
bool on_button_release_event (GdkEventButton*);
|
2011-12-26 09:05:19 -05:00
|
|
|
|
|
|
|
boost::shared_ptr<ARDOUR::Panner> _panner;
|
2012-06-11 17:21:10 -04:00
|
|
|
PannerPersistentTooltip _tooltip;
|
2011-12-26 09:30:35 -05:00
|
|
|
|
|
|
|
private:
|
2012-06-06 07:47:09 -04:00
|
|
|
virtual PannerEditor* editor () = 0;
|
|
|
|
PannerEditor* _editor;
|
2011-12-26 09:05:19 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|