OSDN Git Service

Updated Monkey's Audio binary to v4.11 (2013-01-20), including STDERR flush fix.
[lamexp/LameXP.git] / src / Model_CueSheet.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include "Model_AudioFile.h"
25 #include <QAbstractItemModel>
26 #include <QIcon>
27
28 class CueSheetFile;
29 class QApplication;
30 class QDir;
31 class QTextCodec;
32
33 class CueSheetModel : public QAbstractItemModel
34 {
35         Q_OBJECT
36
37 public:
38         CueSheetModel();
39         ~CueSheetModel(void);
40
41         //Error codes
42         enum ErrorCode
43         {
44                 ErrorSuccess = 0,
45                 ErrorIOFailure = 1,
46                 ErrorBadFile = 2,
47                 ErrorUnsupported = 3,
48                 ErrorInconsistent = 4,
49                 ErrorUnknown = 9
50         };
51         
52         //Model functions
53         QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
54         int columnCount(const QModelIndex &parent = QModelIndex()) const;
55         int rowCount(const QModelIndex &parent = QModelIndex()) const;
56         QVariant headerData (int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
57         QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
58         QModelIndex parent(const QModelIndex &child) const;
59         void clearData(void);
60
61         //External API
62         int CueSheetModel::getFileCount(void);
63         QString getFileName(int fileIndex);
64         int getTrackCount(int fileIndex);
65         int getTrackNo(int fileIndex, int trackIndex);
66         void getTrackIndex(int fileIndex, int trackIndex, double *startIndex, double *duration);
67         QString getTrackPerformer(int fileIndex, int trackIndex);
68         QString getTrackTitle(int fileIndex, int trackIndex);
69         QString getTrackGenre(int fileIndex, int trackIndex);
70         unsigned int getTrackYear(int fileIndex, int trackIndex);
71         QString getAlbumPerformer(void);
72         QString getAlbumTitle(void);
73         QString getAlbumGenre(void);
74         unsigned int getAlbumYear(void);
75
76         //Cue Sheet functions
77         int loadCueSheet(const QString &cueFile, QCoreApplication *application = NULL, QTextCodec *forceCodec= NULL);
78
79 private:
80         int parseCueFile(QFile &cueFile, const QDir &baseDir, QCoreApplication *application, const QTextCodec *codec);
81         double parseTimeIndex(const QString &index);
82         QString indexToString(const double index) const;
83         
84         static QMutex m_mutex;
85
86         QList<CueSheetFile*> m_files;
87         QString m_albumTitle;
88         QString m_albumPerformer;
89         QString m_albumGenre;
90         unsigned int m_albumYear;
91
92         const QIcon m_fileIcon;
93         const QIcon m_trackIcon;
94 };