/usr/share/sip/PyQt4/QtGui/qstandarditemmodel.sip is in python-qt4-dev 4.9.1-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 | // qstandarditemmodel.sip generated by MetaSIP on Fri Feb 10 10:35:12 2012
//
// This file is part of the QtGui Python extension module.
//
// Copyright (c) 2011 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt.
//
// This file may be used under the terms of the GNU General Public
// License versions 2.0 or 3.0 as published by the Free Software
// Foundation and appearing in the files LICENSE.GPL2 and LICENSE.GPL3
// included in the packaging of this file. Alternatively you may (at
// your option) use any later version of the GNU General Public
// License if such license has been publicly approved by Riverbank
// Computing Limited (or its successors, if any) and the KDE Free Qt
// Foundation. In addition, as a special exception, Riverbank gives you
// certain additional rights. These rights are described in the Riverbank
// GPL Exception version 1.1, which can be found in the file
// GPL_EXCEPTION.txt in this package.
//
// If you are unsure which license is appropriate for your use, please
// contact the sales department at sales@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
%ModuleCode
#include <qstandarditemmodel.h>
%End
class QStandardItemModel : QAbstractItemModel
{
%TypeHeaderCode
#include <qstandarditemmodel.h>
%End
public:
explicit QStandardItemModel(QObject *parent /TransferThis/ = 0);
QStandardItemModel(int rows, int columns, QObject *parent /TransferThis/ = 0);
virtual ~QStandardItemModel();
virtual QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
virtual QModelIndex parent(const QModelIndex &child) const;
QObject *parent() const;
virtual int rowCount(const QModelIndex &parent = QModelIndex()) const;
virtual int columnCount(const QModelIndex &parent = QModelIndex()) const;
virtual bool hasChildren(const QModelIndex &parent = QModelIndex()) const;
virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
virtual bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole);
virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
virtual bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role = Qt::EditRole);
virtual bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex());
virtual bool insertColumns(int column, int count, const QModelIndex &parent = QModelIndex());
virtual bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex());
virtual bool removeColumns(int column, int count, const QModelIndex &parent = QModelIndex());
virtual Qt::ItemFlags flags(const QModelIndex &index) const;
void clear();
%If (Qt_4_2_0 -)
virtual Qt::DropActions supportedDropActions() const;
%End
%If (Qt_4_2_0 -)
virtual QMap<int, QVariant> itemData(const QModelIndex &index) const;
%End
%If (Qt_4_2_0 -)
virtual bool setItemData(const QModelIndex &index, const QMap<int, QVariant> &roles);
%End
%If (Qt_4_2_0 -)
virtual void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
%End
%If (Qt_4_2_0 -)
QStandardItem *itemFromIndex(const QModelIndex &index) const;
%End
%If (Qt_4_2_0 -)
QModelIndex indexFromItem(const QStandardItem *item) const;
%End
%If (Qt_4_2_0 -)
QStandardItem *item(int row, int column = 0) const;
%End
%If (Qt_4_2_0 -)
void setItem(int row, int column, QStandardItem *item /Transfer/);
%End
%If (Qt_4_2_0 -)
void setItem(int arow, QStandardItem *aitem /Transfer/);
%End
%If (Qt_4_2_0 -)
QStandardItem *invisibleRootItem() const;
%End
%If (Qt_4_2_0 -)
QStandardItem *horizontalHeaderItem(int column) const;
%End
%If (Qt_4_2_0 -)
void setHorizontalHeaderItem(int column, QStandardItem *item /Transfer/);
%End
%If (Qt_4_2_0 -)
QStandardItem *verticalHeaderItem(int row) const;
%End
%If (Qt_4_2_0 -)
void setVerticalHeaderItem(int row, QStandardItem *item /Transfer/);
%End
%If (Qt_4_2_0 -)
void setHorizontalHeaderLabels(const QStringList &labels);
%End
%If (Qt_4_2_0 -)
void setVerticalHeaderLabels(const QStringList &labels);
%End
%If (Qt_4_2_0 -)
void setRowCount(int rows);
%End
%If (Qt_4_2_0 -)
void setColumnCount(int columns);
%End
%If (Qt_4_2_0 -)
void appendRow(const QList<QStandardItem*> &items /Transfer/);
%End
%If (Qt_4_2_0 -)
void appendColumn(const QList<QStandardItem*> &items /Transfer/);
%End
%If (Qt_4_2_0 -)
void insertRow(int row, const QList<QStandardItem*> &items /Transfer/);
%End
%If (Qt_4_2_0 -)
void insertColumn(int column, const QList<QStandardItem*> &items /Transfer/);
%End
%If (Qt_4_2_0 -)
QStandardItem *takeItem(int row, int column = 0) /TransferBack/;
%End
%If (Qt_4_2_0 -)
QList<QStandardItem*> takeRow(int row) /TransferBack/;
%End
%If (Qt_4_2_0 -)
QList<QStandardItem*> takeColumn(int column) /TransferBack/;
%End
%If (Qt_4_2_0 -)
QStandardItem *takeHorizontalHeaderItem(int column) /TransferBack/;
%End
%If (Qt_4_2_0 -)
QStandardItem *takeVerticalHeaderItem(int row) /TransferBack/;
%End
%If (Qt_4_2_0 -)
const QStandardItem *itemPrototype() const;
%End
%If (Qt_4_2_0 -)
void setItemPrototype(const QStandardItem *item /Transfer/);
%End
%If (Qt_4_2_0 -)
QList<QStandardItem*> findItems(const QString &text, Qt::MatchFlags flags = Qt::MatchExactly, int column = 0) const;
%End
%If (Qt_4_2_0 -)
int sortRole() const;
%End
%If (Qt_4_2_0 -)
void setSortRole(int role);
%End
%If (Qt_4_2_0 -)
void appendRow(QStandardItem *aitem /Transfer/);
%End
%If (Qt_4_2_0 -)
void insertRow(int arow, QStandardItem *aitem /Transfer/);
%End
%If (Qt_4_2_0 -)
bool insertRow(int row, const QModelIndex &parent = QModelIndex());
%End
%If (Qt_4_2_0 -)
bool insertColumn(int column, const QModelIndex &parent = QModelIndex());
%End
%If (Qt_4_5_0 -)
virtual QStringList mimeTypes() const;
%End
%If (Qt_4_5_0 -)
virtual QMimeData *mimeData(const QModelIndexList &indexes) const /TransferBack/;
%End
%If (Qt_4_5_0 -)
virtual bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent);
%End
signals:
%If (Qt_4_2_0 -)
void itemChanged(QStandardItem *item);
%End
private:
QStandardItemModel(const QStandardItemModel &);
};
%If (Qt_4_2_0 -)
class QStandardItem /Supertype=sip.wrapper/
{
%TypeHeaderCode
#include <qstandarditemmodel.h>
%End
public:
QStandardItem();
QStandardItem(const QString &text);
QStandardItem(const QIcon &icon, const QString &text);
QStandardItem(int rows, int columns = 1);
virtual ~QStandardItem();
virtual QVariant data(int role = Qt::UserRole+1) const;
virtual void setData(const QVariant &value, int role = Qt::UserRole+1);
QString text() const;
QIcon icon() const;
QString toolTip() const;
QString statusTip() const;
QString whatsThis() const;
QSize sizeHint() const;
QFont font() const;
Qt::Alignment textAlignment() const;
QBrush background() const;
QBrush foreground() const;
Qt::CheckState checkState() const;
QString accessibleText() const;
QString accessibleDescription() const;
Qt::ItemFlags flags() const;
void setFlags(Qt::ItemFlags flags);
bool isEnabled() const;
void setEnabled(bool enabled);
bool isEditable() const;
void setEditable(bool editable);
bool isSelectable() const;
void setSelectable(bool selectable);
bool isCheckable() const;
void setCheckable(bool checkable);
bool isTristate() const;
void setTristate(bool tristate);
bool isDragEnabled() const;
void setDragEnabled(bool dragEnabled);
bool isDropEnabled() const;
void setDropEnabled(bool dropEnabled);
QStandardItem *parent() const;
int row() const;
int column() const;
QModelIndex index() const;
QStandardItemModel *model() const;
int rowCount() const;
void setRowCount(int rows);
int columnCount() const;
void setColumnCount(int columns);
bool hasChildren() const;
QStandardItem *child(int row, int column = 0) const;
void setChild(int row, int column, QStandardItem *item /Transfer/);
void setChild(int arow, QStandardItem *aitem /Transfer/);
void insertRow(int row, const QList<QStandardItem*> &items /Transfer/);
void insertRow(int arow, QStandardItem *aitem /Transfer/);
void insertRows(int row, int count);
void insertColumn(int column, const QList<QStandardItem*> &items /Transfer/);
void insertColumns(int column, int count);
void removeRow(int row);
void removeColumn(int column);
void removeRows(int row, int count);
void removeColumns(int column, int count);
QStandardItem *takeChild(int row, int column = 0) /TransferBack/;
QList<QStandardItem*> takeRow(int row) /TransferBack/;
QList<QStandardItem*> takeColumn(int column) /TransferBack/;
void sortChildren(int column, Qt::SortOrder order = Qt::AscendingOrder);
virtual QStandardItem *clone() const /Factory/;
enum ItemType
{
Type,
UserType,
};
virtual int type() const;
virtual void read(QDataStream &in);
virtual void write(QDataStream &out) const;
virtual bool operator<(const QStandardItem &other /NoCopy/) const;
void setText(const QString &atext);
void setIcon(const QIcon &aicon);
void setToolTip(const QString &atoolTip);
void setStatusTip(const QString &astatusTip);
void setWhatsThis(const QString &awhatsThis);
void setSizeHint(const QSize &asizeHint);
void setFont(const QFont &afont);
void setTextAlignment(Qt::Alignment atextAlignment);
void setBackground(const QBrush &abrush);
void setForeground(const QBrush &abrush);
void setCheckState(Qt::CheckState acheckState);
void setAccessibleText(const QString &aaccessibleText);
void setAccessibleDescription(const QString &aaccessibleDescription);
void appendRow(const QList<QStandardItem*> &aitems /Transfer/);
void appendRow(QStandardItem *aitem /Transfer/);
void appendColumn(const QList<QStandardItem*> &aitems /Transfer/);
%If (Qt_4_3_0 -)
void insertRows(int row, const QList<QStandardItem*> &items /Transfer/);
%End
%If (Qt_4_3_0 -)
void appendRows(const QList<QStandardItem*> &aitems /Transfer/);
%End
protected:
QStandardItem(const QStandardItem &other);
%If (Qt_4_4_0 -)
void emitDataChanged();
%End
};
%End
%If (Qt_4_2_0 -)
QDataStream &operator>>(QDataStream &in, QStandardItem &item /Constrained/);
%End
%If (Qt_4_2_0 -)
QDataStream &operator<<(QDataStream &out, const QStandardItem &item /Constrained/);
%End
|