Kraxy/EBN: missing Q_OBJECT
[kphotoalbum.git] / ImportExport / ImportMatcher.h
blob1d99b1e3c15f61fb7d9306d4b9e634f22fb0762a
1 /* Copyright (C) 2003-2006 Jesper K. Pedersen <blackie@kde.org>
3 This program is free software; you can redistribute it and/or
4 modify it under the terms of the GNU General Public
5 License as published by the Free Software Foundation; either
6 version 2 of the License, or (at your option) any later version.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; see the file COPYING. If not, write to
15 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16 Boston, MA 02110-1301, USA.
19 #ifndef IMPORTMATCHER_H
20 #define IMPORTMATCHER_H
22 #include <QScrollArea>
24 class QGridLayout;
25 class QComboBox;
26 class QCheckBox;
28 namespace ImportExport
30 class CategoryMatchSetting;
32 /**
33 * This class encaptualte a single row in an ImportMatcher.
35 class CategoryMatch {
36 public:
37 CategoryMatch( bool allowNew, const QString& categort, QStringList items, QWidget* parent, QGridLayout* grid, int row );
38 QCheckBox* _checkbox;
39 QComboBox* _combobox;
40 QString _text;
44 /**
45 * This class is the configuration page for chooseing the matching between
46 * the .kim file and the DB's items (e.g. .kim says People, DB say
47 * Persons).
49 class ImportMatcher :public QScrollArea {
50 Q_OBJECT
52 public:
53 ImportMatcher( const QString& otherCategory, const QString& myCategory,
54 const QStringList& otherItems, const QStringList& myItems,
55 bool allowNew, QWidget* parent );
56 CategoryMatchSetting settings();
58 QString _otherCategory;
59 QString _myCategory;
60 QList<CategoryMatch*> _matchers;
63 typedef QList<ImportMatcher*> ImportMatchers;
67 #endif /* IMPORTMATCHER_H */