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