Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cover art support 4 #3

Closed
wants to merge 49 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
6274018
Modified the playlist shuffling algorithm to avoid placing two instan…
zr3 Jul 3, 2014
0b0cf70
Finished modified shuffling algorithm
zr3 Jul 6, 2014
4b00a97
Tidied up code
zr3 Jul 11, 2014
8a5b684
Add DlgCoverArtFetcher classes
cardinot Jul 24, 2014
814aa98
Add Last.fm dependence (liblastfm)
cardinot Jul 25, 2014
0a8b511
dlgcoverartfetcher.ui - initial layout
cardinot Jul 25, 2014
e6502aa
dlgcoverartfetcher.ui - improving layout + rename fields
cardinot Jul 25, 2014
10f0a8e
Searching covers in the Last.fm database - initial implementation (ju…
cardinot Jul 25, 2014
dd73d12
Revert "Add Last.fm dependence (liblastfm)"
cardinot Jul 25, 2014
1b5ef0c
dlgcoverartfetcher - downloading covers from url and loading them in …
cardinot Jul 26, 2014
702250d
Improving dlgcoverartfetcher.ui + add tableview (coverview)
cardinot Jul 26, 2014
b1fbc1d
Add a QLineEdit and a QPushButton to "Log" tab
badescunicu Jul 26, 2014
5753987
Showing results at coverview (insert a pushbutton for each cell)
cardinot Jul 26, 2014
bc2b640
Add search functionality to Developer's Log
badescunicu Jul 26, 2014
4c0365b
setting up coverView
cardinot Jul 26, 2014
e9af59b
small fix: coverView->setEditTriggers must use EditTrigger enum
cardinot Jul 26, 2014
6eb8e00
implement toggle button to abort the search
cardinot Jul 26, 2014
6796f13
Aborting the search when the user close the dlgcoverfetcher
cardinot Jul 26, 2014
c324729
Fixing bug with the status of the search_button
cardinot Jul 26, 2014
47487bb
Removing unused members
cardinot Jul 27, 2014
32f65d3
using title as album_name when "album && artist" are empty
cardinot Jul 27, 2014
4c9ed82
add prev and next buttons to the dlgcoverartfetcher
cardinot Jul 27, 2014
61f1070
dlgcoverfetcher - disable txtArtist and txtAlbum when it is searching…
cardinot Jul 27, 2014
5627e3d
restore search button after a download error
cardinot Jul 27, 2014
ac1f426
Improving management of the cover search results
cardinot Jul 27, 2014
1de1bae
dlgcoverfetcher.UI - small fix: display ALBUM field in the first row
cardinot Jul 27, 2014
6e2369a
small fix: restoring btnSearch after downloadFinished
cardinot Jul 27, 2014
fe0de63
cleaning the coverview always when a new search starts + add small co…
cardinot Jul 27, 2014
b5ec417
dlgcoverfetcher - rename button - from "cancel" to "close"
cardinot Jul 28, 2014
7d6f93b
Merge branch 'master' of https://github.com/mixxxdj/mixxx into coverA…
cardinot Jul 29, 2014
546ee62
Uptading DlgTrackinfo + DlgCoverFetcher + DlgTagFetcher together afte…
cardinot Jul 29, 2014
27248d8
removing unnecessary slots of PREV and NEXT buttons
cardinot Jul 30, 2014
16f0ab3
Completed improved shuffling algorithm
zr3 Jul 31, 2014
8fc3f7b
Merge branch 'coverArtSupport_3' of https://github.com/cardinot/mixxx…
cardinot Aug 1, 2014
96a3d44
Add searchCoverFromInternet action in the context menu
cardinot Aug 1, 2014
a347052
dlgcoverfetcher - add button to apply modifications (just UI)
cardinot Aug 1, 2014
93ca2dd
Minor style fixes
zr3 Aug 1, 2014
596cf4e
Update translation template. Found 1743 source text(s) (5 new and 173…
esbrandt Aug 2, 2014
5e29298
Pull latest translations from https://www.transifex.com/projects/p/mi…
esbrandt Aug 2, 2014
169c8f1
Update README.md
esbrandt Aug 2, 2014
c8e7143
Add icon for search_cover action
cardinot Aug 3, 2014
c5942e7
Merge pull request #300 from badescunicu/search_log
daschuer Aug 3, 2014
a75da7e
Merge pull request #287 from zak-reynolds/master
daschuer Aug 3, 2014
6e5bc2d
Added Zak Reynolds to contributors list. Thank you very much.
daschuer Aug 3, 2014
8ee4974
Merge pull request #1 from cardinot/coverArtSupport_2
cardinot Aug 4, 2014
e17ae9b
Merge pull request #2 from cardinot/coverArtSupport_3
cardinot Aug 4, 2014
548d53f
Merge branch 'coverArtSupport_2' of https://github.com/cardinot/mixxx…
cardinot Aug 4, 2014
0d6f527
Merge branch 'master' of https://github.com/mixxxdj/mixxx into coverA…
cardinot Aug 4, 2014
b28cf6c
Merge branch 'coverArtSupport' of https://github.com/cardinot/mixxx i…
cardinot Aug 4, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
setting up coverView
  • Loading branch information
cardinot committed Jul 26, 2014
commit 4c0365b9852c3161010cee9a8b671f434903cc82
8 changes: 8 additions & 0 deletions src/dlgcoverartfetcher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ DlgCoverArtFetcher::DlgCoverArtFetcher(QWidget *parent)
this, SLOT(slotCancel()));
connect(btnSearch, SIGNAL(clicked()),
this, SLOT(slotSearch()));

coverView->horizontalHeader()->setStretchLastSection(true);
coverView->horizontalHeader()->setVisible(false);
coverView->verticalHeader()->setVisible(false);
coverView->setAlternatingRowColors(false);
coverView->setSelectionBehavior(QAbstractItemView::SelectItems);
coverView->setSelectionMode(QAbstractItemView::NoSelection);
coverView->setEditTriggers(false);
}

DlgCoverArtFetcher::~DlgCoverArtFetcher() {
Expand Down