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. Problem to align text in QStatusBar

Problem to align text in QStatusBar

Scheduled Pinned Locked Moved Solved General and Desktop
12 Posts 4 Posters 6.5k 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.
  • S Offline
    S Offline
    Stefanoxjx
    wrote on 17 Nov 2016, 11:20 last edited by Stefanoxjx
    #1

    Hi, I would like to ask if is possibile to format text in QStatusBar.
    I would need to write part of the text to left and part of the text to right.
    I've tried with HTML tag with method .setText(<p align=left>LEFT TEXT</p><p align=right>RIGHT TEXT</p>); but it work wrong.
    The "RIGHT TEXT" is wrote to right but with carriage return.
    For example:

    LEFT TEXT
                                    RIGHT TEXT
    

    and not:

    LEFT TEXT         RIGHT TEXT
    

    I hope I explained myself.
    Can anybody help me?
    Thanks.

    Stefano

    1 Reply Last reply
    0
    • V Offline
      V Offline
      VRonin
      wrote on 17 Nov 2016, 12:06 last edited by
      #2

      QStatusBar has no setText method if I remember correctly. anyway this problem has nothing to do with Qt, just with HTML. <p> is a paragraph so goes to a new line. use <span> instead

      "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

      1 Reply Last reply
      2
      • S Offline
        S Offline
        Stefanoxjx
        wrote on 17 Nov 2016, 13:50 last edited by Stefanoxjx
        #3

        Hi VRonin and thanks for your answer.
        You are right, because, QStatusBar haven't method setText.
        I forgotten to tell that I inserted a QLabel in QStatusBar.
        Told this, I've tried too with <div>, but it don't work.
        The result is "LEFT TEXTRIGHT TEXT" without any space between the two segment of text.
        I don't know if you made a test, but for me it does not work :(

        Stefano

        R 1 Reply Last reply 17 Nov 2016, 14:09
        0
        • S Stefanoxjx
          17 Nov 2016, 13:50

          Hi VRonin and thanks for your answer.
          You are right, because, QStatusBar haven't method setText.
          I forgotten to tell that I inserted a QLabel in QStatusBar.
          Told this, I've tried too with <div>, but it don't work.
          The result is "LEFT TEXTRIGHT TEXT" without any space between the two segment of text.
          I don't know if you made a test, but for me it does not work :(

          Stefano

          R Offline
          R Offline
          raven-worx
          Moderators
          wrote on 17 Nov 2016, 14:09 last edited by
          #4

          @Stefanoxjx
          just wrapping a div element around isn't enough. You also need to align the text inside it of course.
          For the supported HTML subset by Qt see here.

          You may also want to try to use a HTML table to position the texts.

          --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
          If you have a question please use the forum so others can benefit from the solution in the future

          1 Reply Last reply
          1
          • S Offline
            S Offline
            Stefanoxjx
            wrote on 18 Nov 2016, 16:13 last edited by
            #5

            Hi,
            I've tried with HTML table, but doesn't work.
            Perhaps I wrong something!?
            This is the code:

            statusBarMsg.setText("<table style=\\\"width:100%\\\">\
                                    <tr>\
                                      <td>LEFT TEXT</td>\
                                      <td>RIGHT TEXT</td>\
                                    </tr>\
                                   </table>");
            

            (statusBarMsg is a QLabel)

            but the result is:

            LEFT TEXT RIGHT TEXT
            

            (with one single space between LEFT and RIGHT text)

            Same code (adapted for browser) works fine:

            <table style="width:100%">
                                     <tr>
                                       <td>LEFT TEXT</td>
                                       <td>RIGHT TEXT</td>
                                     </tr>
                                    </table>
            

            Stefano

            1 Reply Last reply
            0
            • M Offline
              M Offline
              mrjj
              Lifetime Qt Champion
              wrote on 18 Nov 2016, 16:23 last edited by
              #6

              Hi
              You mean like this ?

              1 Reply Last reply
              0
              • S Offline
                S Offline
                Stefanoxjx
                wrote on 18 Nov 2016, 19:14 last edited by
                #7

                Yes, but this is the problem.
                I wish that "AAAAAAAAAAAA" and "BBBBBBBBBBBBBB" are written in the same row.
                Like this:
                alt text

                Thanks.

                Stefano

                M 1 Reply Last reply 18 Nov 2016, 19:38
                0
                • S Stefanoxjx
                  18 Nov 2016, 19:14

                  Yes, but this is the problem.
                  I wish that "AAAAAAAAAAAA" and "BBBBBBBBBBBBBB" are written in the same row.
                  Like this:
                  alt text

                  Thanks.

                  Stefano

                  M Offline
                  M Offline
                  mrjj
                  Lifetime Qt Champion
                  wrote on 18 Nov 2016, 19:38 last edited by mrjj
                  #8

                  @Stefanoxjx
                  well as @raven-worx suggest , you can use table. Note I made this using word. there should be
                  shorter version ;)
                  So its more a proof of concept than an actual solution

                  alt text

                  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
                  <html><head><meta name="qrichtext" content="1" /><title>AAAA</title><style type="text/css">
                  p, li { white-space: pre-wrap; }
                  </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:400; font-style:normal;">
                  <table border="0" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;" cellspacing="0" cellpadding="0">
                  <tr>
                  <td width="326" style=" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;">
                  <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">AAAA </p></td>
                  <td width="326" style=" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;">
                  <p align="right" style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">BBBB </p></td></tr></table>
                  <p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">  </p></body></html>
                  
                  1 Reply Last reply
                  0
                  • S Offline
                    S Offline
                    Stefanoxjx
                    wrote on 18 Nov 2016, 19:54 last edited by
                    #9

                    Yes, i know that raven-worx suggest me it and I tried with table but I don't undestand HTML :(
                    I tried your code (copy/paste) in my program, but the result is this:
                    alt text
                    Why? :(

                    The code modified is this:

                    statusBarMsg.setText("<!DOCTYPE HTML PUBLIC \\\"-//W3C//DTD HTML 4.0//EN\\\" \\\"http://www.w3.org/TR/REC-html40/strict.dtd\\\">\
                                             <html><head><meta name=\\\"qrichtext\\\" content=\\\"1\\\" /><title>AAAA</title><style type=\\\"text/css\\\">\
                                             p, li { white-space: pre-wrap; }\
                                             </style></head><body style=\\\" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:400; font-style:normal;\\\">\
                                             <table border=\\\"0\\\" style=\\\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\
                                             <tr>\
                                             <td width=\\\"326\\\" style=\\\" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;\\\">\
                                             <p style=\\\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\\\">AAAA </p></td>\
                                             <td width=\\\"326\\\" style=\\\" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;\\\">\
                                             <p align=\\\"right\\\" style=\\\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\\\">BBBB </p></td></tr></table>\
                                             <p style=\\\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\\\">  </p></body></html>");
                    

                    I don't understand :(

                    Stefano

                    R 1 Reply Last reply 21 Nov 2016, 08:00
                    0
                    • M Offline
                      M Offline
                      mrjj
                      Lifetime Qt Champion
                      wrote on 18 Nov 2016, 20:00 last edited by mrjj
                      #10

                      Hmm my best guess would that escaping it did not work 100%
                      I used the rich text editor on the QLabel.
                      So so I guess you should keep trying to find a better way.

                      You can try this

                            setText("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
                      "<html><head><meta name=\"qrichtext\" content=\"1\" /><title>AAAA</title><style type=\"text/css\">\n"
                      "p, li { white-space: pre-wrap; }\n"
                      "</style></head><body style=\" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:400; font-style:normal;\">\n"
                      "<table border=\"0\" style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;\" cellspacing=\"0\" cellpadding=\"0\">\n"
                      "<tr>\n"
                      "<td width=\"326\" style=\" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;\">\n"
                      "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">AAAA </p></td>\n"
                      "<td width=\"326\" style=\" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;\">\n"
                      "<p align=\"right\" style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:"
                                              "0px;\">BBBB </p></td></tr></table>\n"
                      "<p style=\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">  </p></body></html>", 0));
                          
                      
                      
                      1 Reply Last reply
                      0
                      • S Stefanoxjx
                        18 Nov 2016, 19:54

                        Yes, i know that raven-worx suggest me it and I tried with table but I don't undestand HTML :(
                        I tried your code (copy/paste) in my program, but the result is this:
                        alt text
                        Why? :(

                        The code modified is this:

                        statusBarMsg.setText("<!DOCTYPE HTML PUBLIC \\\"-//W3C//DTD HTML 4.0//EN\\\" \\\"http://www.w3.org/TR/REC-html40/strict.dtd\\\">\
                                                 <html><head><meta name=\\\"qrichtext\\\" content=\\\"1\\\" /><title>AAAA</title><style type=\\\"text/css\\\">\
                                                 p, li { white-space: pre-wrap; }\
                                                 </style></head><body style=\\\" font-family:'MS Shell Dlg 2'; font-size:8pt; font-weight:400; font-style:normal;\\\">\
                                                 <table border=\\\"0\\\" style=\\\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px;\\\" cellspacing=\\\"0\\\" cellpadding=\\\"0\\\">\
                                                 <tr>\
                                                 <td width=\\\"326\\\" style=\\\" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;\\\">\
                                                 <p style=\\\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\\\">AAAA </p></td>\
                                                 <td width=\\\"326\\\" style=\\\" vertical-align:top; padding-left:0; padding-right:0; padding-top:0; padding-bottom:0;\\\">\
                                                 <p align=\\\"right\\\" style=\\\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\\\">BBBB </p></td></tr></table>\
                                                 <p style=\\\" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\\\">  </p></body></html>");
                        

                        I don't understand :(

                        Stefano

                        R Offline
                        R Offline
                        raven-worx
                        Moderators
                        wrote on 21 Nov 2016, 08:00 last edited by
                        #11

                        @Stefanoxjx
                        don't set such a full-blown HTML code. As i said Qt only supports a HTML subset (also avoid CSS as much as possible). So keeping the HTML code minimal also keeps your source of errors minimal.

                        The following works:

                        label->setText("<table width=\"100%\"><tr><td width=\"50%\">LEFT TEXT</td><td width=\"50%\" align=\"right\">RIGHT TEXT</td></tr></table>");
                        

                        --- SUPPORT REQUESTS VIA CHAT WILL BE IGNORED ---
                        If you have a question please use the forum so others can benefit from the solution in the future

                        1 Reply Last reply
                        3
                        • S Offline
                          S Offline
                          Stefanoxjx
                          wrote on 21 Nov 2016, 11:03 last edited by
                          #12

                          Oh yessss!!!!
                          This code works fine.
                          After learning C++ and Qt I will study HTML.
                          Many thanks.

                          Stefano

                          1 Reply Last reply
                          1

                          1/12

                          17 Nov 2016, 11:20

                          • Login

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