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

« back to all changes in this revision

Viewing changes to src/NameFinder/namefindertablemodel.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 NAMEFINDERNAMEFINDERTABLEMODEL_H
 
21
#define NAMEFINDERNAMEFINDERTABLEMODEL_H
 
22
 
 
23
#include <QAbstractTableModel>
 
24
#include <NameFinderResult.h>
 
25
#include <QList>
 
26
 
 
27
namespace NameFinder {
 
28
 
 
29
    /** This class implements a model for QTableView to filter out the unrelevant data as easy as possible
 
30
        @author Łukasz Jernaś <deejay1@srem.org>
 
31
    */
 
32
class NameFinderTableModel : public QAbstractTableModel {
 
33
        Q_OBJECT
 
34
public:
 
35
        NameFinderTableModel(QObject *parent = 0);
 
36
 
 
37
        ~NameFinderTableModel();
 
38
 
 
39
        int rowCount(const QModelIndex &parent) const;
 
40
        //! Returns the number of columns to display - currently capped at 3
 
41
        int columnCount(const QModelIndex &parent) const;
 
42
        QVariant data(const QModelIndex &index, int role) const;
 
43
        QVariant headerData(int section, Qt::Orientation orientation, int role) const;
 
44
        //!
 
45
        void setResults(QList<NameFinderResult> *results);
 
46
        NameFinderResult resultAt(int index);
 
47
        QList<NameFinderResult> *myResults;
 
48
 
 
49
private:
 
50
 
 
51
        //! How many columns to show
 
52
        int showColumns;
 
53
    };
 
54
 
 
55
}
 
56
 
 
57
#endif