summaryrefslogtreecommitdiffstats
path: root/src/gallery/simple/qsimplegalleryitemresultset.h
diff options
context:
space:
mode:
authorXizhi Zhu <xizhi.zhu@nokia.com>2011-08-17 15:17:31 +0300
committerQt by Nokia <qt-info@nokia.com>2011-08-17 15:06:52 +0200
commit3fd036131eb20c85c2e56fdb3603655cf36ed593 (patch)
tree920e501911dda3e4050bff566f3af506075eeeee /src/gallery/simple/qsimplegalleryitemresultset.h
parent7c5a4838133e0d5a748d8e6f7d6a6a3bc98c7687 (diff)
Import simple back-end.
Change-Id: I2757f758e23fddbe0dc91c4383926c4d4f180191 Reviewed-on: http://codereview.qt.nokia.com/3098 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Xizhi Zhu <xizhi.zhu@nokia.com>
Diffstat (limited to 'src/gallery/simple/qsimplegalleryitemresultset.h')
-rw-r--r--src/gallery/simple/qsimplegalleryitemresultset.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/src/gallery/simple/qsimplegalleryitemresultset.h b/src/gallery/simple/qsimplegalleryitemresultset.h
new file mode 100644
index 0000000..769e8a4
--- /dev/null
+++ b/src/gallery/simple/qsimplegalleryitemresultset.h
@@ -0,0 +1,68 @@
+/****************************************************************************
+**
+** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of the QtDocGallery module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QFOLDERGALLERYITEMRESULTSET_H
+#define QFOLDERGALLERYITEMRESULTSET_H
+
+#include "qsimplegalleryresultset.h"
+
+QT_ADDON_GALLERY_BEGIN_NAMESPACE
+
+class QGalleryItemRequest;
+
+class QSimpleGalleryItemResultSet : public QSimpleGalleryResultSet
+{
+ Q_OBJECT
+
+public:
+ QSimpleGalleryItemResultSet(QObject *parent = 0);
+ ~QSimpleGalleryItemResultSet();
+
+ void createQuery();
+ QString itemType() const;
+
+private:
+ QGalleryItemRequest * m_request;
+};
+
+QT_ADDON_GALLERY_END_NAMESPACE
+
+#endif // QFOLDERGALLERYITEMRESULTSET_H