Handle setting the currently running window manager properly.

2002-06-04  Seth Nickell  <snickell@stanford.edu>

	* gnome-window-properties.c: (set_wm_change_pending),
	(wm_selection_changed), (wm_widget_add_wm), (apply_wm),
	(setup_appearance_option_menu), (appearance_changed),
	(setup_dialog), (main):
	* gnome-window-properties.glade:
	* metacity-window-manager.c: (metacity_get_theme_list):

	Handle setting the currently running window manager properly.

	Get the theme list, and make changes based on it to the GConf setting.
This commit is contained in:
Seth Nickell 2002-06-04 22:58:35 +00:00 committed by Seth Nickell
parent 0fb92f8bad
commit 059bd84cef
4 changed files with 122 additions and 41 deletions

View file

@ -24,7 +24,15 @@ metacity_set_theme (const char *theme_name)
static GList *
metacity_get_theme_list (void)
{
return NULL;
GList *themes = NULL;
themes = g_list_prepend (themes, g_strdup ("Crux"));
themes = g_list_prepend (themes, g_strdup ("Atlanta"));
themes = g_list_prepend (themes, g_strdup ("Butt Ugly XRP"));
themes = g_list_prepend (themes, g_strdup ("ForMyGirlFriend"));
themes = g_list_prepend (themes, g_strdup ("Themes.orgRocks"));
return themes;
}
static void