mirror of
https://github.com/brl/mutter.git
synced 2024-11-24 17:10:40 -05:00
display the theme name in the title bar. Closes #430198.
2008-06-30 Thomas Thurman <tthurman@gnome.org> * src/ui/theme-viewer.c (main): display the theme name in the title bar. Closes #430198. svn path=/trunk/; revision=3776
This commit is contained in:
parent
7988361eab
commit
bd0a531253
@ -1,3 +1,8 @@
|
|||||||
|
2008-06-30 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
|
* src/ui/theme-viewer.c (main): display the theme name
|
||||||
|
in the title bar. Closes #430198.
|
||||||
|
|
||||||
2008-06-29 Thomas Thurman <tthurman@gnome.org>
|
2008-06-29 Thomas Thurman <tthurman@gnome.org>
|
||||||
|
|
||||||
Allow toggling of non-compositor effects (since there's a
|
Allow toggling of non-compositor effects (since there's a
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
#include <libintl.h>
|
#include <libintl.h>
|
||||||
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
#define _(x) dgettext (GETTEXT_PACKAGE, x)
|
||||||
@ -816,6 +817,24 @@ main (int argc, char **argv)
|
|||||||
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||||
gtk_window_set_default_size (GTK_WINDOW (window), 350, 350);
|
gtk_window_set_default_size (GTK_WINDOW (window), 350, 350);
|
||||||
|
|
||||||
|
if (strcmp (global_theme->name, global_theme->readable_name)==0)
|
||||||
|
gtk_window_set_title (GTK_WINDOW (window),
|
||||||
|
global_theme->readable_name);
|
||||||
|
else
|
||||||
|
{
|
||||||
|
/* The theme directory name is different from the name the theme
|
||||||
|
* gives itself within its file. Display both, directory name first.
|
||||||
|
*/
|
||||||
|
gchar *title = g_strconcat (global_theme->name, " - ",
|
||||||
|
global_theme->readable_name,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gtk_window_set_title (GTK_WINDOW (window),
|
||||||
|
title);
|
||||||
|
|
||||||
|
g_free (title);
|
||||||
|
}
|
||||||
|
|
||||||
g_signal_connect (G_OBJECT (window), "destroy",
|
g_signal_connect (G_OBJECT (window), "destroy",
|
||||||
G_CALLBACK (gtk_main_quit), NULL);
|
G_CALLBACK (gtk_main_quit), NULL);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user