QCAD Application Framework
CAD Application Development and Automation.
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qtscriptshell_QTreeWidgetItem.h
Go to the documentation of this file.
1 #ifndef QTSCRIPTSHELL_QTREEWIDGETITEM_H
2 #define QTSCRIPTSHELL_QTREEWIDGETITEM_H
3 
4 #include <qtreewidget.h>
5 
6 #include <QtScript/qscriptvalue.h>
7 
8 class QtScriptShell_QTreeWidgetItem : public QTreeWidgetItem
9 {
10 public:
11  QtScriptShell_QTreeWidgetItem(QTreeWidget* view, QTreeWidgetItem* after, int type = Type);
12  QtScriptShell_QTreeWidgetItem(QTreeWidget* view, const QStringList& strings, int type = Type);
13  QtScriptShell_QTreeWidgetItem(QTreeWidget* view, int type = Type);
14  QtScriptShell_QTreeWidgetItem(QTreeWidgetItem* parent, QTreeWidgetItem* after, int type = Type);
15  QtScriptShell_QTreeWidgetItem(QTreeWidgetItem* parent, const QStringList& strings, int type = Type);
16  QtScriptShell_QTreeWidgetItem(QTreeWidgetItem* parent, int type = Type);
17  QtScriptShell_QTreeWidgetItem(const QStringList& strings, int type = Type);
18  QtScriptShell_QTreeWidgetItem(const QTreeWidgetItem& other);
19  QtScriptShell_QTreeWidgetItem(int type = Type);
21 
22  QTreeWidgetItem* clone() const;
23  QVariant data(int column, int role) const;
24  void setData(int column, int role, const QVariant& value);
25 
26  QScriptValue __qtscript_self;
27 };
28 
29 #endif // QTSCRIPTSHELL_QTREEWIDGETITEM_H