mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
add a way to see (most of) the waf config used to build ardour at run time (from the about dialog). buttons still need reordering there
git-svn-id: svn://localhost/ardour2/branches/3.0@6439 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b1af21dae7
commit
6ddcd8f0b9
10 changed files with 88 additions and 5 deletions
16
gtk2_ardour/configinfo.cc
Normal file
16
gtk2_ardour/configinfo.cc
Normal file
|
|
@ -0,0 +1,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);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue