summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_summary.h
blob: b9632dc96ffdcd2e1b12c0e6f2eafe0372a45375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#ifndef __gtk_ardour_editor_summary_h__
#define __gtk_ardour_editor_summary_h__

#include <gtkmm/eventbox.h>

namespace ARDOUR {
	class Session;
}

class Editor;

class EditorSummary : public Gtk::EventBox
{
public:
	EditorSummary (Editor *);
	~EditorSummary ();

	void set_session (ARDOUR::Session *);
	void set_dirty ();
	void set_bounds_dirty ();

private:
	bool on_expose_event (GdkEventExpose *);
	void on_size_request (Gtk::Requisition *);
	void on_size_allocate (Gtk::Allocation &);
	bool on_button_press_event (GdkEventButton *);

	void render (cairo_t *);
	GdkPixmap* get_pixmap (GdkDrawable *);
	void render_region (RegionView*, cairo_t*, nframes_t, double) const;

	Editor* _editor;
	ARDOUR::Session* _session;
	GdkPixmap* _pixmap;
	bool _regions_dirty;
	int _width;
	int _height;
	double _pixels_per_frame;
};

#endif