summaryrefslogtreecommitdiff
path: root/gtk2_ardour/configinfo.cc
blob: 2ec6b1f39eb6802d11c9a16b77f23ed0c4f1df27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "ardour/ardour.h"

#include "configinfo.h"
#include "i18n.h"

ConfigInfoDialog::ConfigInfoDialog ()
	: ArdourDialog (_("Build Configuration"))
{
	set_border_width (12);
	text.get_buffer()->set_text (Glib::ustring (ARDOUR::ardour_config_info));
	text.set_wrap_mode (Gtk::WRAP_WORD);
	text.show ();
	text.set_size_request (300, 800);

	get_vbox()->pack_start (text, true, true);
}