Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved

    Update: Forum Guidelines & Code of Conduct

    Solved Component.onStart ?

    General and Desktop
    2
    4
    261
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C
      Circuits last edited by

      I have a bit of a problem. I am setting VirtualKeyboardSettings.locale just prior to creating a component in this rectangles MouseArea{} based on an index (0-3):

      MouseArea {
      	anchors.fill: parent
      	onClicked: {
      
      	switch(languageManager.localeIndex)
      	{
      		case 0:
      		VirtualKeyboardSettings.locale = "en_US"
      		break;
      		case 1:
      		VirtualKeyboardSettings.locale = "es_ES"
      		break;
      		case 2:
      		VirtualKeyboardSettings.locale = "fr_FR"
      		break;
      		case 3:
      		VirtualKeyboardSettings.locale = "pl_PL"
      		break;
      	}
      
      	minMaxSplitBtn.showKeyboard()
      	}
      }
      

      The component itself hosts the QTVK's InputPanel{} who's visible property is set to true. I am looking for a way to set the VirtualKeyboardSettings.locale the moment the component is created but from within the component's .qml file rather than doing it here where the component is being created. Is that possible? I figured it would be something like: Component.start or something along those lines if it did exist. Perhaps I could make this a property or something along those lines?

      VRonin 1 Reply Last reply Reply Quote 0
      • C
        Circuits last edited by

        Perhaps this isn't necessary? Is there some way for me to set the .local for the keyboard in c++ code? In the business logic?

        1 Reply Last reply Reply Quote 0
        • VRonin
          VRonin @Circuits last edited by

          @circuits said in Component.onStart ?:

          I figured it would be something like: Component.start or something along those lines if it did exist

          https://felgo.com/doc/felgo-qml-tree-basics/#constructor

          "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
          ~Napoleon Bonaparte

          On a crusade to banish setIndexWidget() from the holy land of Qt

          C 1 Reply Last reply Reply Quote 1
          • C
            Circuits @VRonin last edited by

            @vronin I guess I figured that by "onCompleted" they meant when the component was finished but apparently they were referring to the completion of the creation of the component? In any case, thank you!

            1 Reply Last reply Reply Quote 0
            • First post
              Last post