OSDN Git Service

Happy new year 2016!
[lamexp/LameXP.git] / src / Model_MetaInfo.h
index 79e7ab9..e0ed38f 100644 (file)
@@ -1,11 +1,12 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2016 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // 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.
+// (at your option) any later version, but always including the *additional*
+// restrictions defined in the "License.txt" file.
 //
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -31,7 +32,8 @@ class MetaInfoModel : public QAbstractTableModel
        Q_OBJECT
 
 public:
-       MetaInfoModel(AudioFileModel *file, unsigned int offset = 0);
+       MetaInfoModel(AudioFileModel *file);
+       MetaInfoModel(AudioFileModel_MetaInfo *metaInfo);
        ~MetaInfoModel(void);
 
        //Model functions
@@ -43,12 +45,15 @@ public:
        Qt::ItemFlags flags(const QModelIndex &index) const;
        void editItem(const QModelIndex &index, QWidget *parent);
        void editArtwork(const QString &imagePath);
-       void assignInfoFrom(AudioFileModel &file);
+       void assignInfoFrom(const AudioFileModel &file);
        void clearData(bool clearMetaOnly = false);
 
 private:
-       AudioFileModel* m_audioFile;
-       unsigned int m_offset;
+       const unsigned int m_offset;
+
+       AudioFileModel *const m_fullInfo;
+       AudioFileModel_MetaInfo *const m_metaInfo;
+
        QString m_textNotSpecified;
        QString m_textUnknown;
 };