summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2007-06-29 21:12:52 +0000
committerDoug McLain <doug@nostar.net>2007-06-29 21:12:52 +0000
commit685fa95e729e5d510b28b4c715da062e9db580d9 (patch)
tree00cecdbb300b0c72261ecdb20dd18a2b9b10ce2a
parent69ea58691945606219de487a41532de376e7047e (diff)
only do the widget packing style hack once, instead of everytime there is a theme change
git-svn-id: svn://localhost/ardour2/trunk@2091 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/theme_manager.cc10
-rw-r--r--libs/gtkmm2ext/gtk_ui.cc13
-rw-r--r--libs/gtkmm2ext/gtkmm2ext/gtk_ui.h2
3 files changed, 13 insertions, 12 deletions
diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc
index fd7d7d92b5..d89ca812f8 100644
--- a/gtk2_ardour/theme_manager.cc
+++ b/gtk2_ardour/theme_manager.cc
@@ -178,7 +178,7 @@ ThemeManager::button_press_event (GdkEventButton* ev)
}
void
-load_rc_file (const string& filename)
+load_rc_file (const string& filename, bool themechange)
{
sys::path rc_file_path;
@@ -196,7 +196,7 @@ load_rc_file (const string& filename)
info << "Loading ui configuration file " << rc_file_path.to_string() << endmsg;
- Gtkmm2ext::UI::instance()->load_rcfile (rc_file_path.to_string());
+ Gtkmm2ext::UI::instance()->load_rcfile (rc_file_path.to_string(), themechange);
}
void
@@ -205,7 +205,7 @@ ThemeManager::on_dark_theme_button_toggled()
if (!dark_button.get_active()) return;
ARDOUR_UI::config()->ui_rc_file.set("ardour2_ui_dark.rc");
- load_rc_file (ARDOUR_UI::config()->ui_rc_file.get());
+ load_rc_file (ARDOUR_UI::config()->ui_rc_file.get(), true);
}
void
@@ -214,7 +214,7 @@ ThemeManager::on_light_theme_button_toggled()
if (!light_button.get_active()) return;
ARDOUR_UI::config()->ui_rc_file.set("ardour2_ui_light.rc");
- load_rc_file (ARDOUR_UI::config()->ui_rc_file.get());
+ load_rc_file (ARDOUR_UI::config()->ui_rc_file.get(), true);
}
void
@@ -254,6 +254,6 @@ ThemeManager::setup_theme ()
light_button.set_active();
}
- load_rc_file(rcfile);
+ load_rc_file(rcfile, false);
}
diff --git a/libs/gtkmm2ext/gtk_ui.cc b/libs/gtkmm2ext/gtk_ui.cc
index 2e130f066e..442a5a22de 100644
--- a/libs/gtkmm2ext/gtk_ui.cc
+++ b/libs/gtkmm2ext/gtk_ui.cc
@@ -114,7 +114,7 @@ UI::caller_is_ui_thread ()
}
int
-UI::load_rcfile (string path)
+UI::load_rcfile (string path, bool themechange)
{
if (path.length() == 0) {
return -1;
@@ -129,6 +129,12 @@ UI::load_rcfile (string path)
}
RC rc (path.c_str());
+ RC::reset_styles(Gtk::Settings::get_default());
+ theme_changed.emit();
+
+ if (themechange) {
+ return 0; //Don't continue on every time there is a theme change
+ }
/* have to pack widgets into a toplevel window so that styles will stick */
@@ -199,11 +205,6 @@ UI::load_rcfile (string path)
info_mtag->property_foreground_gdk().set_value(style->get_fg(STATE_NORMAL));
info_mtag->property_background_gdk().set_value(style->get_bg(STATE_NORMAL));
-
- RC::reset_styles(Gtk::Settings::get_default());
-
- theme_changed.emit();
-
return 0;
}
diff --git a/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h b/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h
index 37945fd490..0c2ff0d798 100644
--- a/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h
+++ b/libs/gtkmm2ext/gtkmm2ext/gtk_ui.h
@@ -107,7 +107,7 @@ class UI : public Receiver, public AbstractUI<UIRequest>
bool running ();
void quit ();
void kill ();
- int load_rcfile (string);
+ int load_rcfile (string, bool themechange = false);
void run (Receiver &old_receiver);
void set_state (Gtk::Widget *w, Gtk::StateType state);