1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2002 Jorn Baayen <jorn@nl.linux.org>
* Copyright (C) 2003 Colin Walters <walters@debian.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* The Rhythmbox authors hereby grant permission for non-GPL compatible
* GStreamer plugins to be used and distributed together with GStreamer
* and Rhythmbox. This permission is above and beyond the permissions granted
* by the GPL license by which Rhythmbox is covered. If you modify this code
* you may extend this exception to your version of the code, but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
/**
* SECTION:rb-shell-preferences
* @short_description: preferences dialog
*
* The preferences dialog is built around a #GtkNotebook widget, with two built-in
* pages and additional pages for various sources.
*
* The 'general' preferences page controls the set of browser views that are visible
* (artist and album; genre and artist; or genre, artist, and album), the columns
* that are visible, and the appearance of buttons in the main toolbar. The browser
* and column settings apply to all sources.
*
* The 'playback' preferences page controls whether the crossfading player backend is used,
* and if enabled, the crossfade duration and network buffer size.
*
* Currently, the library and podcast sources add pages to the notebook, for configuring the
* location and layout of the library and the podcast download location and update frequency.
*/
#include <config.h>
#include <string.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include "rb-file-helpers.h"
#include "rb-shell-preferences.h"
#include "rb-source.h"
#include "rb-builder-helpers.h"
#include "rb-dialog.h"
#include "rb-debug.h"
#include "rb-shell.h"
#include "rb-util.h"
static void rb_shell_preferences_class_init (RBShellPreferencesClass *klass);
static void rb_shell_preferences_init (RBShellPreferences *shell_preferences);
static void impl_finalize (GObject *object);
static void impl_dispose (GObject *object);
static gboolean rb_shell_preferences_window_delete_cb (GtkWidget *window,
GdkEventAny *event,
RBShellPreferences *shell_preferences);
static void rb_shell_preferences_response_cb (GtkDialog *dialog,
int response_id,
RBShellPreferences *shell_preferences);
void rb_shell_preferences_column_check_changed_cb (GtkCheckButton *butt,
RBShellPreferences *shell_preferences);
void rb_shell_preferences_browser_views_activated_cb (GtkWidget *widget,
RBShellPreferences *shell_preferences);
static void column_check_toggled_cb (GtkWidget *widget, RBShellPreferences *preferences);
static void player_settings_changed_cb (GSettings *settings, const char *key, RBShellPreferences *preferences);
static void source_settings_changed_cb (GSettings *settings, const char *key, RBShellPreferences *preferences);
static void transition_time_changed_cb (GtkRange *range, RBShellPreferences *preferences);
enum
{
PROP_0,
};
#define COLUMN_CHECK_PROP_NAME "rb-column-prop-name"
struct {
const char *widget;
RhythmDBPropType prop;
} column_checks[] = {
{ "track_check", RHYTHMDB_PROP_TRACK_NUMBER },
{ "artist_check", RHYTHMDB_PROP_ARTIST },
{ "composer_check", RHYTHMDB_PROP_COMPOSER },
{ "album_check", RHYTHMDB_PROP_ALBUM },
{ "year_check", RHYTHMDB_PROP_DATE },
{ "last_played_check", RHYTHMDB_PROP_LAST_PLAYED },
{ "genre_check", RHYTHMDB_PROP_GENRE },
{ "first_seen_check", RHYTHMDB_PROP_FIRST_SEEN },
{ "play_count_check", RHYTHMDB_PROP_PLAY_COUNT },
{ "comment_check", RHYTHMDB_PROP_COMMENT },
{ "bpm_check", RHYTHMDB_PROP_BPM },
{ "rating_check", RHYTHMDB_PROP_RATING },
{ "duration_check", RHYTHMDB_PROP_DURATION },
{ "location_check", RHYTHMDB_PROP_LOCATION },
{ "quality_check", RHYTHMDB_PROP_BITRATE }
};
struct RBShellPreferencesPrivate
{
GtkWidget *notebook;
GHashTable *column_checks;
GtkWidget *general_prefs_plugin_box;
GtkWidget *xfade_backend_check;
GtkWidget *transition_duration;
GtkWidget *playback_prefs_plugin_box;
GSList *browser_views_group;
gboolean applying_settings;
GSettings *main_settings;
GSettings *source_settings;
GSettings *player_settings;
};
G_DEFINE_TYPE (RBShellPreferences, rb_shell_preferences, GTK_TYPE_DIALOG)
static void
rb_shell_preferences_class_init (RBShellPreferencesClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = impl_finalize;
object_class->dispose = impl_dispose;
g_type_class_add_private (klass, sizeof (RBShellPreferencesPrivate));
}
static void
help_cb (GtkWidget *widget,
RBShellPreferences *shell_preferences)
{
GError *error = NULL;
gtk_show_uri (gtk_widget_get_screen (widget),
"help:rhythmbox/prefs",
gtk_get_current_event_time (),
&error);
if (error != NULL) {
rb_error_dialog (NULL,
_("Couldn't display help"),
"%s", error->message);
g_error_free (error);
}
}
static void
rb_shell_preferences_init (RBShellPreferences *shell_preferences)
{
GtkWidget *tmp;
GtkWidget *content_area;
GtkBuilder *builder;
int i;
shell_preferences->priv = G_TYPE_INSTANCE_GET_PRIVATE (shell_preferences,
RB_TYPE_SHELL_PREFERENCES,
RBShellPreferencesPrivate);
g_signal_connect_object (shell_preferences,
"delete_event",
G_CALLBACK (rb_shell_preferences_window_delete_cb),
shell_preferences, 0);
g_signal_connect_object (shell_preferences,
"response",
G_CALLBACK (rb_shell_preferences_response_cb),
shell_preferences, 0);
gtk_dialog_add_button (GTK_DIALOG (shell_preferences),
GTK_STOCK_CLOSE,
GTK_RESPONSE_CLOSE);
tmp = gtk_dialog_add_button (GTK_DIALOG (shell_preferences),
GTK_STOCK_HELP,
GTK_RESPONSE_HELP);
g_signal_connect_object (tmp, "clicked",
G_CALLBACK (help_cb), shell_preferences, 0);
gtk_dialog_set_default_response (GTK_DIALOG (shell_preferences),
GTK_RESPONSE_CLOSE);
gtk_window_set_title (GTK_WINDOW (shell_preferences), _("Rhythmbox Preferences"));
gtk_window_set_resizable (GTK_WINDOW (shell_preferences), FALSE);
shell_preferences->priv->notebook = GTK_WIDGET (gtk_notebook_new ());
gtk_container_set_border_width (GTK_CONTAINER (shell_preferences->priv->notebook), 5);
content_area = gtk_dialog_get_content_area (GTK_DIALOG (shell_preferences));
gtk_container_add (GTK_CONTAINER (content_area),
shell_preferences->priv->notebook);
gtk_container_set_border_width (GTK_CONTAINER (shell_preferences), 5);
gtk_box_set_spacing (GTK_BOX (content_area), 2);
shell_preferences->priv->source_settings = g_settings_new ("org.gnome.rhythmbox.sources");
builder = rb_builder_load ("general-prefs.ui", shell_preferences);
rb_builder_boldify_label (builder, "visible_columns_label");
/* Columns */
shell_preferences->priv->column_checks = g_hash_table_new (g_str_hash, g_str_equal);
for (i = 0; i < G_N_ELEMENTS (column_checks); i++) {
GtkWidget *widget;
const char *name;
widget = GTK_WIDGET (gtk_builder_get_object (builder, column_checks[i].widget));
/* XXX kind of nasty, we know rhythmdb_nice_elt_name_from_propid doesn't actually use the db */
name = (const char *)rhythmdb_nice_elt_name_from_propid (NULL, column_checks[i].prop);
g_assert (name != NULL);
g_signal_connect_object (widget, "toggled", G_CALLBACK (column_check_toggled_cb), shell_preferences, 0);
g_object_set_data (G_OBJECT (widget), COLUMN_CHECK_PROP_NAME, (gpointer)name);
g_hash_table_insert (shell_preferences->priv->column_checks, (gpointer)name, widget);
}
/* browser options */
rb_builder_boldify_label (builder, "browser_views_label");
tmp = GTK_WIDGET (gtk_builder_get_object (builder, "library_browser_views_radio"));
shell_preferences->priv->browser_views_group =
g_slist_reverse (g_slist_copy (gtk_radio_button_get_group
(GTK_RADIO_BUTTON (tmp))));
gtk_notebook_append_page (GTK_NOTEBOOK (shell_preferences->priv->notebook),
GTK_WIDGET (gtk_builder_get_object (builder, "general_vbox")),
gtk_label_new (_("General")));
g_signal_connect_object (shell_preferences->priv->source_settings,
"changed",
G_CALLBACK (source_settings_changed_cb),
shell_preferences, 0);
source_settings_changed_cb (shell_preferences->priv->source_settings,
"visible-columns",
shell_preferences);
source_settings_changed_cb (shell_preferences->priv->source_settings,
"browser-views",
shell_preferences);
shell_preferences->priv->main_settings = g_settings_new ("org.gnome.rhythmbox");
/* box for stuff added by plugins */
shell_preferences->priv->general_prefs_plugin_box =
GTK_WIDGET (gtk_builder_get_object (builder, "plugin_box"));
g_object_unref (builder);
builder = rb_builder_load ("playback-prefs.ui", shell_preferences);
/* playback preferences */
rb_builder_boldify_label (builder, "backend_label");
rb_builder_boldify_label (builder, "duration_label");
shell_preferences->priv->xfade_backend_check =
GTK_WIDGET (gtk_builder_get_object (builder, "use_xfade_backend"));
shell_preferences->priv->transition_duration =
GTK_WIDGET (gtk_builder_get_object (builder, "duration"));
shell_preferences->priv->playback_prefs_plugin_box =
GTK_WIDGET (gtk_builder_get_object (builder, "plugin_box"));
shell_preferences->priv->player_settings = g_settings_new ("org.gnome.rhythmbox.player");
g_signal_connect_object (shell_preferences->priv->player_settings,
"changed",
G_CALLBACK (player_settings_changed_cb),
shell_preferences, 0);
player_settings_changed_cb (shell_preferences->priv->player_settings,
"transition-time",
shell_preferences);
g_settings_bind (shell_preferences->priv->player_settings,
"use-xfade-backend",
shell_preferences->priv->xfade_backend_check,
"active",
G_SETTINGS_BIND_DEFAULT);
/* unfortunately the GtkRange value can't be bound to a GSettings key.. */
g_settings_bind (shell_preferences->priv->player_settings,
"use-xfade-backend",
shell_preferences->priv->transition_duration,
"sensitive",
G_SETTINGS_BIND_GET | G_SETTINGS_BIND_SET | G_SETTINGS_BIND_NO_SENSITIVITY);
g_signal_connect_object (gtk_builder_get_object (builder, "duration"),
"value-changed",
G_CALLBACK (transition_time_changed_cb),
shell_preferences, 0);
gtk_notebook_append_page (GTK_NOTEBOOK (shell_preferences->priv->notebook),
GTK_WIDGET (gtk_builder_get_object (builder, "playback_prefs_box")),
gtk_label_new (_("Playback")));
g_object_unref (builder);
}
static void
impl_dispose (GObject *object)
{
RBShellPreferences *shell_preferences = RB_SHELL_PREFERENCES (object);
if (shell_preferences->priv->main_settings != NULL) {
g_object_unref (shell_preferences->priv->main_settings);
shell_preferences->priv->main_settings = NULL;
}
if (shell_preferences->priv->source_settings != NULL) {
g_object_unref (shell_preferences->priv->source_settings);
shell_preferences->priv->source_settings = NULL;
}
if (shell_preferences->priv->player_settings != NULL) {
rb_settings_delayed_sync (shell_preferences->priv->player_settings, NULL, NULL, NULL);
g_object_unref (shell_preferences->priv->player_settings);
shell_preferences->priv->player_settings = NULL;
}
G_OBJECT_CLASS (rb_shell_preferences_parent_class)->dispose (object);
}
static void
impl_finalize (GObject *object)
{
/*RBShellPreferences *shell_preferences = RB_SHELL_PREFERENCES (object);*/
/* anything to do here? */
G_OBJECT_CLASS (rb_shell_preferences_parent_class)->finalize (object);
}
/**
* rb_shell_preferences_append_page:
* @prefs: the #RBShellPreferences instance
* @name: name of the page to append
* @widget: the #GtkWidget to use as the contents of the page
*
* Appends a new page to the preferences dialog notebook.
*/
void
rb_shell_preferences_append_page (RBShellPreferences *prefs,
const char *name,
GtkWidget *widget)
{
GtkWidget *label;
label = gtk_label_new (name);
gtk_notebook_append_page (GTK_NOTEBOOK (prefs->priv->notebook),
widget,
label);
}
static void
rb_shell_preferences_append_view_page (RBShellPreferences *prefs,
const char *name,
RBDisplayPage *page)
{
GtkWidget *widget;
g_return_if_fail (RB_IS_SHELL_PREFERENCES (prefs));
g_return_if_fail (RB_IS_DISPLAY_PAGE (page));
widget = rb_display_page_get_config_widget (page, prefs);
if (!widget)
return;
rb_shell_preferences_append_page (prefs, name, widget);
}
/**
* rb_shell_preferences_new:
* @views: (element-type RB.Source) (transfer none): list of sources to check for preferences pages
*
* Creates the #RBShellPreferences instance, populating it with the
* preferences pages for the sources in the list.
*
* Return value: the #RBShellPreferences instance
*/
GtkWidget *
rb_shell_preferences_new (GList *views)
{
RBShellPreferences *shell_preferences;
shell_preferences = g_object_new (RB_TYPE_SHELL_PREFERENCES,
NULL, NULL);
g_return_val_if_fail (shell_preferences->priv != NULL, NULL);
for (; views; views = views->next)
{
char *name = NULL;
g_object_get (views->data, "name", &name, NULL);
if (name == NULL) {
g_warning ("Page %p of type %s has no name",
views->data,
G_OBJECT_TYPE_NAME (views->data));
continue;
}
rb_shell_preferences_append_view_page (shell_preferences,
name,
RB_DISPLAY_PAGE (views->data));
g_free (name);
}
return GTK_WIDGET (shell_preferences);
}
static gboolean
rb_shell_preferences_window_delete_cb (GtkWidget *window,
GdkEventAny *event,
RBShellPreferences *shell_preferences)
{
gtk_widget_hide (GTK_WIDGET (shell_preferences));
return TRUE;
}
static void
rb_shell_preferences_response_cb (GtkDialog *dialog,
int response_id,
RBShellPreferences *shell_preferences)
{
if (response_id == GTK_RESPONSE_CLOSE)
gtk_widget_hide (GTK_WIDGET (shell_preferences));
}
static void
column_check_toggled_cb (GtkWidget *widget, RBShellPreferences *preferences)
{
const char *prop_name;
const char *column;
GVariantBuilder *b;
GVariantIter *iter;
GVariant *v;
prop_name = (const char *)g_object_get_data (G_OBJECT (widget), COLUMN_CHECK_PROP_NAME);
g_assert (prop_name);
v = g_settings_get_value (preferences->priv->source_settings, "visible-columns");
/* remove from current column list */
b = g_variant_builder_new (G_VARIANT_TYPE ("as"));
iter = g_variant_iter_new (v);
while (g_variant_iter_loop (iter, "s", &column)) {
if (g_strcmp0 (column, prop_name) != 0) {
g_variant_builder_add (b, "s", column);
}
}
g_variant_unref (v);
/* if enabled, add it */
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget))) {
g_variant_builder_add (b, "s", prop_name);
}
v = g_variant_builder_end (b);
g_settings_set_value (preferences->priv->source_settings, "visible-columns", v);
g_variant_builder_unref (b);
}
/**
* rb_shell_preferences_browser_views_activated_cb:
* @widget: the radio button that was selected
* @shell_preferences: the #RBShellPreferences instance
*
* Signal handler used for the radio buttons used to configure the
* visible browser views.
*/
void
rb_shell_preferences_browser_views_activated_cb (GtkWidget *widget,
RBShellPreferences *shell_preferences)
{
int index;
if (shell_preferences->priv->applying_settings)
return;
index = g_slist_index (shell_preferences->priv->browser_views_group, widget);
g_settings_set_enum (shell_preferences->priv->source_settings, "browser-views", index);
}
static void
source_settings_changed_cb (GSettings *settings, const char *key, RBShellPreferences *preferences)
{
if (g_strcmp0 (key, "browser-views") == 0) {
int view;
GtkWidget *widget;
view = g_settings_get_enum (preferences->priv->source_settings, "browser-views");
widget = GTK_WIDGET (g_slist_nth_data (preferences->priv->browser_views_group, view));
preferences->priv->applying_settings = TRUE;
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget), TRUE);
preferences->priv->applying_settings = FALSE;
} else if (g_strcmp0 (key, "visible-columns") == 0) {
char **columns;
GHashTableIter iter;
gpointer name_ptr;
gpointer widget_ptr;
columns = g_settings_get_strv (preferences->priv->source_settings, "visible-columns");
g_hash_table_iter_init (&iter, preferences->priv->column_checks);
while (g_hash_table_iter_next (&iter, &name_ptr, &widget_ptr)) {
gboolean enabled;
enabled = rb_str_in_strv (name_ptr, (const char **)columns);
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (widget_ptr), enabled);
}
g_strfreev (columns);
}
}
static void
player_settings_changed_cb (GSettings *settings, const char *key, RBShellPreferences *preferences)
{
if (g_strcmp0 (key, "transition-time") == 0) {
gtk_range_set_value (GTK_RANGE (preferences->priv->transition_duration),
g_settings_get_double (settings, key));
}
}
static void
sync_transition_time (GSettings *settings, GtkRange *range)
{
g_settings_set_double (settings,
"transition-time",
gtk_range_get_value (range));
}
static void
transition_time_changed_cb (GtkRange *range, RBShellPreferences *preferences)
{
rb_settings_delayed_sync (preferences->priv->player_settings,
(RBDelayedSyncFunc) sync_transition_time,
g_object_ref (range),
g_object_unref);
}
static GtkWidget *
get_box_for_location (RBShellPreferences *prefs, RBShellPrefsUILocation location)
{
switch (location) {
case RB_SHELL_PREFS_UI_LOCATION_GENERAL:
return prefs->priv->general_prefs_plugin_box;
case RB_SHELL_PREFS_UI_LOCATION_PLAYBACK:
return prefs->priv->playback_prefs_plugin_box;
default:
g_assert_not_reached();
}
}
/**
* rb_shell_preferences_add_widget:
* @prefs: the #RBShellPreferences
* @widget: the #GtkWidget to insert into the preferences window
* @location: the location at which to insert the widget
* @expand: whether the widget should be given extra space
* @fill: whether the widget should fill all space allocated to it
*
* Adds a widget to the preferences window. See #gtk_box_pack_start for
* details on how the expand and fill parameters work. This function can be
* used to add widgets to the 'general' and 'playback' pages.
*/
void
rb_shell_preferences_add_widget (RBShellPreferences *prefs,
GtkWidget *widget,
RBShellPrefsUILocation location,
gboolean expand,
gboolean fill)
{
GtkWidget *box;
box = get_box_for_location (prefs, location);
gtk_box_pack_start (GTK_BOX (box), widget, expand, fill, 0);
}
/**
* rb_shell_preferences_remove_widget:
* @prefs: the #RBShellPreferences
* @widget: the #GtkWidget to remove from the preferences window
* @location: the UI location to which the widget was originally added
*
* Removes a widget added with #rb_shell_preferences_add_widget from the preferences window.
*/
void
rb_shell_preferences_remove_widget (RBShellPreferences *prefs,
GtkWidget *widget,
RBShellPrefsUILocation location)
{
GtkWidget *box;
box = get_box_for_location (prefs, location);
gtk_container_remove (GTK_CONTAINER (box), widget);
}
#define ENUM_ENTRY(NAME, DESC) { NAME, "" #NAME "", DESC }
/**
* RBShellPrefsUILocation:
* @RB_SHELL_PREFS_UI_LOCATION_GENERAL: The "general" preferences page
* @RB_SHELL_PREFS_UI_LOCATION_PLAYBACK: THe "playback" preferences page
*
* Locations available for adding new widgets to the preferences dialog.
*/
GType
rb_shell_prefs_ui_location_get_type (void)
{
static GType etype = 0;
if (etype == 0) {
static const GEnumValue values[] = {
ENUM_ENTRY (RB_SHELL_PREFS_UI_LOCATION_GENERAL, "general"),
ENUM_ENTRY (RB_SHELL_PREFS_UI_LOCATION_PLAYBACK, "playback"),
{ 0, 0, 0 }
};
etype = g_enum_register_static ("RBShellPrefsUILocation", values);
}
return etype;
}
|