cont'd work on Post-Export Analysis GUI:
[ardour.git] / gtk2_ardour / export_report.h
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #include <cairo/cairo.h>
20 #include <gtkmm/notebook.h>
21
22 #include "gtkmm2ext/cairo_widget.h"
23
24 #include "ardour/export_status.h"
25
26 #include "ardour_dialog.h"
27
28 class CimgArea : public CairoWidget
29 {
30 public:
31         CimgArea (Cairo::RefPtr<Cairo::ImageSurface> sf)
32                 : CairoWidget()
33                 , _surface(sf)
34         {
35                 set_size_request (sf->get_width (), sf->get_height ());
36         }
37
38         virtual void render (cairo_t* cr, cairo_rectangle_t* r)
39         {
40                 cairo_rectangle (cr, r->x, r->y, r->width, r->height);
41                 cairo_clip (cr);
42                 cairo_set_source_surface (cr, _surface->cobj(), 0, 0);
43                 cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
44                 cairo_paint (cr);
45         }
46
47 private:
48         Cairo::RefPtr<Cairo::ImageSurface> _surface;
49 };
50
51 class ExportReport : public ArdourDialog
52 {
53 public:
54         typedef boost::shared_ptr<ARDOUR::ExportStatus> StatusPtr;
55         ExportReport (ARDOUR::Session*, StatusPtr);
56         int run ();
57
58 private:
59         StatusPtr       status;
60
61         Gtk::Notebook   pages;
62 };