Skip to content
  • 0 Votes
    3 Posts
    2k Views
    O

    Good to know, so my solution to store this in the last column and hide this one is the best solution for me.

  • 0 Votes
    4 Posts
    3k Views
    p3c0P

    @tamlong0205 I think most of this can be done from C++ side.

    You can add a function in the model which can return what type is the data for current index. This function will be called from QML and depending upon its value use a Loader to load the specific delegate.

    Perhaps setting currentIndex in Component.onCompleted handler ?

    Create a C++ function which will store in info in the model itself i.e When you change the index in ComboBox call this function and update the value there and may be maintain a role to store this update.

  • 0 Votes
    6 Posts
    6k Views
    C

    bro ur the goat ive been stuck on this for hours, i think the key was wrappping the whole delegate in a component on the qml side

  • 0 Votes
    6 Posts
    2k Views
    ael16A

    For a beginner I have found Youtube tutorials from VoidRealms very helpful. For example this tutorial is about editing in a database table:
    https://www.youtube.com/watch?v=LkbfNoZrTBQ&list=PL2D1942A4688E9D63&index=56 (C++ Qt 56 - QSqlTableModel )

  • 0 Votes
    7 Posts
    5k Views
    fcarneyF

    I had issues making these solutions work for the QML TreeView. I ended up setting the root path of my QFileSystemModel to the directory I wanted to view. Then I set the rootIndex in the TreeView to the parent of the index for that directory. This is of course showed its siblings. Then I did the following to filter those siblings away. I also made this optional through a property as there are times when I want that behavior:

    bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const { FileSystemModel* tmodel = qobject_cast<FileSystemModel*>(parent()); if(tmodel){ QModelIndex index = tmodel->index(source_row, 0, source_parent); QModelIndex rootIndex = tmodel->index(tmodel->rootPath()); if(!rootIndex.isValid() || !index.isValid()) return false; return ((index == rootIndex) || !(tmodel->filtersiblings() && isSiblingOf(index, rootIndex))); } return false; } bool isSiblingOf(const QModelIndex& index, const QModelIndex& parent) const { if(!index.isValid() || !parent.isValid()) return false; QModelIndex sibling; int row=0; do{ sibling = parent.sibling(row,0); if(sibling == index) return true; ++row; }while(sibling.isValid()); return false; }

    I took more of a blacklist approach versus a whitelist approach.

  • 0 Votes
    24 Posts
    9k Views
    SGaistS

    Sneaky one !

    Glad you found out :)

  • 0 Votes
    1 Posts
    570 Views
    No one has replied
  • 0 Votes
    5 Posts
    5k Views
    raven-worxR

    @fbengo
    oops..sry my bad.
    but as i said... straight from my head :)

    just adapt the starting method:

    void someFunction() { QFile file(filePath); if (file.open(QFile::WriteOnly)) { QTextStream stream(&file); for (int r = 0; r < model->rowCount(); r++) this->printTree( 0, model->index(r,0), stream ); file.close(); } }
  • 0 Votes
    3 Posts
    1k Views
    I

    Thank you. That worked.

  • 0 Votes
    5 Posts
    3k Views
    R

    @Citron
    Thanks for you reply..
    i have done it.

    import QtQuick 2.5 import QtQuick.Controls 1.4 as QControls import QtQuick.Controls.Styles 1.4 import OrmcoUI.Controls 1.0 TreeViewStyle{id: styleId; backgroundColor: "transparent" indentation: 20 itemDelegate: checkBoxDelegate; branchDelegate: branchDelegateId property variant linkDepthArray:[0] property int linkWidth: 0 property int linkHeight: 0 property color linkColor: "#5F5F5F" Component {id: branchDelegateId Item {id: branchItemId; x: -5; width: 12; height: 12; Rectangle {anchors.fill: parent; color: "transparent"; Image{anchors.fill : parent source: styleData.isExpanded ? "qrc:/minus.png" : "qrc:/plus.png" } Component.onCompleted: { linkDepthArray[styleData.depth] = x - width; linkWidth = width; linkHeight = height; } } } } Component { id: checkBoxDelegate Item { GQITreeViewItem{anchors.fill: parent; branchHeight: linkHeight; branchWidth: linkWidth; treeModel: control.model; depthArray: linkDepthArray; index: styleData.index; widthOffset: indentation } } } // Component { // id: checkBoxDelegate // Item { // id: container; // property int offset: (height - branchHeight) / 2.0 // GQICheckBox{id: checkBox; anchors.verticalCenter : container.verticalCenter // checkedState: styleData.value; // text: control.model.GetText(styleData.index); // onClicked: // { // console.log("value", styleData.value) // console.log("Checked index", styleData.index) // control.model.SetData(checked, styleData.index); // } // Component.onCompleted: { // updateLine(control.model.GetDepth(styleData.index)); // //console.log("Checked height", container.height) // } // } // property Item rectItem // function updateLine(depth){ // for (var i=0; i<depth; i++){ // var posX = depthArray[i] - (i+1) * indentation // var drawLine = true; // if(i > 0 && control.model.IsLastElement(styleData.index, i)) // drawLine = false; // if(drawLine) // { // rectItem = linkComponentId.createObject(container); // rectItem.x = posX; rectItem.height = (i+1) * container.height; // if(control.model.IsFirstElement(styleData.index)){ // rectItem.y = -offset; rectItem.height += offset; // } // //to restrict height of rectangle // if(control.model.IsLastElement(styleData.index)) // rectItem.height = (rectItem.height - rectItem.y) / 2.0; // } // if(i == 0){ // rectItem = linkComponentId.createObject(container); // rectItem.x = posX; rectItem.width = container.x - posX - 5; // rectItem.height = 1; rectItem.y = container.height / 2.0; // if(control.model.IsParentNode(styleData.index)) // rectItem.width = indentation - (branchWidth / 2.0) + 2; // } // } // } // Component {id: linkComponentId // Item {id: linkRectId; // width: 1; height: container.height; // Rectangle{ // anchors.fill: parent; // color: linkColor; // } // } // } // } // } }
  • 0 Votes
    22 Posts
    9k Views
    RatzzR

    I used dragMoveEvent to restrict the + symbol.

    void dragMoveEvent(QDragMoveEvent *event) { QPoint cursorPosition = event->pos() ; QModelIndex index = indexAt(cursorPosition); if(index.parent().isValid()) { event->acceptProposedAction(); } else event->ignore(); }
  • 0 Votes
    54 Posts
    22k Views
    RatzzR

    @mrjj
    cheating works fine :)

  • 0 Votes
    1 Posts
    824 Views
    No one has replied
  • 0 Votes
    1 Posts
    715 Views
    No one has replied
  • 0 Votes
    2 Posts
    4k Views
    P

    @Precitec
    Managed it myself.
    Found code in TableView source i could use for TreeView:

    function positionViewAtRow(row, mode) { __listView.positionViewAtIndex(row, mode) }

  • 0 Votes
    2 Posts
    917 Views
    SGaistS

    Hi,

    You should be able to do it on the drop event. There you can check whether you already have an element corresponding to what is being dropped and you can use a QDialog to ask the question to your user.

    Hope it helps

  • 0 Votes
    1 Posts
    809 Views
    No one has replied
  • 0 Votes
    2 Posts
    2k Views
    V

    Here's the code

    class TreeModel : public QAbstractItemModel { Q_OBJECT public: explicit TreeModel(const QString &data, QObject *parent = 0); ~TreeModel(); enum TreeRoles { TitleRole = Qt::UserRole + 1, SummaryRole }; QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE; bool setData(const QModelIndex &index, const QVariant &value, int role); Qt::ItemFlags flags(const QModelIndex &index) const Q_DECL_OVERRIDE; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE; QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; QModelIndex parent(const QModelIndex &index) const Q_DECL_OVERRIDE; int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; int columnCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; protected: QHash<int, QByteArray> roleNames() const; private: TreeItem *rootItem; };

    here's the code of the TreeView

    TreeView { id: view anchors.fill: parent anchors.margins: 2 * 12 + row.height model: treeModel selection: selectionModel headerVisible: false itemDelegate: Component { id: dragDelegate MouseArea { id: dragArea property bool held: false height: content.height drag.target: held ? content : undefined drag.axis: Drag.YAxis onPressAndHold: held = true onReleased: held = false Rectangle { id: content anchors { horizontalCenter: parent.horizontalCenter verticalCenter: parent.verticalCenter } width: dragArea.width height: 20 Text{ anchors.verticalCenter: parent.verticalCenter text: styleData.value } border.width: 1 border.color: "lightsteelblue" color: dragArea.held ? "lightsteelblue" : "green" Behavior on color { ColorAnimation { duration: 100 } } radius: 2 states: State { when: dragArea.held ParentChange { target: content; parent: root } AnchorChanges { target: content anchors { horizontalCenter: undefined; verticalCenter: undefined } } } } } } TableViewColumn { title: "Name" role: "Title" resizable: true } onClicked: { console.log("clicked", index) } onDoubleClicked: { console.log("double clicked " + index) clickedIndex = index console.log("DoubleClickedIndex " + clickedIndex) textEditRect.visible = true; textEdit.text = fileSystemModel.data(index, "Title") textEditRect.forceActiveFocus() isExpanded(index) ? collapse(index) : expand(index) } }
  • 0 Votes
    2 Posts
    1k Views
    P

    Nevermind I found a solution:

    QQmlApplicationEngine::setObjectOwnership(MY_OBJECT*, QQmlApplicationEngine::CppOwnership);

    It's important to set this whenever returning a pointer in a Q_INVOKABLE function or else it might get garbage collected apparently.