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 305 306 307 308 309 310 311 312 313 314
|
// qtreewidget.sip generated by MetaSIP on Fri Apr 16 11:32:08 2010
//
// This file is part of the QtGui Python extension module.
//
// Copyright (c) 2010 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.
//
// Please review the following information to ensure GNU General
// Public Licensing requirements will be met:
// http://trolltech.com/products/qt/licenses/licensing/opensource/. If
// you are unsure which license is appropriate for your use, please
// review the following information:
// http://trolltech.com/products/qt/licenses/licensing/licensingoverview
// or 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 <qtreewidget.h>
%End
class QTreeWidgetItem /Supertype=sip.wrapper/
{
%TypeHeaderCode
#include <qtreewidget.h>
%End
public:
%If (Qt_4_2_0 -)
enum ItemType
{
Type,
UserType,
};
%End
%If (- Qt_4_2_0)
enum
{
Type,
UserType,
};
%End
%If (Qt_4_5_0 -)
explicit QTreeWidgetItem(int type = Type);
%End
%If (- Qt_4_5_0)
QTreeWidgetItem(int type = Type);
%End
QTreeWidgetItem(const QStringList &, int type = Type);
QTreeWidgetItem(QTreeWidget * /TransferThis/, int type = Type);
QTreeWidgetItem(QTreeWidget * /TransferThis/, const QStringList &, int type = Type);
QTreeWidgetItem(QTreeWidget * /TransferThis/, QTreeWidgetItem *, int type = Type);
QTreeWidgetItem(QTreeWidgetItem * /TransferThis/, int type = Type);
QTreeWidgetItem(QTreeWidgetItem * /TransferThis/, const QStringList &, int type = Type);
QTreeWidgetItem(QTreeWidgetItem * /TransferThis/, QTreeWidgetItem *, int type = Type);
QTreeWidgetItem(const QTreeWidgetItem &);
virtual ~QTreeWidgetItem();
virtual QTreeWidgetItem *clone() const /Factory/;
QTreeWidget *treeWidget() const;
Qt::ItemFlags flags() const;
QString text(int) const;
QIcon icon(int) const;
QString statusTip(int) const;
%If (PyQt_ToolTip)
QString toolTip(int) const;
%End
%If (PyQt_WhatsThis)
QString whatsThis(int) const;
%End
QFont font(int) const;
int textAlignment(int) const;
void setTextAlignment(int, int);
QColor backgroundColor(int) const;
void setBackgroundColor(int, const QColor &);
QColor textColor(int) const;
void setTextColor(int, const QColor &);
Qt::CheckState checkState(int) const;
void setCheckState(int, Qt::CheckState);
virtual QVariant data(int, int) const;
virtual void setData(int, int, const QVariant &);
virtual bool operator<(const QTreeWidgetItem & /NoCopy/) const;
virtual void read(QDataStream &) /ReleaseGIL/;
virtual void write(QDataStream &) const /ReleaseGIL/;
QTreeWidgetItem *parent() const;
QTreeWidgetItem *child(int) const;
int childCount() const;
int columnCount() const;
void addChild(QTreeWidgetItem * /Transfer/);
void insertChild(int, QTreeWidgetItem * /Transfer/);
QTreeWidgetItem *takeChild(int) /TransferBack/;
int type() const;
void setFlags(Qt::ItemFlags);
void setText(int, const QString &);
void setIcon(int, const QIcon &);
void setStatusTip(int, const QString &);
%If (PyQt_ToolTip)
void setToolTip(int, const QString &);
%End
%If (PyQt_WhatsThis)
void setWhatsThis(int, const QString &);
%End
void setFont(int, const QFont &);
int indexOfChild(QTreeWidgetItem *) const;
QSize sizeHint(int) const;
void setSizeHint(int, const QSize &);
void addChildren(const QList<QTreeWidgetItem*> & /Transfer/);
void insertChildren(int, const QList<QTreeWidgetItem*> & /Transfer/);
QList<QTreeWidgetItem*> takeChildren() /TransferBack/;
%If (Qt_4_2_0 -)
QBrush background(int) const;
%End
%If (Qt_4_2_0 -)
void setBackground(int, const QBrush &);
%End
%If (Qt_4_2_0 -)
QBrush foreground(int) const;
%End
%If (Qt_4_2_0 -)
void setForeground(int, const QBrush &);
%End
%If (Qt_4_2_0 -)
void sortChildren(int, Qt::SortOrder);
%End
%If (Qt_4_2_0 -)
void setSelected(bool);
%End
%If (Qt_4_2_0 -)
bool isSelected() const;
%End
%If (Qt_4_2_0 -)
void setHidden(bool);
%End
%If (Qt_4_2_0 -)
bool isHidden() const;
%End
%If (Qt_4_2_0 -)
void setExpanded(bool);
%End
%If (Qt_4_2_0 -)
bool isExpanded() const;
%End
%If (Qt_4_3_0 -)
enum ChildIndicatorPolicy
{
ShowIndicator,
DontShowIndicator,
DontShowIndicatorWhenChildless,
};
%End
%If (Qt_4_3_0 -)
void setChildIndicatorPolicy(QTreeWidgetItem::ChildIndicatorPolicy);
%End
%If (Qt_4_3_0 -)
QTreeWidgetItem::ChildIndicatorPolicy childIndicatorPolicy() const;
%End
%If (Qt_4_3_0 -)
void removeChild(QTreeWidgetItem * /TransferBack/);
%End
%If (Qt_4_3_0 -)
void setFirstColumnSpanned(bool);
%End
%If (Qt_4_3_0 -)
bool isFirstColumnSpanned() const;
%End
%If (Qt_4_3_0 -)
void setDisabled(bool);
%End
%If (Qt_4_3_0 -)
bool isDisabled() const;
%End
protected:
%If (Qt_4_5_0 -)
void emitDataChanged();
%End
};
QDataStream &operator<<(QDataStream &, const QTreeWidgetItem & /Constrained/);
QDataStream &operator>>(QDataStream &, QTreeWidgetItem & /Constrained/);
class QTreeWidget : QTreeView
{
%TypeHeaderCode
#include <qtreewidget.h>
%End
public:
explicit QTreeWidget(QWidget *parent /TransferThis/ = 0);
virtual ~QTreeWidget();
int columnCount() const;
void setColumnCount(int);
QTreeWidgetItem *topLevelItem(int) const;
int topLevelItemCount() const;
void insertTopLevelItem(int, QTreeWidgetItem * /Transfer/);
void addTopLevelItem(QTreeWidgetItem * /Transfer/);
QTreeWidgetItem *takeTopLevelItem(int) /TransferBack/;
int indexOfTopLevelItem(QTreeWidgetItem *);
void insertTopLevelItems(int, const QList<QTreeWidgetItem*> & /Transfer/);
void addTopLevelItems(const QList<QTreeWidgetItem*> & /Transfer/);
QTreeWidgetItem *headerItem() const;
void setHeaderItem(QTreeWidgetItem *);
void setHeaderLabels(const QStringList &);
QTreeWidgetItem *currentItem() const;
int currentColumn() const;
void setCurrentItem(QTreeWidgetItem *);
void setCurrentItem(QTreeWidgetItem *, int);
%If (Qt_4_4_0 -)
void setCurrentItem(QTreeWidgetItem *, int, QFlags<QItemSelectionModel::SelectionFlag>);
%End
QTreeWidgetItem *itemAt(const QPoint &) const;
QTreeWidgetItem *itemAt(int, int) const;
QRect visualItemRect(const QTreeWidgetItem *) const;
int sortColumn() const;
void sortItems(int, Qt::SortOrder);
void setSortingEnabled(bool);
bool isSortingEnabled() const;
void editItem(QTreeWidgetItem *, int column = 0);
void openPersistentEditor(QTreeWidgetItem *, int column = 0);
void closePersistentEditor(QTreeWidgetItem *, int column = 0);
QWidget *itemWidget(QTreeWidgetItem *, int) const;
void setItemWidget(QTreeWidgetItem *, int, QWidget * /Transfer/);
bool isItemSelected(const QTreeWidgetItem *) const;
void setItemSelected(const QTreeWidgetItem *, bool);
QList<QTreeWidgetItem*> selectedItems() const;
QList<QTreeWidgetItem*> findItems(const QString &, Qt::MatchFlags, int column = 0) const;
bool isItemHidden(const QTreeWidgetItem *) const;
void setItemHidden(const QTreeWidgetItem *, bool);
bool isItemExpanded(const QTreeWidgetItem *) const;
void setItemExpanded(const QTreeWidgetItem *, bool);
public slots:
void scrollToItem(const QTreeWidgetItem *, QAbstractItemView::ScrollHint hint = QAbstractItemView::EnsureVisible);
void expandItem(const QTreeWidgetItem *);
void collapseItem(const QTreeWidgetItem *);
void clear();
signals:
void itemPressed(QTreeWidgetItem *, int);
void itemClicked(QTreeWidgetItem *, int);
void itemDoubleClicked(QTreeWidgetItem *, int);
void itemActivated(QTreeWidgetItem *, int);
void itemEntered(QTreeWidgetItem *, int);
void itemChanged(QTreeWidgetItem *, int);
void itemExpanded(QTreeWidgetItem *);
void itemCollapsed(QTreeWidgetItem *);
void currentItemChanged(QTreeWidgetItem *, QTreeWidgetItem *);
void itemSelectionChanged();
protected:
virtual QStringList mimeTypes() const;
virtual QMimeData *mimeData(const QList<QTreeWidgetItem*>) const /TransferBack/;
virtual bool dropMimeData(QTreeWidgetItem *, int, const QMimeData *, Qt::DropAction);
virtual Qt::DropActions supportedDropActions() const;
QList<QTreeWidgetItem*> items(const QMimeData *) const;
QModelIndex indexFromItem(QTreeWidgetItem *, int column = 0) const;
QTreeWidgetItem *itemFromIndex(const QModelIndex &) const;
virtual bool event(QEvent *);
%If (Qt_4_2_0 -)
virtual void dropEvent(QDropEvent *);
%End
public:
%If (Qt_4_2_0 -)
QTreeWidgetItem *invisibleRootItem() const;
%End
%If (Qt_4_2_0 -)
void setHeaderLabel(const QString &);
%End
%If (Qt_4_3_0 -)
bool isFirstItemColumnSpanned(const QTreeWidgetItem *) const;
%End
%If (Qt_4_3_0 -)
void setFirstItemColumnSpanned(const QTreeWidgetItem *, bool);
%End
%If (Qt_4_3_0 -)
QTreeWidgetItem *itemAbove(const QTreeWidgetItem *) const;
%End
%If (Qt_4_3_0 -)
QTreeWidgetItem *itemBelow(const QTreeWidgetItem *) const;
%End
%If (Qt_4_3_0 -)
void removeItemWidget(QTreeWidgetItem * /TransferBack/, int);
%End
%If (Qt_4_5_0 -)
virtual void setSelectionModel(QItemSelectionModel * /KeepReference/);
%End
private:
virtual void setModel(QAbstractItemModel * /KeepReference/);
QTreeWidget(const QTreeWidget &);
};
|