mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Restore "Main" UI Tab setting from sesion instant.xml
Previously this setting was ignored. It is relevant when loading a demo session, where initially there is no user Config instant.xml. ARDOUR_UI::setup_windows is called directly after the engine starts, but before the session is set.
This commit is contained in:
parent
bfedf7168e
commit
acf13e9498
3 changed files with 70 additions and 56 deletions
|
|
@ -445,6 +445,7 @@ private:
|
||||||
void toggle_meterbridge ();
|
void toggle_meterbridge ();
|
||||||
|
|
||||||
int setup_windows ();
|
int setup_windows ();
|
||||||
|
int apply_window_settings (bool);
|
||||||
void setup_transport ();
|
void setup_transport ();
|
||||||
void setup_clock ();
|
void setup_clock ();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -344,62 +344,6 @@ ARDOUR_UI::setup_windows ()
|
||||||
_main_window.add (main_vpacker);
|
_main_window.add (main_vpacker);
|
||||||
transport_frame.show_all ();
|
transport_frame.show_all ();
|
||||||
|
|
||||||
const XMLNode* mnode = main_window_settings ();
|
|
||||||
|
|
||||||
if (mnode) {
|
|
||||||
XMLProperty const * prop;
|
|
||||||
gint x = -1;
|
|
||||||
gint y = -1;
|
|
||||||
gint w = -1;
|
|
||||||
gint h = -1;
|
|
||||||
|
|
||||||
if ((prop = mnode->property (X_("x"))) != 0) {
|
|
||||||
x = atoi (prop->value());
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((prop = mnode->property (X_("y"))) != 0) {
|
|
||||||
y = atoi (prop->value());
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((prop = mnode->property (X_("w"))) != 0) {
|
|
||||||
w = atoi (prop->value());
|
|
||||||
}
|
|
||||||
|
|
||||||
if ((prop = mnode->property (X_("h"))) != 0) {
|
|
||||||
h = atoi (prop->value());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (x >= 0 && y >= 0 && w >= 0 && h >= 0) {
|
|
||||||
_main_window.set_position (Gtk::WIN_POS_NONE);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (x >= 0 && y >= 0) {
|
|
||||||
_main_window.move (x, y);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (w > 0 && h > 0) {
|
|
||||||
_main_window.set_default_size (w, h);
|
|
||||||
}
|
|
||||||
|
|
||||||
std::string current_tab;
|
|
||||||
|
|
||||||
if ((prop = mnode->property (X_("current-tab"))) != 0) {
|
|
||||||
current_tab = prop->value();
|
|
||||||
} else {
|
|
||||||
current_tab = "editor";
|
|
||||||
}
|
|
||||||
if (mixer && current_tab == "mixer") {
|
|
||||||
_tabs.set_current_page (_tabs.page_num (mixer->contents()));
|
|
||||||
} else if (rc_option_editor && current_tab == "preferences") {
|
|
||||||
_tabs.set_current_page (_tabs.page_num (rc_option_editor->contents()));
|
|
||||||
} else if (recorder && current_tab == "recorder") {
|
|
||||||
_tabs.set_current_page (_tabs.page_num (recorder->contents()));
|
|
||||||
} else if (recorder && current_tab == "trigger") {
|
|
||||||
_tabs.set_current_page (_tabs.page_num (trigger_page->contents()));
|
|
||||||
} else if (editor) {
|
|
||||||
_tabs.set_current_page (_tabs.page_num (editor->contents()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
setup_toplevel_window (_main_window, "", this);
|
setup_toplevel_window (_main_window, "", this);
|
||||||
_main_window.show_all ();
|
_main_window.show_all ();
|
||||||
|
|
@ -416,6 +360,74 @@ ARDOUR_UI::setup_windows ()
|
||||||
LV2Plugin::set_main_window_id (GDK_DRAWABLE_XID(_main_window.get_window()->gobj()));
|
LV2Plugin::set_main_window_id (GDK_DRAWABLE_XID(_main_window.get_window()->gobj()));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
return apply_window_settings (true);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
ARDOUR_UI::apply_window_settings (bool with_size)
|
||||||
|
{
|
||||||
|
const XMLNode* mnode = main_window_settings ();
|
||||||
|
|
||||||
|
if (!mnode) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
XMLProperty const * prop;
|
||||||
|
gint x = -1;
|
||||||
|
gint y = -1;
|
||||||
|
gint w = -1;
|
||||||
|
gint h = -1;
|
||||||
|
|
||||||
|
if ((prop = mnode->property (X_("x"))) != 0) {
|
||||||
|
x = atoi (prop->value());
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((prop = mnode->property (X_("y"))) != 0) {
|
||||||
|
y = atoi (prop->value());
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((prop = mnode->property (X_("w"))) != 0) {
|
||||||
|
w = atoi (prop->value());
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((prop = mnode->property (X_("h"))) != 0) {
|
||||||
|
h = atoi (prop->value());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (x >= 0 && y >= 0 && w >= 0 && h >= 0) {
|
||||||
|
_main_window.set_position (Gtk::WIN_POS_NONE);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (x >= 0 && y >= 0) {
|
||||||
|
_main_window.move (x, y);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (w > 0 && h > 0) {
|
||||||
|
_main_window.set_default_size (w, h);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string current_tab;
|
||||||
|
|
||||||
|
if ((prop = mnode->property (X_("current-tab"))) != 0) {
|
||||||
|
current_tab = prop->value();
|
||||||
|
} else {
|
||||||
|
current_tab = "editor";
|
||||||
|
}
|
||||||
|
|
||||||
|
std::cout << "CURRENT TAB: " << current_tab << "\n";
|
||||||
|
|
||||||
|
|
||||||
|
if (mixer && current_tab == "mixer") {
|
||||||
|
_tabs.set_current_page (_tabs.page_num (mixer->contents()));
|
||||||
|
} else if (rc_option_editor && current_tab == "preferences") {
|
||||||
|
_tabs.set_current_page (_tabs.page_num (rc_option_editor->contents()));
|
||||||
|
} else if (recorder && current_tab == "recorder") {
|
||||||
|
_tabs.set_current_page (_tabs.page_num (recorder->contents()));
|
||||||
|
} else if (recorder && current_tab == "trigger") {
|
||||||
|
_tabs.set_current_page (_tabs.page_num (trigger_page->contents()));
|
||||||
|
} else if (editor) {
|
||||||
|
_tabs.set_current_page (_tabs.page_num (editor->contents()));
|
||||||
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -143,6 +143,7 @@ ARDOUR_UI::set_session (Session *s)
|
||||||
}
|
}
|
||||||
|
|
||||||
WM::Manager::instance().set_session (s);
|
WM::Manager::instance().set_session (s);
|
||||||
|
apply_window_settings (false);
|
||||||
|
|
||||||
AutomationWatch::instance().set_session (s);
|
AutomationWatch::instance().set_session (s);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue