magnatunexmlparser.h
来自「Amarok是一款在LINUX或其他类UNIX操作系统中运行的音频播放器软件。 」· C头文件 代码 · 共 124 行
H
124 行
/* Copyright (c) 2006 Nikolaj Hald Nielsen <nhnFreespirit@gmail.com> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.*/#ifndef MAGNATUNEXMLPARSER_H#define MAGNATUNEXMLPARSER_H#include "magnatunetypes.h"#include "threadmanager.h"#include <qdom.h>#include <qstring.h>#include <qxml.h>/*** Parser for the XML file from http://magnatune.com/info/album_info.xml** @author Nikolaj Hald Nielsen*/class MagnatuneXmlParser : public ThreadManager::Job{ Q_OBJECTpublic: /** * Constructor * @param fileName The file to parse * @return Pointer to new object */ MagnatuneXmlParser( QString fileName ); /** * The function that starts the actual work. Inherited fromThreadManager::Job * Note the work is performed in a separate thread * @return Returns true on success and false on failure */ bool doJob(); /** * Called when the job has completed. Is executed in the GUI thread */ void completeJob(); /** * Destructor * @return none */ ~MagnatuneXmlParser(); /** * Reads, and starts parsing, file. Should not be used directly. * @param filename The file to read */ void readConfigFile( QString filename );signals: /** * Signal emmited when parsing is complete. */ void doneParsing();private: QString m_currentArtist; QString m_currentArtistGenre; /** * Parses a DOM element * @param e The element to parse */ void parseElement( QDomElement e ); /** * Parses all children of a DOM element * @param e The element whose children is to be parsed */ void parseChildren( QDomElement e ); /** * Parse a DOM element representing an album * @param e The album element to parse */ void parseAlbum( QDomElement e ); /** * Parse a DOM element representing a track * @param e The track element to parse */ void parseTrack( QDomElement e ); MagnatuneAlbum *m_pCurrentAlbum; MagnatuneArtist *m_pCurrentArtist; MagnatuneTrackList m_currentAlbumTracksList; QString m_sFileName; int m_nNumberOfTracks; int m_nNumberOfAlbums; int m_nNumberOfArtists;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?