X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fexport_format_selector.cc;h=122facdd39d8affa4e3de581c1477c145f4e850b;hb=9d9905f443f797efaabb7b8b36217b71e57c6c06;hp=1f1158a21f3684b34d0332a8cdf908b4e17c37dd;hpb=b5a57cc78c92b1d887b7e8de040d8663a9ba187e;p=ardour.git diff --git a/gtk2_ardour/export_format_selector.cc b/gtk2_ardour/export_format_selector.cc index 1f1158a21f..122facdd39 100644 --- a/gtk2_ardour/export_format_selector.cc +++ b/gtk2_ardour/export_format_selector.cc @@ -22,9 +22,9 @@ #include "export_format_dialog.h" -#include -#include -#include +#include "ardour/export_format_specification.h" +#include "ardour/export_profile_manager.h" +#include "ardour/session.h" #include "i18n.h" @@ -38,6 +38,11 @@ ExportFormatSelector::ExportFormatSelector () : pack_start (remove_button, false, false, 3); pack_start (new_button, false, false, 3); + format_combo.set_name ("PaddedButton"); + edit_button.set_name ("PaddedButton"); + remove_button.set_name ("PaddedButton"); + new_button.set_name ("PaddedButton"); + edit_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::mem_fun (*this, &ExportFormatSelector::open_edit_dialog), false))); remove_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatSelector::remove_format)); new_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatSelector::add_new_format));