2012-02-02 23:17:53 -05:00
|
|
|
#ifndef __gtk2_ardour_button_joiner_h__
|
|
|
|
#define __gtk2_ardour_button_joiner_h__
|
|
|
|
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
#include <gtkmm/alignment.h>
|
|
|
|
#include <gtkmm/action.h>
|
|
|
|
|
|
|
|
#include "gtkmm2ext/activatable.h"
|
|
|
|
#include "gtkmm2ext/cairo_widget.h"
|
|
|
|
|
|
|
|
class ButtonJoiner : public CairoWidget, public Gtkmm2ext::Activatable {
|
|
|
|
public:
|
2012-04-08 20:03:35 -04:00
|
|
|
ButtonJoiner (const std::string&, Gtk::Widget&, Gtk::Widget&, bool central_link = false);
|
2012-02-03 13:31:10 -05:00
|
|
|
~ButtonJoiner ();
|
|
|
|
|
2012-02-02 23:17:53 -05:00
|
|
|
void set_related_action (Glib::RefPtr<Gtk::Action>);
|
|
|
|
void set_active_state (Gtkmm2ext::ActiveState);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void render (cairo_t*);
|
|
|
|
bool on_button_release_event (GdkEventButton*);
|
|
|
|
void on_size_request (Gtk::Requisition*);
|
2012-02-03 13:31:10 -05:00
|
|
|
void on_size_allocate (Gtk::Allocation&);
|
2012-02-02 23:17:53 -05:00
|
|
|
|
|
|
|
void action_sensitivity_changed ();
|
|
|
|
void action_visibility_changed ();
|
|
|
|
void action_tooltip_changed ();
|
|
|
|
void action_toggled ();
|
|
|
|
|
|
|
|
private:
|
2012-02-03 13:49:43 -05:00
|
|
|
Gtk::Widget& left;
|
|
|
|
Gtk::Widget& right;
|
|
|
|
Gtk::HBox packer;
|
2012-02-02 23:17:53 -05:00
|
|
|
Gtk::Alignment align;
|
2012-02-03 13:49:43 -05:00
|
|
|
std::string name;
|
2012-02-03 13:31:10 -05:00
|
|
|
cairo_pattern_t* active_fill_pattern;
|
|
|
|
cairo_pattern_t* inactive_fill_pattern;
|
2012-04-08 20:03:35 -04:00
|
|
|
bool central_link;
|
2012-02-03 14:10:39 -05:00
|
|
|
double border_r;
|
|
|
|
double border_g;
|
|
|
|
double border_b;
|
2012-02-02 23:17:53 -05:00
|
|
|
void set_colors ();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk2_ardour_button_joiner_h__ */
|