~ubuntu-branches/ubuntu/saucy/merkaartor/saucy

« back to all changes in this revision

Viewing changes to NameFinder/xmlstreamreader.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2009-09-13 00:52:12 UTC
  • mto: (1.2.7 upstream) (0.1.3 upstream) (3.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20090913005212-pjecal8zxm07x0fj
Import upstream version 0.14+svnfixes~20090912

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2008 by Łukasz Jernaś   *
3
 
 *   deejay1@srem.org   *
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     *
16
 
 *   along with this program; if not, write to the                         *
17
 
 *   Free Software Foundation, Inc.,                                       *
18
 
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19
 
 ***************************************************************************/
20
 
#ifndef NAMEFINDERXMLSTREAMREADER_H
21
 
#define NAMEFINDERXMLSTREAMREADER_H
22
 
 
23
 
#include <QXmlStreamReader>
24
 
#include <QIODevice>
25
 
 
26
 
#include <NameFinderResult.h>
27
 
 
28
 
namespace NameFinder {
29
 
 
30
 
    /** \brief Reads the XML file and places results in a QList of NameFinderResult
31
 
        @author Łukasz Jernaś <deejay1@srem.org>
32
 
    */
33
 
    class XmlStreamReader {
34
 
public:
35
 
        XmlStreamReader(QIODevice *buffer);
36
 
        ~XmlStreamReader();
37
 
        //! Reads the XML result.
38
 
        bool read();
39
 
        QList<NameFinderResult> getResults();
40
 
 
41
 
private:
42
 
        NameFinderResult tmpResult;
43
 
        QList<NameFinderResult> myResults;
44
 
        QXmlStreamReader reader;
45
 
        QIODevice *myDevice;
46
 
 
47
 
        void readSearchResultsElement();
48
 
        void readNamedElement(QList<NameFinderResult> *results);
49
 
        void readDescriptionElement(NameFinderResult *result);
50
 
        //! Reads nearby places from the query
51
 
        void readNearestPlacesElement(NameFinderResult *result);
52
 
        void skipElement();
53
 
        int i;
54
 
 
55
 
    };
56
 
 
57
 
}
58
 
 
59
 
#endif
60