mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-19 05:06:31 +01:00
Use non-deprecated Gtk::Widget::hide API in gtk2_ardour
This commit is contained in:
parent
24bc99a9d8
commit
cf161c2da2
9 changed files with 15 additions and 15 deletions
|
|
@ -481,7 +481,7 @@ AutomationTimeAxisView::set_height (uint32_t h, TrackHeightMode m)
|
||||||
hide_button.show();
|
hide_button.show();
|
||||||
|
|
||||||
} else if (h >= preset_height (HeightSmall)) {
|
} else if (h >= preset_height (HeightSmall)) {
|
||||||
controls_table.hide_all ();
|
controls_table.hide();
|
||||||
auto_dropdown.hide();
|
auto_dropdown.hide();
|
||||||
name_label.hide();
|
name_label.hide();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -144,7 +144,7 @@ ExportDialog::init ()
|
||||||
/* Done! */
|
/* Done! */
|
||||||
|
|
||||||
show_all_children ();
|
show_all_children ();
|
||||||
progress_widget.hide_all();
|
progress_widget.hide ();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -197,7 +197,7 @@ ExportDialog::close_dialog ()
|
||||||
status->abort();
|
status->abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
hide_all ();
|
hide ();
|
||||||
set_modal (false);
|
set_modal (false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -354,7 +354,7 @@ ExportDialog::show_progress ()
|
||||||
export_button->set_sensitive (false);
|
export_button->set_sensitive (false);
|
||||||
|
|
||||||
progress_bar.set_fraction (0.0);
|
progress_bar.set_fraction (0.0);
|
||||||
warning_widget.hide_all();
|
warning_widget.hide ();
|
||||||
progress_widget.show ();
|
progress_widget.show ();
|
||||||
progress_widget.show_all_children ();
|
progress_widget.show_all_children ();
|
||||||
progress_connection = Glib::signal_timeout().connect (sigc::mem_fun(*this, &ExportDialog::progress_timeout), 100);
|
progress_connection = Glib::signal_timeout().connect (sigc::mem_fun(*this, &ExportDialog::progress_timeout), 100);
|
||||||
|
|
|
||||||
|
|
@ -1081,7 +1081,7 @@ ExportFormatDialog::fill_sample_format_lists (boost::shared_ptr<ARDOUR::HasSampl
|
||||||
void
|
void
|
||||||
ExportFormatDialog::end_dialog ()
|
ExportFormatDialog::end_dialog ()
|
||||||
{
|
{
|
||||||
hide_all ();
|
hide ();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
|
|
@ -1201,5 +1201,5 @@ void
|
||||||
LocationUIWindow::session_going_away ()
|
LocationUIWindow::session_going_away ()
|
||||||
{
|
{
|
||||||
ArdourWindow::session_going_away ();
|
ArdourWindow::session_going_away ();
|
||||||
hide_all();
|
hide ();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@ void
|
||||||
LuaScriptManager::session_going_away ()
|
LuaScriptManager::session_going_away ()
|
||||||
{
|
{
|
||||||
ArdourWindow::session_going_away ();
|
ArdourWindow::session_going_away ();
|
||||||
hide_all();
|
hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
|
|
@ -673,7 +673,7 @@ MixerStrip::set_route (boost::shared_ptr<Route> rt)
|
||||||
if (has_audio_outputs ()) {
|
if (has_audio_outputs ()) {
|
||||||
panners.show_all ();
|
panners.show_all ();
|
||||||
} else {
|
} else {
|
||||||
panners.hide_all ();
|
panners.hide ();
|
||||||
}
|
}
|
||||||
|
|
||||||
update_diskstream_display ();
|
update_diskstream_display ();
|
||||||
|
|
@ -1124,7 +1124,7 @@ void
|
||||||
MixerStrip::update_diskstream_display ()
|
MixerStrip::update_diskstream_display ()
|
||||||
{
|
{
|
||||||
if (is_track() && input_selector) {
|
if (is_track() && input_selector) {
|
||||||
input_selector->hide_all ();
|
input_selector->hide ();
|
||||||
}
|
}
|
||||||
|
|
||||||
route_color_changed ();
|
route_color_changed ();
|
||||||
|
|
@ -1483,7 +1483,7 @@ MixerStrip::update_input_display ()
|
||||||
if (has_audio_outputs ()) {
|
if (has_audio_outputs ()) {
|
||||||
panners.show_all ();
|
panners.show_all ();
|
||||||
} else {
|
} else {
|
||||||
panners.hide_all ();
|
panners.hide ();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -1498,7 +1498,7 @@ MixerStrip::update_output_display ()
|
||||||
if (has_audio_outputs ()) {
|
if (has_audio_outputs ()) {
|
||||||
panners.show_all ();
|
panners.show_all ();
|
||||||
} else {
|
} else {
|
||||||
panners.hide_all ();
|
panners.hide ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -2196,7 +2196,7 @@ MixerStrip::revert_to_default_display ()
|
||||||
if (has_audio_outputs ()) {
|
if (has_audio_outputs ()) {
|
||||||
panners.show_all ();
|
panners.show_all ();
|
||||||
} else {
|
} else {
|
||||||
panners.hide_all ();
|
panners.hide ();
|
||||||
}
|
}
|
||||||
|
|
||||||
reset_strip_style ();
|
reset_strip_style ();
|
||||||
|
|
|
||||||
|
|
@ -549,7 +549,7 @@ void
|
||||||
RegionView::hide_region_editor()
|
RegionView::hide_region_editor()
|
||||||
{
|
{
|
||||||
if (editor) {
|
if (editor) {
|
||||||
editor->hide_all ();
|
editor->hide ();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -273,7 +273,7 @@ SessionImportDialog::show_info(const TreeModel::Path& path, TreeViewColumn*)
|
||||||
void
|
void
|
||||||
SessionImportDialog::end_dialog ()
|
SessionImportDialog::end_dialog ()
|
||||||
{
|
{
|
||||||
hide_all();
|
hide ();
|
||||||
|
|
||||||
set_modal (false);
|
set_modal (false);
|
||||||
ok_button->set_sensitive(true);
|
ok_button->set_sensitive(true);
|
||||||
|
|
|
||||||
|
|
@ -605,7 +605,7 @@ template <typename DataSet>
|
||||||
void
|
void
|
||||||
SessionMetadataDialog<DataSet>::end_dialog ()
|
SessionMetadataDialog<DataSet>::end_dialog ()
|
||||||
{
|
{
|
||||||
hide_all();
|
hide ();
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename DataSet>
|
template <typename DataSet>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue