k
kabanovJune 6, 2018, 3:57 a.m.

ListView переключение между элементами по нажатию ENTER

ListView

как по нажатию ENTER переключаться на следующий элемент

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!

12
BlinCT
  • June 6, 2018, 4:17 a.m.
Добрый день.
Вы можете на сайте Qt глянуть список кнопок и их код. И уже исходя из этого по конекту если получин этот код кнопки то что то делать.
Это я в простйо форме описал). Но куда копать вы уже поняли.
У Евгения где то была статья на подобную тему. Или если не найдете я дома гляну, вроде у меня чет было.
    k
    • June 6, 2018, 4:25 a.m.

    там не кнопки а TextField

      BlinCT
      • June 6, 2018, 4:26 a.m.

      Ну вот у меня в проекте вроде как раз в textField и была заложена работа с кодами кнопок. Но показать смогу только вечером.

        Evgenii Legotckoi
        • June 6, 2018, 4:48 a.m.
        • (edited)
        TextField {
            // listView - id объекта ListView
        
            // Enter на цифровой клавиатуре
            Keys.onEnterPressed: {
                console.log(event);
                listView.currentIndex = listView.currentIndex + 1;
            }
        
            // Enter на основной клавиатуре
            Keys.onReturnPressed: {
                console.log(event);
                listView.currentIndex = listView.currentIndex + 1;
            }
        }
          k
          • June 6, 2018, 9:09 a.m.

          не работает это

            Evgenii Legotckoi
            • June 6, 2018, 9:17 a.m.

            код показывайте
            экстрасенсы в отпуске

              BlinCT
              • June 6, 2018, 9:48 a.m.
              Вот у меня такая реализация
              TextField
              {
                  id:textWork
                  inputMask: ("NN:NN:NN")
                  text: "00:00:00"
                  anchors.right: parent.right
                  width: 76
                  font.pixelSize: 14
                  background: Rectangle {
                      color: "transparent"
                      border.width: 0
                  }
              
                  Keys.onPressed:
                  {
                      console.log("testtextwork ", event.key)
                      if(event.key === Qt.Key_Enter ||  event.key === Qt.Key_Return)
                      {
                          setTime(circletimercontent1, textWork.text)
                      }
                  }
              }
                k
                • June 7, 2018, 3:11 a.m.
                //...
                Rectangle {
                    Component {
                        id: cDelegate
                        Item {
                            Row {
                               ComboBox {
                                   delegate: ItemDelegate {
                                       Label {
                                           //...
                                       }
                                   }
                               }
                            
                               TextField {
                                   //...
                                    Keys.onEnterPressed: {
                                        //...
                                    }
                                    Keys.onReturnPressed: {
                                        //...
                                    }
                               }
                               
                            }
                        }
                    }
                   
                    ListView {
                         id: listView
                         delegate: cDelegate
                         model: lModel
                         //...
                    }
                }
                
                



                  Evgenii Legotckoi
                  • June 7, 2018, 3:26 a.m.

                  Доступность элементов в объекте Component довольно ограничена как извне, так и изнутри.
                  Поэтому очень часто возникает такая проблема, что не удаётся достучаться до некоторых компонентов просто обращением к id.


                  Перепишите код для начала так.
                  Rectangle {
                  
                      ListView {
                           id: listView
                           delegate: {
                              id: cDelegate
                              Item {
                                  Row {
                                     ComboBox {
                                         delegate: ItemDelegate {
                                             Label {
                                             //...
                                             }
                                         }
                                     }
                              
                                     TextField {
                                         //...
                                          Keys.onEnterPressed: {
                                              lModel.currentIndex = lModel.currentIndex + 1;
                                              //...
                                          }
                                          Keys.onReturnPressed: {
                                              //...
                                          }
                                      }
                                     
                                   }
                               }
                           }
                           model: lModel
                           //...
                      }
                  }
                    k
                    • June 7, 2018, 3:42 a.m.
                    • (edited)

                    так там же объект Component как раз и требуется

                      Evgenii Legotckoi
                      • June 7, 2018, 3:52 a.m.
                      • The answer was marked as a solution.

                      Ну в смысле вот так переписать, я пропустил Item


                      Rectangle {
                      
                          ListView {
                               id: listView
                               delegate: Item {
                                  id: cDelegate
                                  Item {
                                      Row {
                                         ComboBox {
                                             delegate: ItemDelegate {
                                                 Label {
                                                 //...
                                                 }
                                             }
                                         }
                                  
                                         TextField {
                                             //...
                                              Keys.onEnterPressed: {
                                                  lModel.currentIndex = lModel.currentIndex + 1;
                                                  //...
                                              }
                                              Keys.onReturnPressed: {
                                                  //...
                                              }
                                          }
                                         
                                       }
                                   }
                               }
                               model: lModel
                               //...
                          }
                      }
                      Требуется то он требуется. Но в property delegate можно сразу прописывать Item , Rectangle или ещё что-нибудь.
                      Минус Component в том, что докопаться до того, что у него внутри довольно трудно и точно так же, он не очень хорошо знает, что творится вокруг него.
                      Очень обособленный элемент получается, что создаёт некоторые трудности при разработке. Я стараюсь избегать Component. Лучше тогда отдельный QML файл прописать для делегата со всякими алиасами и внутренними свойствами для хранения id других элементов.
                        k
                        • June 7, 2018, 3:59 a.m.
                        • (edited)

                        а как сделать так чтобы в Item были видны данные из модели, и при этом сохранять текст из textField в той же модели?

                          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. 15, 2024, 8:26 a.m.
                          Qt/C++ - Lesson 031. QCustomPlot – The build of charts with time buy generic priligy We can just chat, and we will not lose too much time anyway
                          i
                          innorwallNov. 15, 2024, 6:03 a.m.
                          Qt/C++ - Lesson 060. Configuring the appearance of the application in runtime I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
                          i
                          innorwallNov. 14, 2024, 11:07 p.m.
                          Circuit switching and packet data transmission networks Angioedema 1 priligy dapoxetine
                          i
                          innorwallNov. 14, 2024, 10:42 p.m.
                          How to Copy Files in Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
                          i
                          innorwallNov. 14, 2024, 8:09 p.m.
                          Qt/C++ - Tutorial 068. Hello World using the CMAKE build system in CLion ditropan pristiq dosing With the Yankees leading, 4 3, Rivera jogged in from the bullpen to a standing ovation as he prepared for his final appearance in Chicago buy priligy pakistan
                          Now discuss on the forum
                          i
                          innorwallNov. 14, 2024, 2:39 p.m.
                          добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
                          i
                          innorwallNov. 11, 2024, 9: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, 7:10 p.m.
                          Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…

                          Follow us in social networks