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 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
|
/* -*- 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,2004 Colin Walters <walters@verbum.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-browser-source
* @short_description: base class for sources that include genre/artist/album browsers
*
* This class simplifies implementation of sources that include genre/artist/album browsers.
* It also handles searching (using the search box) and a few other UI niceties.
*
* Instances of browser sources will use a query that will match all entries of
* the entry type assigned to the source, so it's mostly suited for sources that
* have an entry type of their own.
*/
#include "config.h"
#include <string.h>
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include "rb-source.h"
#include "rb-library-source.h"
#include "rb-source-search-basic.h"
#include "rhythmdb-query-model.h"
#include "rb-property-view.h"
#include "rb-entry-view.h"
#include "rb-library-browser.h"
#include "rb-util.h"
#include "rb-file-helpers.h"
#include "rb-dialog.h"
#include "rb-debug.h"
#include "rb-song-info.h"
#include "rb-search-entry.h"
#include "rb-source-toolbar.h"
#include "rb-shell-preferences.h"
static void rb_browser_source_class_init (RBBrowserSourceClass *klass);
static void rb_browser_source_init (RBBrowserSource *source);
static void rb_browser_source_constructed (GObject *object);
static void rb_browser_source_dispose (GObject *object);
static void rb_browser_source_finalize (GObject *object);
static void rb_browser_source_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec);
static void rb_browser_source_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec);
static void rb_browser_source_cmd_choose_genre (GtkAction *action, RBSource *source);
static void rb_browser_source_cmd_choose_artist (GtkAction *action, RBSource *source);
static void rb_browser_source_cmd_choose_album (GtkAction *action, RBSource *source);
static void songs_view_sort_order_changed_cb (GObject *object, GParamSpec *pspec, RBBrowserSource *source);
static void rb_browser_source_browser_changed_cb (RBLibraryBrowser *entry,
GParamSpec *param,
RBBrowserSource *source);
/* source methods */
static RBEntryView *impl_get_entry_view (RBSource *source);
static GList *impl_get_property_views (RBSource *source);
static void impl_delete (RBSource *source);
static void impl_search (RBSource *source, RBSourceSearch *search, const char *cur_text, const char *new_text);
static void impl_reset_filters (RBSource *source);
static void impl_song_properties (RBSource *source);
static void default_show_entry_popup (RBBrowserSource *source);
static void default_pack_content (RBBrowserSource *source, GtkWidget *content);
void rb_browser_source_browser_views_activated_cb (GtkWidget *widget,
RBBrowserSource *source);
static void songs_view_drag_data_received_cb (GtkWidget *widget,
GdkDragContext *dc,
gint x, gint y,
GtkSelectionData *data,
guint info, guint time,
RBBrowserSource *source);
static void rb_browser_source_do_query (RBBrowserSource *source,
gboolean subset);
static void rb_browser_source_populate (RBBrowserSource *source);
struct RBBrowserSourcePrivate
{
RhythmDB *db;
RBLibraryBrowser *browser;
RBEntryView *songs;
RBSourceToolbar *toolbar;
RhythmDBQueryModel *cached_all_query;
RhythmDBQuery *search_query;
RhythmDBPropType search_prop;
gboolean populate;
gboolean query_active;
gboolean search_on_completion;
RBSourceSearch *default_search;
GtkActionGroup *action_group;
GtkActionGroup *search_action_group;
gboolean dispose_has_run;
};
#define RB_BROWSER_SOURCE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), RB_TYPE_BROWSER_SOURCE, RBBrowserSourcePrivate))
static GtkActionEntry rb_browser_source_actions [] =
{
{ "BrowserSrcChooseGenre", NULL, N_("Browse This _Genre"), NULL,
N_("Set the browser to view only this genre"),
G_CALLBACK (rb_browser_source_cmd_choose_genre) },
{ "BrowserSrcChooseArtist", NULL , N_("Browse This _Artist"), NULL,
N_("Set the browser to view only this artist"),
G_CALLBACK (rb_browser_source_cmd_choose_artist) },
{ "BrowserSrcChooseAlbum", NULL, N_("Browse This A_lbum"), NULL,
N_("Set the browser to view only this album"),
G_CALLBACK (rb_browser_source_cmd_choose_album) }
};
static GtkRadioActionEntry rb_browser_source_radio_actions [] =
{
{ "BrowserSourceSearchAll", NULL, N_("Search all fields"), NULL, NULL, RHYTHMDB_PROP_SEARCH_MATCH },
{ "BrowserSourceSearchArtists", NULL, N_("Search artists"), NULL, NULL, RHYTHMDB_PROP_ARTIST_FOLDED },
{ "BrowserSourceSearchAlbums", NULL, N_("Search albums"), NULL, NULL, RHYTHMDB_PROP_ALBUM_FOLDED },
{ "BrowserSourceSearchTitles", NULL, N_("Search titles"), NULL, NULL, RHYTHMDB_PROP_TITLE_FOLDED }
};
static const GtkTargetEntry songs_view_drag_types[] = {
{ "application/x-rhythmbox-entry", 0, 0 },
{ "text/uri-list", 0, 1 }
};
enum
{
PROP_0,
PROP_BASE_QUERY_MODEL,
PROP_POPULATE,
PROP_SHOW_BROWSER
};
G_DEFINE_ABSTRACT_TYPE (RBBrowserSource, rb_browser_source, RB_TYPE_SOURCE)
static void
rb_browser_source_class_init (RBBrowserSourceClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
RBSourceClass *source_class = RB_SOURCE_CLASS (klass);
object_class->dispose = rb_browser_source_dispose;
object_class->finalize = rb_browser_source_finalize;
object_class->constructed = rb_browser_source_constructed;
object_class->set_property = rb_browser_source_set_property;
object_class->get_property = rb_browser_source_get_property;
source_class->impl_search = impl_search;
source_class->impl_get_entry_view = impl_get_entry_view;
source_class->impl_get_property_views = impl_get_property_views;
source_class->impl_reset_filters = impl_reset_filters;
source_class->impl_song_properties = impl_song_properties;
source_class->impl_can_cut = (RBSourceFeatureFunc) rb_false_function;
source_class->impl_can_copy = (RBSourceFeatureFunc) rb_true_function;
source_class->impl_can_delete = (RBSourceFeatureFunc) rb_true_function;
source_class->impl_can_add_to_queue = (RBSourceFeatureFunc) rb_true_function;
source_class->impl_can_move_to_trash = (RBSourceFeatureFunc) rb_true_function;
source_class->impl_delete = impl_delete;
klass->pack_content = default_pack_content;
klass->has_drop_support = (RBBrowserSourceFeatureFunc) rb_false_function;
klass->show_entry_popup = default_show_entry_popup;
g_object_class_override_property (object_class,
PROP_BASE_QUERY_MODEL,
"base-query-model");
g_object_class_install_property (object_class,
PROP_POPULATE,
g_param_spec_boolean ("populate",
"populate",
"whether to populate the source",
TRUE,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
g_object_class_override_property (object_class,
PROP_SHOW_BROWSER,
"show-browser");
g_type_class_add_private (klass, sizeof (RBBrowserSourcePrivate));
}
static void
rb_browser_source_init (RBBrowserSource *source)
{
source->priv = RB_BROWSER_SOURCE_GET_PRIVATE (source);
}
static void
rb_browser_source_dispose (GObject *object)
{
RBBrowserSource *source;
source = RB_BROWSER_SOURCE (object);
if (source->priv->dispose_has_run) {
/* If dispose did already run, return. */
return;
}
/* Make sure dispose does not run twice. */
source->priv->dispose_has_run = TRUE;
if (source->priv->db != NULL) {
g_object_unref (source->priv->db);
source->priv->db = NULL;
}
if (source->priv->search_query != NULL) {
rhythmdb_query_free (source->priv->search_query);
source->priv->search_query = NULL;
}
if (source->priv->cached_all_query != NULL) {
g_object_unref (source->priv->cached_all_query);
source->priv->cached_all_query = NULL;
}
if (source->priv->action_group != NULL) {
g_object_unref (source->priv->action_group);
source->priv->action_group = NULL;
}
if (source->priv->default_search != NULL) {
g_object_unref (source->priv->default_search);
source->priv->default_search = NULL;
}
G_OBJECT_CLASS (rb_browser_source_parent_class)->dispose (object);
}
static void
rb_browser_source_finalize (GObject *object)
{
RBBrowserSource *source;
g_return_if_fail (object != NULL);
g_return_if_fail (RB_IS_BROWSER_SOURCE (object));
source = RB_BROWSER_SOURCE (object);
g_return_if_fail (source->priv != NULL);
G_OBJECT_CLASS (rb_browser_source_parent_class)->finalize (object);
}
static void
rb_browser_source_songs_show_popup_cb (RBEntryView *view,
gboolean over_entry,
RBBrowserSource *source)
{
if (over_entry) {
RBBrowserSourceClass *klass = RB_BROWSER_SOURCE_GET_CLASS (source);
klass->show_entry_popup (source);
} else {
rb_display_page_show_popup (RB_DISPLAY_PAGE (source));
}
}
static void
default_show_entry_popup (RBBrowserSource *source)
{
_rb_display_page_show_popup (RB_DISPLAY_PAGE (source), "/BrowserSourceViewPopup");
}
static void
rb_browser_source_constructed (GObject *object)
{
RBBrowserSource *source;
RBBrowserSourceClass *klass;
RBShell *shell;
GObject *shell_player;
GtkUIManager *ui_manager;
RhythmDBEntryType *entry_type;
GtkWidget *content;
GtkWidget *paned;
RB_CHAIN_GOBJECT_METHOD (rb_browser_source_parent_class, constructed, object);
source = RB_BROWSER_SOURCE (object);
g_object_get (source,
"shell", &shell,
"entry-type", &entry_type,
NULL);
g_object_get (shell,
"db", &source->priv->db,
"shell-player", &shell_player,
"ui-manager", &ui_manager,
NULL);
source->priv->action_group = _rb_display_page_register_action_group (RB_DISPLAY_PAGE (source),
"BrowserSourceActions",
NULL, 0, NULL);
_rb_action_group_add_display_page_actions (source->priv->action_group,
G_OBJECT (shell),
rb_browser_source_actions,
G_N_ELEMENTS (rb_browser_source_actions));
/* only add the actions if we haven't already */
if (gtk_action_group_get_action (source->priv->action_group,
rb_browser_source_radio_actions[0].name) == NULL) {
gtk_action_group_add_radio_actions (source->priv->action_group,
rb_browser_source_radio_actions,
G_N_ELEMENTS (rb_browser_source_radio_actions),
0,
NULL,
NULL);
rb_source_search_basic_create_for_actions (source->priv->action_group,
rb_browser_source_radio_actions,
G_N_ELEMENTS (rb_browser_source_radio_actions));
}
g_object_unref (shell);
source->priv->default_search = rb_source_search_basic_new (RHYTHMDB_PROP_SEARCH_MATCH);
paned = gtk_paned_new (GTK_ORIENTATION_VERTICAL);
source->priv->browser = rb_library_browser_new (source->priv->db, entry_type);
gtk_widget_set_no_show_all (GTK_WIDGET (source->priv->browser), TRUE);
gtk_paned_pack1 (GTK_PANED (paned), GTK_WIDGET (source->priv->browser), TRUE, FALSE);
gtk_container_child_set (GTK_CONTAINER (paned),
GTK_WIDGET (source->priv->browser),
"resize", FALSE,
NULL);
g_signal_connect_object (G_OBJECT (source->priv->browser), "notify::output-model",
G_CALLBACK (rb_browser_source_browser_changed_cb),
source, 0);
/* set up songs tree view */
source->priv->songs = rb_entry_view_new (source->priv->db, shell_player,
TRUE, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_TRACK_NUMBER, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_TITLE, TRUE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_GENRE, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_ARTIST, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_ALBUM, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_YEAR, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_DURATION, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_QUALITY, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_PLAY_COUNT, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_BPM, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_COMMENT, FALSE);
rb_entry_view_append_column (source->priv->songs, RB_ENTRY_VIEW_COL_LOCATION, FALSE);
g_signal_connect_object (G_OBJECT (source->priv->songs), "show_popup",
G_CALLBACK (rb_browser_source_songs_show_popup_cb), source, 0);
g_signal_connect_object (source->priv->songs,
"notify::sort-order",
G_CALLBACK (songs_view_sort_order_changed_cb),
source, 0);
rb_source_bind_settings (RB_SOURCE (source),
GTK_WIDGET (source->priv->songs),
paned,
GTK_WIDGET (source->priv->browser));
if (rb_browser_source_has_drop_support (source)) {
gtk_drag_dest_set (GTK_WIDGET (source->priv->songs),
GTK_DEST_DEFAULT_ALL,
songs_view_drag_types, G_N_ELEMENTS (songs_view_drag_types),
GDK_ACTION_COPY | GDK_ACTION_MOVE); /* really accept move actions? */
/* set up drag and drop for the song tree view.
* we don't use RBEntryView's DnD support because it does too much.
* we just want to be able to drop songs in to add them to the
* library.
*/
g_signal_connect_object (G_OBJECT (source->priv->songs),
"drag_data_received",
G_CALLBACK (songs_view_drag_data_received_cb),
source, 0);
}
gtk_paned_pack2 (GTK_PANED (paned), GTK_WIDGET (source->priv->songs), TRUE, FALSE);
/* set up toolbar */
source->priv->toolbar = rb_source_toolbar_new (RB_SOURCE (source), ui_manager);
rb_source_toolbar_add_search_entry (source->priv->toolbar, "/BrowserSourceSearchMenu", NULL);
content = gtk_grid_new ();
gtk_grid_set_column_spacing (GTK_GRID (content), 6);
gtk_grid_set_row_spacing (GTK_GRID (content), 6);
gtk_widget_set_margin_top (content, 6);
gtk_grid_attach (GTK_GRID (content), GTK_WIDGET (source->priv->toolbar), 0, 0, 1, 1);
gtk_widget_set_vexpand (paned, TRUE);
gtk_widget_set_hexpand (paned, TRUE);
gtk_grid_attach (GTK_GRID (content), paned, 0, 1, 1, 1);
klass = RB_BROWSER_SOURCE_GET_CLASS (source);
klass->pack_content (source, content);
gtk_widget_show_all (GTK_WIDGET (source));
/* use a throwaway model until the real one is ready */
rb_library_browser_set_model (source->priv->browser,
rhythmdb_query_model_new_empty (source->priv->db),
FALSE);
source->priv->cached_all_query = rhythmdb_query_model_new_empty (source->priv->db);
rb_browser_source_populate (source);
g_object_unref (entry_type);
g_object_unref (shell_player);
}
static void
rb_browser_source_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
RBBrowserSource *source = RB_BROWSER_SOURCE (object);
switch (prop_id) {
case PROP_POPULATE:
source->priv->populate = g_value_get_boolean (value);
/* if being set after construction, run the query now. otherwise the constructor will do it. */
if (source->priv->songs != NULL) {
rb_browser_source_populate (source);
}
break;
case PROP_SHOW_BROWSER:
if (g_value_get_boolean (value)) {
gtk_widget_show (GTK_WIDGET (source->priv->browser));
} else {
gtk_widget_hide (GTK_WIDGET (source->priv->browser));
rb_library_browser_reset (source->priv->browser);
}
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
rb_browser_source_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
RBBrowserSource *source = RB_BROWSER_SOURCE (object);
switch (prop_id) {
case PROP_BASE_QUERY_MODEL:
g_value_set_object (value, source->priv->cached_all_query);
break;
case PROP_POPULATE:
g_value_set_boolean (value, source->priv->populate);
break;
case PROP_SHOW_BROWSER:
g_value_set_boolean (value, gtk_widget_get_visible (GTK_WIDGET (source->priv->browser)));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
cached_all_query_complete_cb (RhythmDBQueryModel *model, RBBrowserSource *source)
{
rb_library_browser_set_model (source->priv->browser,
source->priv->cached_all_query,
FALSE);
}
static void
rb_browser_source_populate (RBBrowserSource *source)
{
RhythmDBEntryType *entry_type;
if (source->priv->populate == FALSE)
return;
/* only connect the model to the browser when it's complete. this avoids
* thousands of row-added signals, which is ridiculously slow with a11y enabled.
*/
g_signal_connect_object (source->priv->cached_all_query,
"complete",
G_CALLBACK (cached_all_query_complete_cb),
source, 0);
g_object_get (source, "entry-type", &entry_type, NULL);
rhythmdb_do_full_query_async (source->priv->db,
RHYTHMDB_QUERY_RESULTS (source->priv->cached_all_query),
RHYTHMDB_QUERY_PROP_EQUALS, RHYTHMDB_PROP_TYPE, entry_type,
RHYTHMDB_QUERY_END);
g_object_unref (entry_type);
}
static void
browse_property (RBBrowserSource *source, RhythmDBPropType prop)
{
GList *props;
RBPropertyView *view;
props = rb_source_gather_selected_properties (RB_SOURCE (source), prop);
view = rb_library_browser_get_property_view (source->priv->browser, prop);
if (view) {
rb_property_view_set_selection (view, props);
}
rb_list_deep_free (props);
}
static void
rb_browser_source_cmd_choose_genre (GtkAction *action, RBSource *source)
{
rb_debug ("choosing genre");
if (RB_IS_BROWSER_SOURCE (source)) {
browse_property (RB_BROWSER_SOURCE (source), RHYTHMDB_PROP_GENRE);
}
}
static void
rb_browser_source_cmd_choose_artist (GtkAction *action, RBSource *source)
{
rb_debug ("choosing artist");
if (RB_IS_BROWSER_SOURCE (source)) {
browse_property (RB_BROWSER_SOURCE (source), RHYTHMDB_PROP_ARTIST);
}
}
static void
rb_browser_source_cmd_choose_album (GtkAction *action, RBSource *source)
{
rb_debug ("choosing album");
if (RB_IS_BROWSER_SOURCE (source)) {
browse_property (RB_BROWSER_SOURCE (source), RHYTHMDB_PROP_ALBUM);
}
}
static void
songs_view_sort_order_changed_cb (GObject *object, GParamSpec *pspec, RBBrowserSource *source)
{
rb_debug ("sort order changed");
rb_entry_view_resort_model (RB_ENTRY_VIEW (object));
}
static void
impl_search (RBSource *asource, RBSourceSearch *search, const char *cur_text, const char *new_text)
{
RBBrowserSource *source = RB_BROWSER_SOURCE (asource);
gboolean subset;
if (search == NULL) {
search = source->priv->default_search;
}
/* replace our search query */
if (source->priv->search_query != NULL) {
rhythmdb_query_free (source->priv->search_query);
source->priv->search_query = NULL;
}
source->priv->search_query = rb_source_search_create_query (search, source->priv->db, new_text);
/* for subset searches, we have to wait until the query
* has finished before we can refine the results.
*/
subset = rb_source_search_is_subset (search, cur_text, new_text);
if (source->priv->query_active && subset) {
rb_debug ("deferring search for \"%s\" until query completion", new_text ? new_text : "<NULL>");
source->priv->search_on_completion = TRUE;
} else {
rb_debug ("doing search for \"%s\"", new_text ? new_text : "<NULL>");
rb_browser_source_do_query (source, subset);
}
}
static RBEntryView *
impl_get_entry_view (RBSource *asource)
{
RBBrowserSource *source = RB_BROWSER_SOURCE (asource);
return source->priv->songs;
}
static GList *
impl_get_property_views (RBSource *asource)
{
GList *ret;
RBBrowserSource *source = RB_BROWSER_SOURCE (asource);
ret = rb_library_browser_get_property_views (source->priv->browser);
return ret;
}
static void
impl_reset_filters (RBSource *asource)
{
RBBrowserSource *source = RB_BROWSER_SOURCE (asource);
gboolean changed = FALSE;
rb_debug ("Resetting search filters");
if (rb_library_browser_reset (source->priv->browser))
changed = TRUE;
if (source->priv->search_query != NULL) {
rhythmdb_query_free (source->priv->search_query);
source->priv->search_query = NULL;
changed = TRUE;
}
rb_source_toolbar_clear_search_entry (source->priv->toolbar);
if (changed)
rb_browser_source_do_query (source, FALSE);
}
static void
impl_delete (RBSource *asource)
{
RBBrowserSource *source = RB_BROWSER_SOURCE (asource);
GList *sel, *tem;
sel = rb_entry_view_get_selected_entries (source->priv->songs);
for (tem = sel; tem != NULL; tem = tem->next) {
rhythmdb_entry_delete (source->priv->db, tem->data);
rhythmdb_commit (source->priv->db);
}
g_list_foreach (sel, (GFunc)rhythmdb_entry_unref, NULL);
g_list_free (sel);
}
static void
impl_song_properties (RBSource *asource)
{
RBBrowserSource *source = RB_BROWSER_SOURCE (asource);
GtkWidget *song_info = NULL;
g_return_if_fail (source->priv->songs != NULL);
song_info = rb_song_info_new (asource, NULL);
g_return_if_fail (song_info != NULL);
if (song_info)
gtk_widget_show_all (song_info);
else
rb_debug ("failed to create dialog, or no selection!");
}
/**
* rb_browser_source_has_drop_support:
* @source: a #RBBrowserSource
*
* This is a virtual method that should be implemented by subclasses. It returns %TRUE
* if drag and drop target support for the source should be activated.
*
* Return value: %TRUE if drop support should be activated
*/
gboolean
rb_browser_source_has_drop_support (RBBrowserSource *source)
{
RBBrowserSourceClass *klass = RB_BROWSER_SOURCE_GET_CLASS (source);
return klass->has_drop_support (source);
}
static void
songs_view_drag_data_received_cb (GtkWidget *widget,
GdkDragContext *dc,
gint x, gint y,
GtkSelectionData *selection_data,
guint info, guint time,
RBBrowserSource *source)
{
rb_debug ("data dropped on the library source song view");
rb_display_page_receive_drag (RB_DISPLAY_PAGE (source), selection_data);
}
static void
rb_browser_source_browser_changed_cb (RBLibraryBrowser *browser,
GParamSpec *pspec,
RBBrowserSource *source)
{
RhythmDBQueryModel *query_model;
g_object_get (browser, "output-model", &query_model, NULL);
rb_entry_view_set_model (source->priv->songs, query_model);
g_object_set (source, "query-model", query_model, NULL);
g_object_unref (query_model);
rb_source_notify_filter_changed (RB_SOURCE (source));
}
static void
rb_browser_source_query_complete_cb (RhythmDBQueryModel *query_model,
RBBrowserSource *source)
{
rb_library_browser_set_model (source->priv->browser, query_model, FALSE);
source->priv->query_active = FALSE;
if (source->priv->search_on_completion) {
rb_debug ("performing deferred search");
source->priv->search_on_completion = FALSE;
/* this is only done for subset queries */
rb_browser_source_do_query (source, TRUE);
}
}
static void
rb_browser_source_do_query (RBBrowserSource *source, gboolean subset)
{
RhythmDBQueryModel *query_model;
GPtrArray *query;
RhythmDBEntryType *entry_type;
/* use the cached 'all' query to optimise the no-search case */
if (source->priv->search_query == NULL) {
rb_library_browser_set_model (source->priv->browser,
source->priv->cached_all_query,
FALSE);
return;
}
g_object_get (source, "entry-type", &entry_type, NULL);
query = rhythmdb_query_parse (source->priv->db,
RHYTHMDB_QUERY_PROP_EQUALS,
RHYTHMDB_PROP_TYPE,
entry_type,
RHYTHMDB_QUERY_SUBQUERY,
source->priv->search_query,
RHYTHMDB_QUERY_END);
g_object_unref (entry_type);
if (subset) {
/* if we're appending text to an existing search string, the results will be a subset
* of the existing results, so rather than doing a whole new query, we can copy the
* results to a new query model with a more restrictive query.
*/
RhythmDBQueryModel *old;
g_object_get (source->priv->browser, "input-model", &old, NULL);
query_model = rhythmdb_query_model_new_empty (source->priv->db);
g_object_set (query_model, "query", query, NULL);
rhythmdb_query_model_copy_contents (query_model, old);
g_object_unref (old);
rb_library_browser_set_model (source->priv->browser, query_model, FALSE);
g_object_unref (query_model);
} else {
/* otherwise build a query based on the search text, and feed it to the browser
* when the query finishes.
*/
query_model = rhythmdb_query_model_new_empty (source->priv->db);
source->priv->query_active = TRUE;
source->priv->search_on_completion = FALSE;
g_signal_connect_object (query_model,
"complete", G_CALLBACK (rb_browser_source_query_complete_cb),
source, 0);
rhythmdb_do_full_query_async_parsed (source->priv->db,
RHYTHMDB_QUERY_RESULTS (query_model),
query);
g_object_unref (query_model);
}
rhythmdb_query_free (query);
}
static void
default_pack_content (RBBrowserSource *source, GtkWidget *content)
{
gtk_container_add (GTK_CONTAINER (source), content);
}
|