BlinCT
BlinCTFeb. 5, 2021, 3:31 p.m.

Применение нужных настроек(цвет, ширина) в графике для определенных обьектов

Всем привет.
Пытаюсь решить такую проблему:
есть булевое значение наличия или отсутствия заголовков в таблице, так же для строк в таблице через 1 строку применяется дизайн.
Я вызываю функцию и передаю туда индекс, там и происходит те или иные указания для цвета и ширины границы.
И ошибку я получаю
ReferenceError: delegateRect is not defined
Вопрос, что я делаю не так?)
Благодарю заранее

import QtQuick 2.12

Item
{
    id: root

    property var  model
    property bool headers : false

    function getSize(column)
    {
        return tableView.model.getSizeLongString(column)
    }

    function foo(indexRow)
    {
        if (headers == true)
        {
            console.log("indexRow", headers)
            if (indexRow % 2 == 0)
            {
                delegateRect.color = "transparent";
                delegateRect.border.width = 0;
            }
            else
            {
                delegateRect.color = "#2C3033";
                delegateRect.border.width = 1;
            }
        }
        else
        {
            console.log("indexRow", headers)
            if (indexRow % 2 != 0)
            {
                delegateRect.color = "transparent";
                delegateRect.border.width = 0;
            }
            else
            {
                delegateRect.color = "#2C3033";
                delegateRect.border.width = 1;
            }
        }
    }

    Row
    {
        id: rowHeader

        anchors.top: parent.top
        anchors.left: parent.left
        anchors.right: parent.right
        height: visible ? 35 : 0
        visible: root.headers
        enabled: !root.headers

        Repeater
        {
            id: headerRepeater

            model: root.model.headerModel

            Rectangle
            {
                id: rectHeader

                width: root.model.getSizeLongString(index)
                border.color: "blue"
                height: 35

                Component.onCompleted:
                {
                    root.model.setHeaderItem(rectHeader);
                }

                Text
                {
                    width: 50

                    height: 35

                    anchors.fill: parent

                    text: root.model.headerData(modelData, Qt.Horizontal, "display")
                }
            }
        }
    }

    ListView
    {
        id: tableView

        anchors.top:  headers ? rowHeader.bottom : root.top
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.bottom: parent.bottom

        flickableDirection: TableView.VerticalFlick

        clip: true
        model: root.model

        delegate:  Rectangle
        {
            id: delegateRect

            color: "transparent"
            implicitWidth: 543
            implicitHeight: 22

            property var indexRow: model.index

            Row
            {
                id: rect
                clip: true

                Repeater
                {
                    id: celsRepeater

                    model: root.model.columnCount()


                    Component.onCompleted:
                    {
                        root.foo(delegateRect.indexRow)
                    }

                    Rectangle
                    {
                        id: rextText

                        border.color: "blue"
                        color: "#2C3033"
                        width: root.model.getSizeLongString(index)
                        height: 15

                        Text
                        {
                            width: 50
                            height: 35

                            anchors.fill: parent
                            font.pixelSize: 12
                            verticalAlignment: Text.AlignTop
                            color: model.index === 0 ? "#B8B8B8" : "#EAEAEA"
                            text: root.model.getData(indexRow, model.index)
                        }
                    }
                }
            }
        }
    }
}

We recommend hosting TIMEWEB
We recommend hosting TIMEWEB
Stable hosting, on which the social network EVILEG is located. For projects on Django we recommend VDS hosting.

Do you like it? Share on social networks!

7
Алексей Внуков
  • Feb. 8, 2021, 5:01 a.m.

добрый, а пробывали обращаться через лист tableView.delegateRect.color="transparent";?
когда-то делал цветные строки в таблице на первых контролах, делал так

        TableView
        {
            id: table_view_monitor
            anchors.fill: parent

            clip: true  

            TableViewColumn
            {
                role: "InOutState"
                title: qsTr("Direction")
                width: 125
                delegate: Label
                {
                    text:
                    {
                       var al=styleData.value//monitorModel.get(styleData.row).inoutstate
                       if (al===0) return qsTr('enter')
                       else if(al===1) return qsTr('exit')
                       else return qsTr('undefined')
                    }
                    color: "black"
                    font.family: "Arial"
                    font.pixelSize: 11
                    leftPadding: 5
                }
            }

            TableViewColumn
            {
                role: "norm"
                title: qsTr("NORM")
                visible: false
                width: 200
                delegate: Label
                {
                    text: styleData.value
                    color: "black"
                    font.family: "Arial"
                    font.pixelSize: 11
                    bottomPadding: 2
                    leftPadding: 5
                }
            }
            model: m_model

            headerDelegate: Rectangle {
                height: 25
                width: textItem.implicitWidth

                Label {
                    id: textItem
                    anchors.centerIn: parent
                    text: styleData.value
                    color: "black"
                    font.family: "Arial"
                    font.pixelSize: 12
                }
                Frame {
                    anchors.right: parent.right
                    anchors.top: parent.top
                    anchors.bottom: parent.bottom
                    anchors.bottomMargin: 1
                    anchors.topMargin: 1
                    width: 1
                }
            }

            rowDelegate: Rectangle
            {
                anchors.fill: parent
                color:{
                    var al=m_model.get(styleData.row).norm
                    if(al===0) return "red"
                    else if (styleData.selected) return 'lightblue'
                    else if(styleData.alternate) return Material.background
                    else return "white"
                }

                MouseArea
                {

                    anchors.fill: parent
                    acceptedButtons: Qt.RightButton | Qt.LeftButton
                    onClicked:
                    {
                        table_view_monitor.selection.clear()
                        table_view_monitor.selection.select(styleData.row)
                        table_view_monitor.currentRow=styleData.row
                        table_view_monitor.focus=true

                        switch(mouse.button)
                        {
                        case Qt.RightButton:
                            contextMenu.popup()
                            break
                        default:
                            break
                        }
                    }
                }
                Menu
                {
                    id: contextMenu
                    MenuItem
                    {
                        text: qsTr("Get CardNo")
                        onTriggered:
                        {
                            card_no.text=m_model.get(styleData.row).CardNo
                            table_view_monitor.focus=false
                        }
                    }
                }
            }
        }
    BlinCT
    • Feb. 8, 2021, 6:51 a.m.

    Интересно что если я не вызываю функцию а в место нее все if вытаскиваю то это срабатывает. Но через функцию не работает.
    Не пойму почему

      Алексей Внуков
      • Feb. 8, 2021, 8:23 a.m.

      где-то явно нарушена область видимости обьекта, возможно delegateRect не доступен за пределами своего елемента, нужно смотреть документацию по-глубже.

        Алексей Внуков
        • Feb. 8, 2021, 8:23 a.m.

        где-то явно нарушена область видимости обьекта, возможно delegateRect не доступен за пределами своего елемента, нужно смотреть документацию по-глубже.

          BlinCT
          • Feb. 9, 2021, 7:26 a.m.

          На самом деле есть такая мысль, надо бы понять как это протестить чтоыб найти ответ)
          Кстати такой вопрос который касается имено этого кода, на строке 138 там есть ширина для Rectangle и в нем уже будет текст.
          А вот внешнйи делегат у него у Rectangle у меня стоит статический размер ширины.
          Вопрос состоит в том, можно ли получая ширину на 138 формировать ширину делегата для всех созданных в репиторе обьектов?
          Мне надо как то в нормальный вид привезти то что на 110 и 111 строках.

            Алексей Внуков
            • Feb. 9, 2021, 5:05 p.m.
            • (edited)

            если я правильно понял, можно добавить property int rec_width:0 в самом начале делегата, тогда там где нужно указать ширину указываем rec_width, а в Component.onCompleted: добавить rec_width=root.model.getSizeLongString(index), тогда будет перерисовываться по указанному размеру (должно сработать), или отдельно в модели передавать ширину, тогда будет что-то вроде property int rec_width:root.model.getSize(). возможно путанно написал, надеюсь идею поняли

              BlinCT
              • Feb. 11, 2021, 6:10 p.m.

              Добрый вечер.
              Спасибо за совет. По сути я идею понял но она получается не рабочей.
              Потому что с начале у делегата имеется пропертя данная, потом ширина implicitWidth: 543 которая и дает ширину данной строки, а уже после репитер создает данные 2 или более ячеек, и только тогда пропертя получает размер.
              В общем не получается так(

                Comments

                Only authorized users can post comments.
                Please, Log in or Sign up
                OI

                C++ - Test 001. The first program and data types

                • Result:40points,
                • Rating points-8
                AD

                C ++ - Test 004. Pointers, Arrays and Loops

                • Result:50points,
                • Rating points-4
                m

                C ++ - Test 004. Pointers, Arrays and Loops

                • Result:80points,
                • Rating points4
                Last comments
                ИМ
                Игорь МаксимовNov. 22, 2024, 7:51 p.m.
                Django - Tutorial 017. Customize the login page to Django Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
                Evgenii Legotckoi
                Evgenii LegotckoiOct. 31, 2024, 9:37 p.m.
                Django - Lesson 064. How to write a Python Markdown extension Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup
                A
                ALO1ZEOct. 19, 2024, 3:19 p.m.
                Fb3 file reader on Qt Creator Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
                ИМ
                Игорь МаксимовOct. 5, 2024, 2:51 p.m.
                Django - Lesson 064. How to write a Python Markdown extension Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
                d
                dblas5July 5, 2024, 6:02 p.m.
                QML - Lesson 016. SQLite database and the working with it in QML Qt Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
                Now discuss on the forum
                AW
                Ayden WatkinsJan. 2, 2025, 8:09 a.m.
                Why Paying for a Research Paper Can Be a Smart Choice Writing a research paper can be a daunting task, especially when faced with tight deadlines, complex topics, or a lack of resources. For many students, paying for a research paper is a practical…
                p
                pimacontrols85Dec. 31, 2024, 5:39 p.m.
                Finding the Right Rittal Small Enclosure for Your Needs Rittal is a leading manufacturer of enclosures for industrial and IT applications. Their small enclosures offer a compact and reliable solution for a wide range of needs, from housing electronic…
                Donald Randolph
                Donald RandolphDec. 30, 2024, 10:59 a.m.
                Personal Injury lawyer Santa Monica As an experienced Santa Monica personal injury lawyer, Donald C. Randolph has recovered over $100 Million in verdicts and settlements for our clients. In severe injury cases, this compensation i…
                Nirvana Yoga School
                Nirvana Yoga SchoolDec. 30, 2024, 1:13 p.m.
                OAuth2.0 через VK, получение email Nirvana Yoga School is one of the most trusted and reputed traditional Rishikesh yoga courses , India certified by Yoga Alliance, USA. We aim to spread traditional yoga teachings so t…
                s
                sriparkDec. 30, 2024, 12:47 p.m.
                Mobile app development company in Chennai A Mobile app development company in Chennai focuses on creating personalized mobile applications to meet various business requirements. These companies offer a full range of services,…

                Follow us in social networks