Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. how to read the text of pushbutton in XML Qt
Forum Updated to NodeBB v4.3 + New Features

how to read the text of pushbutton in XML Qt

Scheduled Pinned Locked Moved Solved General and Desktop
46 Posts 5 Posters 8.7k Views
  • 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.
  • sankarapandiyanS sankarapandiyan

    @jsulm but that is for reading the tabwidget of tabs only i think !!!!!!

    jsulmJ Offline
    jsulmJ Offline
    jsulm
    Lifetime Qt Champion
    wrote on last edited by
    #36
    This post is deleted!
    1 Reply Last reply
    0
    • sankarapandiyanS sankarapandiyan

      @Ratzz oh really where ?!! i dnt know

      RatzzR Offline
      RatzzR Offline
      Ratzz
      wrote on last edited by
      #37

      @sankarapandiyan said in how to read the text of pushbutton in XML Qt:

      oh really where ?!! i dnt know

      Can you write the exact output you want .
      Write tag wise in words.
      may be image also helps.

      --Alles ist gut.

      1 Reply Last reply
      1
      • sankarapandiyanS Offline
        sankarapandiyanS Offline
        sankarapandiyan
        wrote on last edited by sankarapandiyan
        #38

        @Ratzz
        <3D wide/>
        <Scanmode Tab1="Default"/>
        <Scanmode tab2="Macula"/>
        <Scanmode tab2="Glucoma"/>

        this is the output
        2 nd 3rd and 4th line is the tab widet of tabs ,i am using the loop there to get the tab widget of tabs(text)

        RatzzR 1 Reply Last reply
        0
        • sankarapandiyanS sankarapandiyan

          @Ratzz
          <3D wide/>
          <Scanmode Tab1="Default"/>
          <Scanmode tab2="Macula"/>
          <Scanmode tab2="Glucoma"/>

          this is the output
          2 nd 3rd and 4th line is the tab widet of tabs ,i am using the loop there to get the tab widget of tabs(text)

          RatzzR Offline
          RatzzR Offline
          Ratzz
          wrote on last edited by Ratzz
          #39

          @sankarapandiyan said in how to read the text of pushbutton in XML Qt:

          this is the output

          Then where should the push button needs to be placed??
          what is the ss tag for?

          --Alles ist gut.

          1 Reply Last reply
          1
          • sankarapandiyanS Offline
            sankarapandiyanS Offline
            sankarapandiyan
            wrote on last edited by sankarapandiyan
            #40

            @Ratzz sorry wait wait going to finish my code by using QList<QPushButton*> blist = ui->frame_2->findChildren<QPushButton*>();.. with a help of @mrjj
            i wil post here within a minute .. thanks for your help

            1 Reply Last reply
            0
            • sankarapandiyanS Offline
              sankarapandiyanS Offline
              sankarapandiyan
              wrote on last edited by sankarapandiyan
              #41

              finally got the output by this code ,
              QDomDocument document;

              // Making the root element
              QDomElement root = document.createElement("OCT_TOUCH");

                // Adding the root element to the docuemnt
                document.appendChild(root);
              
              
                  for (int var = 0; var < ui->mwtabwidget->count(); ++var) {
                  qDebug() << ui->mwtabwidget->tabText(var);
              
                  QString text = ui->mwtabwidget->tabText(var);
                  QDomElement elemTab = document.createElement("Scanmode") ;// + QString::number(var));
                  elemTab.setAttribute("tab"+QString::number(var+1), text);
                  root.appendChild(elemTab);
                  }
              
                  QList<QPushButton*> blist = ui->frame_2->findChildren<QPushButton*>();
                  for (int cc = 0; cc < blist.count(); ++cc) {
                  QString text = blist[cc]->text();
                  QDomElement elemTab1 = document.createElement(/*"button"*/text) ;
                  root.appendChild(elemTab1);
              

              thanks all especially @mrjj @Ratzz @jsulm
              this is the output @Ratzz
              <OCT_TOUCH>
              <Scanmode tab1="DEFAULT"/>
              <Scanmode tab2="MACULA"/>
              <Scanmode tab3="GLAUCOMA"/>
              <3D_DISC/>
              <FUNDUS_PHOTO/>
              <WIDE_3D/>
              <5LINE_CROSS/>
              </OCT_TOUCH>

              RatzzR 2 Replies Last reply
              0
              • sankarapandiyanS sankarapandiyan

                finally got the output by this code ,
                QDomDocument document;

                // Making the root element
                QDomElement root = document.createElement("OCT_TOUCH");

                  // Adding the root element to the docuemnt
                  document.appendChild(root);
                
                
                    for (int var = 0; var < ui->mwtabwidget->count(); ++var) {
                    qDebug() << ui->mwtabwidget->tabText(var);
                
                    QString text = ui->mwtabwidget->tabText(var);
                    QDomElement elemTab = document.createElement("Scanmode") ;// + QString::number(var));
                    elemTab.setAttribute("tab"+QString::number(var+1), text);
                    root.appendChild(elemTab);
                    }
                
                    QList<QPushButton*> blist = ui->frame_2->findChildren<QPushButton*>();
                    for (int cc = 0; cc < blist.count(); ++cc) {
                    QString text = blist[cc]->text();
                    QDomElement elemTab1 = document.createElement(/*"button"*/text) ;
                    root.appendChild(elemTab1);
                

                thanks all especially @mrjj @Ratzz @jsulm
                this is the output @Ratzz
                <OCT_TOUCH>
                <Scanmode tab1="DEFAULT"/>
                <Scanmode tab2="MACULA"/>
                <Scanmode tab3="GLAUCOMA"/>
                <3D_DISC/>
                <FUNDUS_PHOTO/>
                <WIDE_3D/>
                <5LINE_CROSS/>
                </OCT_TOUCH>

                RatzzR Offline
                RatzzR Offline
                Ratzz
                wrote on last edited by Ratzz
                #42

                @sankarapandiyan said in how to read the text of pushbutton in XML Qt:

                finally got the output by this code

                Can you show the output xml file with all the tabs included.
                Edit: Only 1 tab has pushbuttons?

                --Alles ist gut.

                sankarapandiyanS 1 Reply Last reply
                0
                • RatzzR Ratzz

                  @sankarapandiyan said in how to read the text of pushbutton in XML Qt:

                  finally got the output by this code

                  Can you show the output xml file with all the tabs included.
                  Edit: Only 1 tab has pushbuttons?

                  sankarapandiyanS Offline
                  sankarapandiyanS Offline
                  sankarapandiyan
                  wrote on last edited by sankarapandiyan
                  #43

                  @Ratzz https://www.dropbox.com/s/a8e02txdeeii3hi/filenamemw.xml?dl=0
                  this is the output

                  RatzzR 1 Reply Last reply
                  0
                  • sankarapandiyanS sankarapandiyan

                    @Ratzz https://www.dropbox.com/s/a8e02txdeeii3hi/filenamemw.xml?dl=0
                    this is the output

                    RatzzR Offline
                    RatzzR Offline
                    Ratzz
                    wrote on last edited by Ratzz
                    #44

                    @sankarapandiyan said in how to read the text of pushbutton in XML Qt:

                    https://www.dropbox.com/s/a8e02txdeeii3hi/filenamemw.xml?dl=0

                    Is it code of yours or screenshot? In office its blocked for me so I cannot open.

                    --Alles ist gut.

                    1 Reply Last reply
                    0
                    • sankarapandiyanS sankarapandiyan

                      finally got the output by this code ,
                      QDomDocument document;

                      // Making the root element
                      QDomElement root = document.createElement("OCT_TOUCH");

                        // Adding the root element to the docuemnt
                        document.appendChild(root);
                      
                      
                          for (int var = 0; var < ui->mwtabwidget->count(); ++var) {
                          qDebug() << ui->mwtabwidget->tabText(var);
                      
                          QString text = ui->mwtabwidget->tabText(var);
                          QDomElement elemTab = document.createElement("Scanmode") ;// + QString::number(var));
                          elemTab.setAttribute("tab"+QString::number(var+1), text);
                          root.appendChild(elemTab);
                          }
                      
                          QList<QPushButton*> blist = ui->frame_2->findChildren<QPushButton*>();
                          for (int cc = 0; cc < blist.count(); ++cc) {
                          QString text = blist[cc]->text();
                          QDomElement elemTab1 = document.createElement(/*"button"*/text) ;
                          root.appendChild(elemTab1);
                      

                      thanks all especially @mrjj @Ratzz @jsulm
                      this is the output @Ratzz
                      <OCT_TOUCH>
                      <Scanmode tab1="DEFAULT"/>
                      <Scanmode tab2="MACULA"/>
                      <Scanmode tab3="GLAUCOMA"/>
                      <3D_DISC/>
                      <FUNDUS_PHOTO/>
                      <WIDE_3D/>
                      <5LINE_CROSS/>
                      </OCT_TOUCH>

                      RatzzR Offline
                      RatzzR Offline
                      Ratzz
                      wrote on last edited by
                      #45

                      @sankarapandiyan said in how to read the text of pushbutton in XML Qt:

                      finally got the output by this code ,

                      Your code reads button of only one frame of the first tab widget.
                      So there are no buttons on other tab or you forgot to read?

                      --Alles ist gut.

                      sankarapandiyanS 1 Reply Last reply
                      1
                      • RatzzR Ratzz

                        @sankarapandiyan said in how to read the text of pushbutton in XML Qt:

                        finally got the output by this code ,

                        Your code reads button of only one frame of the first tab widget.
                        So there are no buttons on other tab or you forgot to read?

                        sankarapandiyanS Offline
                        sankarapandiyanS Offline
                        sankarapandiyan
                        wrote on last edited by
                        #46

                        @Ratzz yeah i know very well..frst i think i have to read one frame now..
                        And i have completed .so its easy to read the second frame too

                        1 Reply Last reply
                        0

                        • Login

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • Users
                        • Groups
                        • Search
                        • Get Qt Extensions
                        • Unsolved