x
xintreaJan. 25, 2018, 5:37 a.m.

Методика запоминания предыдущего значения в QML

qml, свойство

По причине отсутствия ответов вот в этой теме:


https://evileg.com/forum/topic/457/

...хочу разобраться в более общем вопросе. Вопрос звучит так:

Каким образом в декларативном языке QML можно организовать запоминание предыдущего значения свойства?

То есть, задача состоит в том, чтобы перед любым изменением свойства запомнить его значение в другое свойство. Проблема в том, что существующий механизм сигналов onИмяСвойстваChanged() испускает сигнал об изменении свойства уже после его изменения. И в этом обработчике невозможно получить предыдущее значение свойства чтобы его запомнить.

Кто что думает?

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!

4
Evgenii Legotckoi
  • Jan. 25, 2018, 7:57 a.m.

Что касается вашего предыдущего вопроса, то посмотрю его, когда появится побольше свободного времени.


Что касается данного вопроса, то можно запоминать самое первое значение некоторой property в другую property при создании QML объекта. Для этого можно использовать обработчик Component.onCompleted

import QtQuick 2.8
import QtQuick.Window 2.2
import QtQuick.Controls 2.2

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")

    Item {
        id: item
        anchors.top: parent.top
        anchors.left: parent.left
        anchors.right: parent.right
        anchors.bottom: parent.verticalCenter

        property int someProperty: 2
        property int rememberedProperty: 0

        onSomePropertyChanged: {
            console.log("-------------------------")
            console.log(rememberedProperty)
            console.log(someProperty)
            rememberedProperty = someProperty
            console.log(rememberedProperty)
            console.log(someProperty)
        }

        Component.onCompleted: {
            rememberedProperty = someProperty
        }
    }

    Button {
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.bottom: parent.bottom
        anchors.bottomMargin: 20

        text: qsTr("Increase Property")

        onClicked: {
            item.someProperty++
        }
    }
}
Вывод получится следующий
qml: -------------------------
qml: 2
qml: 3
qml: 3
qml: 3
То есть 2 это будет предыдущее значение, а 3 - это уже новое значение.
    x
    • Jan. 25, 2018, 1:51 p.m.

    А теперь скажите, чему будут равны rememberedProperty и someProperty после отработки onSomePropertyChanged() ?

    Правильно, они будут равны.

    Причем, новое событие, устанавливающее еще одно значение someProprty еще не наступило. А они уже равны.

      Evgenii Legotckoi
      • Jan. 25, 2018, 2:28 p.m.
      • (edited)
      Ой.. ну надо же какой вы привереда...

      import QtQuick 2.8
      import QtQuick.Window 2.2
      import QtQuick.Controls 2.2
      
      Window {
          visible: true
          width: 640
          height: 480
          title: qsTr("Hello World")
      
          Item {
              id: item
              anchors.top: parent.top
              anchors.left: parent.left
              anchors.right: parent.right
              anchors.bottom: parent.verticalCenter
      
              property int someProperty: 2
              property int rememberedProperty: 0
      
              function setSomeProperty(newValue)
              {
                  console.log(rememberedProperty)
                  console.log(someProperty)
                  rememberedProperty = someProperty
                  item.someProperty++
                  console.log(rememberedProperty)
                  console.log(someProperty)
              }
          }
      
          Button {
              anchors.horizontalCenter: parent.horizontalCenter
              anchors.bottom: parent.bottom
              anchors.bottomMargin: 20
      
              text: qsTr("Increase Property")
      
              onClicked: {
                  item.setSomeProperty(item.someProperty + 1)
              }
          }
      }
      Используйте функцию обёртку для установки параметров.

      В принципе, это уж не считая того, что можно в C++ наследоваться от QObject или QQuickItem и написать кастомнный сеттер со всеми плюшками, что захочется.
        Evgenii Legotckoi
        • Jan. 25, 2018, 2:32 p.m.

        Относительно C++ вопрос в другом, пишите ли Вы на нём, или Вам нужно решение только на QML. Если только на QML, то в данном случае только методом обёрткой.

          Comments

          Only authorized users can post comments.
          Please, Log in or Sign up
          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
          m

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

          • Result:20points,
          • Rating points-10
          Last comments
          i
          innorwallNov. 12, 2024, 6:12 a.m.
          Django - Tutorial 055. How to write auto populate field functionality Freckles because of several brand names retin a, atralin buy generic priligy
          i
          innorwallNov. 12, 2024, 2:23 a.m.
          QML - Tutorial 035. Using enumerations in QML without C ++ priligy cvs 24 Together with antibiotics such as amphotericin B 10, griseofulvin 11 and streptomycin 12, chloramphenicol 9 is in the World Health Organisation s List of Essential Medici…
          i
          innorwallNov. 11, 2024, 11:50 p.m.
          Qt/C++ - Lesson 052. Customization Qt Audio player in the style of AIMP It decreases stress, supports hormone balance, and regulates and increases blood flow to the reproductive organs buy priligy online safe Promising data were reported in a PDX model re…
          i
          innorwallNov. 11, 2024, 10:19 p.m.
          Heap sorting algorithm The role of raloxifene in preventing breast cancer priligy precio
          i
          innorwallNov. 11, 2024, 9:55 p.m.
          PyQt5 - Lesson 006. Work with QTableWidget buy priligy 60 mg 53 have been reported by Javanovic Santa et al
          Now discuss on the forum
          i
          innorwallNov. 12, 2024, 4:56 a.m.
          добавить qlineseries в функции buy priligy senior brother Chu He, whom he had known for many years
          i
          innorwallNov. 11, 2024, 6:55 p.m.
          Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
          9
          9AnonimOct. 25, 2024, 4:10 p.m.
          Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

          Follow us in social networks