Mercurial > audlegacy
annotate audacious/about.c @ 2065:598564ddc4e9 trunk
[svn] - no, this is not going to work
| author | nenolod |
|---|---|
| date | Thu, 07 Dec 2006 00:22:55 -0800 |
| parents | 4ab001eeef36 |
| children | f18a5b617c34 |
| rev | line source |
|---|---|
| 0 | 1 /* XMMS - Cross-platform multimedia player |
| 2 * Copyright (C) 1998-2003 Peter Alm, Mikael Alm, Olle Hallnas, | |
| 3 * Thomas Nilsson and 4Front Technologies | |
| 4 * Copyright (C) 2000-2003 Haavard Kvaalen | |
| 5 * | |
| 6 * This program is free software; you can redistribute it and/or modify | |
| 1460 | 7 * it under the terms of the GNU General Public License as published by |
| 0 | 8 * the Free Software Foundation; either version 2 of the License, or |
| 9 * (at your option) any later version. | |
| 10 * | |
| 11 * This program is distributed in the hope that it will be useful, | |
| 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 * GNU General Public License for more details. | |
| 15 * | |
| 16 * You should have received a copy of the GNU General Public License | |
| 17 * along with this program; if not, write to the Free Software | |
| 1459 | 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 0 | 19 */ |
| 20 | |
| 21 #ifdef HAVE_CONFIG_H | |
| 22 # include "config.h" | |
| 23 #endif | |
| 24 | |
| 471 | 25 #include "credits.h" |
| 0 | 26 |
| 27 #include <glib.h> | |
| 28 #include <glib/gi18n.h> | |
| 29 #include <gtk/gtk.h> | |
| 30 | |
| 1640 | 31 #include "platform/smartinclude.h" |
| 32 | |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
33 static GtkWidget *about_window = NULL; |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
34 static GdkPixbuf *about_pixbuf = NULL; |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
35 static GdkPixmap *mask_pixmap_window1 = NULL, |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
36 *mask_pixmap_window2 = NULL; |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
37 static GdkBitmap *mask_bitmap_window1 = NULL, |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
38 *mask_bitmap_window2 = NULL; |
| 529 | 39 |
| 40 static const gchar *audacious_brief = "<big><b>Audacious %s</b></big>\n\n" | |
| 945 | 41 "Copyright (C) 2005-2006 Audacious Development Team"; |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
42 |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
43 static gboolean |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
44 on_about_window_expose(GtkWidget *widget, GdkEventExpose *expose, gpointer data) |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
45 { |
| 504 | 46 g_return_val_if_fail(GTK_IS_WIDGET (widget), FALSE); |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
47 |
| 504 | 48 gdk_window_set_back_pixmap(GDK_WINDOW(widget->window), mask_pixmap_window2, 0); |
| 49 gdk_window_clear(GDK_WINDOW(widget->window)); | |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
50 |
| 504 | 51 return FALSE; |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
52 } |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
53 |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
54 static gboolean |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
55 on_about_window_key_press (GtkWidget *widget, GdkEventKey *event, gpointer data) |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
56 { |
| 504 | 57 g_return_val_if_fail(GTK_IS_WIDGET (widget), FALSE); |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
58 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
59 if (event->keyval == GDK_Escape) |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
60 { |
| 504 | 61 gtk_widget_hide(widget); |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
62 } |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
63 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
64 return FALSE; |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
65 } |
| 0 | 66 |
| 504 | 67 static gboolean |
| 68 on_close_button_clicked (GtkWidget *widget, gpointer data) | |
| 69 { | |
| 70 g_return_val_if_fail(GTK_IS_WIDGET (widget), FALSE); | |
| 71 | |
| 72 gtk_widget_hide(about_window); | |
| 73 | |
| 74 return FALSE; | |
| 75 } | |
| 76 | |
| 77 static gboolean | |
| 78 on_credits_button_clicked (GtkWidget *widget, gpointer data) | |
| 79 { | |
| 80 g_return_val_if_fail(GTK_IS_WIDGET (widget), FALSE); | |
| 81 | |
| 82 show_credits_window(); | |
| 83 | |
| 84 return FALSE; | |
| 85 } | |
| 86 | |
| 0 | 87 void |
| 88 show_about_window(void) | |
| 89 { | |
| 502 | 90 GtkWidget *about_fixedbox; |
| 91 GtkWidget *close_button; | |
| 510 | 92 GtkWidget *credits_button , *credits_button_hbox, *credits_button_image, *credits_button_label; |
| 529 | 93 GtkWidget *brief_label; |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
94 gchar *filename = DATA_DIR G_DIR_SEPARATOR_S "images" G_DIR_SEPARATOR_S "about-logo.png"; |
| 529 | 95 gchar *text; |
| 96 PangoAttrList *brief_label_attrs; | |
| 97 PangoAttribute *brief_label_foreground; | |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
98 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
99 if (about_window != NULL) |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
100 { |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
101 gtk_window_present(GTK_WINDOW(about_window)); |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
102 return; |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
103 } |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
104 |
|
1895
4ab001eeef36
[svn] - make sure the proper wmclass is being set here.
nenolod
parents:
1754
diff
changeset
|
105 about_window = gtk_window_new(GTK_WINDOW_TOPLEVEL); |
|
1086
e2dbacdab58a
[svn] - About window should be set to 'always on top'
nhjm449
parents:
945
diff
changeset
|
106 |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
107 g_signal_connect(about_window, "destroy", |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
108 G_CALLBACK(gtk_widget_destroyed), &about_window); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
109 |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
110 gtk_widget_realize(about_window); |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
111 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
112 about_pixbuf = gdk_pixbuf_new_from_file(filename, NULL); |
| 0 | 113 |
| 504 | 114 gtk_widget_set_size_request(GTK_WIDGET (about_window), |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
115 gdk_pixbuf_get_width (about_pixbuf), |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
116 gdk_pixbuf_get_height (about_pixbuf)); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
117 |
| 504 | 118 gtk_widget_set_app_paintable(about_window, TRUE); |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
119 gtk_window_set_title(GTK_WINDOW(about_window), _("About Audacious")); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
120 gtk_window_set_position(GTK_WINDOW(about_window), GTK_WIN_POS_CENTER); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
121 gtk_window_set_resizable(GTK_WINDOW(about_window), FALSE); |
| 505 | 122 gtk_window_set_decorated(GTK_WINDOW(about_window), FALSE); |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
123 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
124 gdk_pixbuf_render_pixmap_and_mask(about_pixbuf, |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
125 &mask_pixmap_window1, |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
126 &mask_bitmap_window1, |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
127 0); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
128 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
129 gdk_pixbuf_render_pixmap_and_mask(about_pixbuf, |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
130 &mask_pixmap_window2, |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
131 &mask_bitmap_window2, |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
132 128); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
133 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
134 gtk_widget_add_events(about_window, GDK_ALL_EVENTS_MASK); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
135 |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
136 g_signal_connect(about_window, "expose-event", |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
137 G_CALLBACK(on_about_window_expose), &about_window); |
|
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
138 |
|
474
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
139 g_signal_connect(about_window, "key-press-event", |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
140 G_CALLBACK(on_about_window_key_press), &about_window); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
141 |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
142 gtk_widget_shape_combine_mask(GTK_WIDGET(about_window), mask_bitmap_window2, 0, 0); |
|
f3b46533da81
[svn] Experimental about box stuff... doesnt work right yet. Work in progress!
nenolod
parents:
471
diff
changeset
|
143 |
| 502 | 144 /* GtkFixed hasn't got its GdkWindow, this means that it can be used to |
| 145 display widgets while the logo below will be displayed anyway; | |
| 513 | 146 however fixed positions are not that great, cause the button sizes may (will) |
| 502 | 147 vary depending on the gtk style used, so it's not possible to center |
| 513 | 148 them unless a fixed width and heigth is forced (and this may bring to cutted |
| 502 | 149 text if someone, i.e., uses a big font for gtk widgets); |
| 150 other types of container most likely have their GdkWindow, this simply | |
| 151 means that the logo must be drawn on the container widget, instead of the | |
| 152 window; otherwise, it won't be displayed correctly */ | |
| 153 about_fixedbox = gtk_fixed_new(); | |
| 154 gtk_container_add( GTK_CONTAINER(about_window) , about_fixedbox ); | |
| 155 | |
| 156 close_button = gtk_button_new_from_stock(GTK_STOCK_CLOSE); | |
| 504 | 157 |
| 158 g_signal_connect(close_button, "clicked", | |
| 159 G_CALLBACK(on_close_button_clicked), NULL); | |
| 160 | |
| 529 | 161 gtk_fixed_put( GTK_FIXED(about_fixedbox) , close_button , 375 , 220 ); |
| 513 | 162 gtk_widget_set_size_request( close_button , 100 , -1 ); |
| 502 | 163 |
| 510 | 164 credits_button = gtk_button_new(); |
| 165 credits_button_hbox = gtk_hbox_new( FALSE , 0 ); | |
| 166 credits_button_image = gtk_image_new_from_stock( GTK_STOCK_DIALOG_INFO , GTK_ICON_SIZE_BUTTON ); | |
| 513 | 167 gtk_misc_set_alignment( GTK_MISC(credits_button_image) , 1 , 0.5 ); |
| 511 | 168 credits_button_label = gtk_label_new( _("Credits") ); |
| 513 | 169 gtk_misc_set_alignment( GTK_MISC(credits_button_label) , 0 , 0.5 ); |
| 510 | 170 gtk_box_pack_start( GTK_BOX(credits_button_hbox) , credits_button_image , |
| 513 | 171 TRUE , TRUE , 2 ); |
| 510 | 172 gtk_box_pack_start( GTK_BOX(credits_button_hbox) , credits_button_label , |
| 513 | 173 TRUE , TRUE , 2 ); |
| 510 | 174 gtk_container_add( GTK_CONTAINER(credits_button) , credits_button_hbox ); |
| 504 | 175 |
| 176 g_signal_connect(credits_button, "clicked", | |
| 177 G_CALLBACK(on_credits_button_clicked), NULL); | |
| 178 | |
| 529 | 179 gtk_fixed_put( GTK_FIXED(about_fixedbox) , credits_button , 25 , 220 ); |
| 513 | 180 gtk_widget_set_size_request( credits_button , 100 , -1 ); |
| 504 | 181 |
| 529 | 182 brief_label = gtk_label_new(NULL); |
| 183 text = g_strdup_printf(_(audacious_brief), VERSION); | |
| 184 | |
| 185 brief_label_foreground = pango_attr_foreground_new(0, 0, 0); | |
| 186 brief_label_attrs = pango_attr_list_new(); | |
| 187 pango_attr_list_insert(brief_label_attrs, brief_label_foreground); | |
| 188 | |
| 189 gtk_label_set_markup(GTK_LABEL(brief_label), text); | |
| 190 gtk_label_set_justify(GTK_LABEL(brief_label), GTK_JUSTIFY_CENTER); | |
| 191 gtk_label_set_attributes(GTK_LABEL(brief_label), brief_label_attrs); | |
| 192 g_free(text); | |
| 193 | |
| 547 | 194 gtk_fixed_put(GTK_FIXED(about_fixedbox), brief_label, 20, 145); |
| 195 gtk_widget_set_size_request( brief_label , 460 , -1 ); | |
| 529 | 196 |
| 502 | 197 gtk_widget_show_all(about_window); |
|
475
cd5793de075c
[svn] More progress towards the about window, no more background being overwritten... we were forgetting to tell X that the window was paintable.
nenolod
parents:
474
diff
changeset
|
198 gtk_window_present(GTK_WINDOW(about_window)); |
| 0 | 199 } |
