~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/Twiddly/ITunesLibrary.h

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2008-07-14 16:46:20 UTC
  • mfrom: (1.1.7 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080714164620-67hoz9fs177wpgmr
Tags: 1:1.5.1.31879.dfsg-1ubuntu1
* Merge from Debian unstable (LP: #248100), remaining changes:
  - debian/rules: add dh_icons call
  + debian/control:
    - switch iceweasel to firefox in Recommends field
    - modify debhelper version to >= 5.0.51~
    - modify Maintainer to Ubuntu MOTU Developers

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright 2008 Last.fm Ltd.                                           *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02110-1301, USA.          *
 
18
 ***************************************************************************/
 
19
 
 
20
#ifndef ITUNES_LIBRARY_H
 
21
#define ITUNES_LIBRARY_H
 
22
 
 
23
#include "libUnicorn/TrackInfo.h"
 
24
#include "ITunesLibraryTrack.h"    
 
25
#include <QList>
 
26
 
 
27
 
 
28
/** @author Max Howell <max@last.fm> - Mac
 
29
  * @author <erik@last.fm> - Win
 
30
  *
 
31
  * This class offers easy access to the iTunes Library database
 
32
  * It uses AppleScript and COM to access and query iTunes
 
33
  */
 
34
class ITunesLibrary
 
35
{
 
36
public:
 
37
    /** the isIPod bool is for Windows only, the source, mac :( */
 
38
    ITunesLibrary( const QString& source = "", bool isIPod = false ); // throws
 
39
    ~ITunesLibrary();
 
40
 
 
41
    typedef ITunesLibraryTrack Track;
 
42
 
 
43
    bool hasTracks() const;
 
44
    Track nextTrack();
 
45
    int trackCount() const;
 
46
 
 
47
private:
 
48
    uint m_currentIndex;
 
49
 
 
50
  #ifdef WIN32
 
51
    class ITunesComWrapper* m_com;
 
52
    long m_trackCount;
 
53
    bool const m_isIPod;
 
54
  #else
 
55
    QList<Track> m_tracks;
 
56
  #endif
 
57
 
 
58
private:
 
59
    Q_DISABLE_COPY( ITunesLibrary );
 
60
};
 
61
 
 
62
#endif