summaryrefslogtreecommitdiffstats
path: root/old/qtbindings/com_nokia_qt_core/qtscriptshell_QAbstractTableModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/qtbindings/com_nokia_qt_core/qtscriptshell_QAbstractTableModel.h')
-rw-r--r--old/qtbindings/com_nokia_qt_core/qtscriptshell_QAbstractTableModel.h91
1 files changed, 91 insertions, 0 deletions
diff --git a/old/qtbindings/com_nokia_qt_core/qtscriptshell_QAbstractTableModel.h b/old/qtbindings/com_nokia_qt_core/qtscriptshell_QAbstractTableModel.h
new file mode 100644
index 0000000..2755705
--- /dev/null
+++ b/old/qtbindings/com_nokia_qt_core/qtscriptshell_QAbstractTableModel.h
@@ -0,0 +1,91 @@
+/****************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (qt-info@nokia.com)
+**
+** This file is part of QtUiTest.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the Technology Preview License Agreement accompanying
+** this package.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, 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.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at qt-info@nokia.com.
+**
+**
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+
+#ifndef QTSCRIPTSHELL_QABSTRACTTABLEMODEL_H
+#define QTSCRIPTSHELL_QABSTRACTTABLEMODEL_H
+
+#include <qabstractitemmodel.h>
+
+#include <QtScript/qscriptvalue.h>
+
+class QtScriptShell_QAbstractTableModel : public QAbstractTableModel
+{
+public:
+ QtScriptShell_QAbstractTableModel(QObject* parent = 0);
+ ~QtScriptShell_QAbstractTableModel();
+
+ QModelIndex buddy(const QModelIndex& index) const;
+ bool canFetchMore(const QModelIndex& parent) const;
+ void childEvent(QChildEvent* arg__1);
+ int columnCount(const QModelIndex& parent) const;
+ void customEvent(QEvent* arg__1);
+ QVariant data(const QModelIndex& index, int role) const;
+ bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
+ bool event(QEvent* arg__1);
+ bool eventFilter(QObject* arg__1, QEvent* arg__2);
+ void fetchMore(const QModelIndex& parent);
+ Qt::ItemFlags flags(const QModelIndex& index) const;
+ QVariant headerData(int section, Qt::Orientation orientation, int role) const;
+ QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const;
+ bool insertColumns(int column, int count, const QModelIndex& parent);
+ bool insertRows(int row, int count, const QModelIndex& parent);
+ QMap<int , QVariant > itemData(const QModelIndex& index) const;
+ QList<QModelIndex > match(const QModelIndex& start, int role, const QVariant& value, int hits, Qt::MatchFlags flags) const;
+ QMimeData* mimeData(const QList<QModelIndex >& indexes) const;
+ QStringList mimeTypes() const;
+ bool removeColumns(int column, int count, const QModelIndex& parent);
+ bool removeRows(int row, int count, const QModelIndex& parent);
+ void revert();
+ int rowCount(const QModelIndex& parent) const;
+ bool setData(const QModelIndex& index, const QVariant& value, int role);
+ bool setHeaderData(int section, Qt::Orientation orientation, const QVariant& value, int role);
+ bool setItemData(const QModelIndex& index, const QMap<int , QVariant >& roles);
+ void sort(int column, Qt::SortOrder order);
+ QSize span(const QModelIndex& index) const;
+ bool submit();
+ Qt::DropActions supportedDropActions() const;
+ void timerEvent(QTimerEvent* arg__1);
+
+ QScriptValue __qtscript_self;
+};
+
+#endif // QTSCRIPTSHELL_QABSTRACTTABLEMODEL_H