2006-12-20 16:03:11 -05:00
|
|
|
#ifndef __gtk_ardour_panner_h__
|
|
|
|
#define __gtk_ardour_panner_h__
|
|
|
|
|
|
|
|
#include <gtkmm2ext/barcontroller.h>
|
|
|
|
|
|
|
|
class PannerBar : public Gtkmm2ext::BarController
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PannerBar (Gtk::Adjustment& adj, PBD::Controllable&);
|
|
|
|
~PannerBar ();
|
|
|
|
|
2006-12-20 21:52:27 -05:00
|
|
|
void on_size_request (Gtk::Requisition*);
|
|
|
|
|
2006-12-20 16:03:11 -05:00
|
|
|
protected:
|
|
|
|
bool expose (GdkEventExpose*);
|
|
|
|
bool button_press (GdkEventButton*);
|
|
|
|
bool button_release (GdkEventButton*);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_panner_h__ */
|