QPlainTextEdit ignores most of the text block formats












1















I wanted to increase spacing between paragraphs (text blocks) in QPlainTextEdit, to no avail. After experimenting I found that though some format properties (e.g., background color) take effect, others (e.g., margins) are ignored.



I found this bug report, but it mentions only QTextBlockFormat::lineHeight(). In my case, almost all methods of QTextBlockFormat::* are ignored. A minimal example:



#include <QtWidgets>

int main(int argc, char *argv) {
QApplication a(argc, argv);

QPlainTextEdit te;
te.setPlainText("block1nblock2nblock3");

QTextCursor cursor = te.textCursor();
cursor.select(QTextCursor::Document);
QTextBlockFormat fmt;
fmt.setBackground(QColor(Qt::yellow));
fmt.setBottomMargin(600);
fmt.setIndent(20);
fmt.setTopMargin(600);
fmt.setLeftMargin(40);
cursor.setBlockFormat(fmt);
te.show();
return a.exec();
}


Except fmt.setBackground(QColor(Qt::yellow)), others are all ignored. Using Qt 5.10.










share|improve this question





























    1















    I wanted to increase spacing between paragraphs (text blocks) in QPlainTextEdit, to no avail. After experimenting I found that though some format properties (e.g., background color) take effect, others (e.g., margins) are ignored.



    I found this bug report, but it mentions only QTextBlockFormat::lineHeight(). In my case, almost all methods of QTextBlockFormat::* are ignored. A minimal example:



    #include <QtWidgets>

    int main(int argc, char *argv) {
    QApplication a(argc, argv);

    QPlainTextEdit te;
    te.setPlainText("block1nblock2nblock3");

    QTextCursor cursor = te.textCursor();
    cursor.select(QTextCursor::Document);
    QTextBlockFormat fmt;
    fmt.setBackground(QColor(Qt::yellow));
    fmt.setBottomMargin(600);
    fmt.setIndent(20);
    fmt.setTopMargin(600);
    fmt.setLeftMargin(40);
    cursor.setBlockFormat(fmt);
    te.show();
    return a.exec();
    }


    Except fmt.setBackground(QColor(Qt::yellow)), others are all ignored. Using Qt 5.10.










    share|improve this question



























      1












      1








      1








      I wanted to increase spacing between paragraphs (text blocks) in QPlainTextEdit, to no avail. After experimenting I found that though some format properties (e.g., background color) take effect, others (e.g., margins) are ignored.



      I found this bug report, but it mentions only QTextBlockFormat::lineHeight(). In my case, almost all methods of QTextBlockFormat::* are ignored. A minimal example:



      #include <QtWidgets>

      int main(int argc, char *argv) {
      QApplication a(argc, argv);

      QPlainTextEdit te;
      te.setPlainText("block1nblock2nblock3");

      QTextCursor cursor = te.textCursor();
      cursor.select(QTextCursor::Document);
      QTextBlockFormat fmt;
      fmt.setBackground(QColor(Qt::yellow));
      fmt.setBottomMargin(600);
      fmt.setIndent(20);
      fmt.setTopMargin(600);
      fmt.setLeftMargin(40);
      cursor.setBlockFormat(fmt);
      te.show();
      return a.exec();
      }


      Except fmt.setBackground(QColor(Qt::yellow)), others are all ignored. Using Qt 5.10.










      share|improve this question
















      I wanted to increase spacing between paragraphs (text blocks) in QPlainTextEdit, to no avail. After experimenting I found that though some format properties (e.g., background color) take effect, others (e.g., margins) are ignored.



      I found this bug report, but it mentions only QTextBlockFormat::lineHeight(). In my case, almost all methods of QTextBlockFormat::* are ignored. A minimal example:



      #include <QtWidgets>

      int main(int argc, char *argv) {
      QApplication a(argc, argv);

      QPlainTextEdit te;
      te.setPlainText("block1nblock2nblock3");

      QTextCursor cursor = te.textCursor();
      cursor.select(QTextCursor::Document);
      QTextBlockFormat fmt;
      fmt.setBackground(QColor(Qt::yellow));
      fmt.setBottomMargin(600);
      fmt.setIndent(20);
      fmt.setTopMargin(600);
      fmt.setLeftMargin(40);
      cursor.setBlockFormat(fmt);
      te.show();
      return a.exec();
      }


      Except fmt.setBackground(QColor(Qt::yellow)), others are all ignored. Using Qt 5.10.







      c++ qt qt5 qplaintextedit qtextcursor






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 15 '18 at 16:16









      eyllanesc

      82k103259




      82k103259










      asked Nov 15 '18 at 16:15









      MaximkoMaximko

      14719




      14719
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Don't use QPlainTextEdit for intensive formatting over text. Use its cousin, QTextEdit instead.



          Using your code and changing it from QPlainTextEdit to QTextEdit resolved the issue.



          FYI, this was also mentioned in the Bug Report you linked. Maybe you missed it or forgot to mention it in your question?




          Replacing QPlainTextEdit with QTextEdit shows the expected result.




          QTextEdit te;               //  note the change in type
          te.setPlainText("block1nblock2nblock3");

          QTextCursor cursor = te.textCursor();
          cursor.select(QTextCursor::Document);
          QTextBlockFormat fmt;
          fmt.setBackground(QColor(Qt::yellow));
          fmt.setBottomMargin(6); // let's not overexaggerate anything
          fmt.setIndent(1);
          fmt.setTopMargin(12);
          fmt.setLeftMargin(1);
          cursor.setBlockFormat(fmt);


          Here's the result of using QPlainTextEdit (on a MacOS).



          😱 Oh no!!!



          And here's the result of using QTextEdit (on a MacOS).



          😃 Yay!!!



          Note that none of the member functions need to be modified, so that's a plus. Transitioning from QPlainTextEdit to QTextEdit shouldn't be much of a pain.



          Further Reading: This other SO post kinda helped. Would also be good to read if you're planning on using more Qt Text Classes.






          share|improve this answer
























          • Yes, I know that it works for QTextEdit :) For certain reasons, however, I am confined to deal with QPlainTextEdit. And so it looks not much as a bug, but as documented feature of a class (QPlainTextEdit) which in fact is merely not implemented....

            – Maximko
            Nov 26 '18 at 15:42











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53323628%2fqplaintextedit-ignores-most-of-the-text-block-formats%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Don't use QPlainTextEdit for intensive formatting over text. Use its cousin, QTextEdit instead.



          Using your code and changing it from QPlainTextEdit to QTextEdit resolved the issue.



          FYI, this was also mentioned in the Bug Report you linked. Maybe you missed it or forgot to mention it in your question?




          Replacing QPlainTextEdit with QTextEdit shows the expected result.




          QTextEdit te;               //  note the change in type
          te.setPlainText("block1nblock2nblock3");

          QTextCursor cursor = te.textCursor();
          cursor.select(QTextCursor::Document);
          QTextBlockFormat fmt;
          fmt.setBackground(QColor(Qt::yellow));
          fmt.setBottomMargin(6); // let's not overexaggerate anything
          fmt.setIndent(1);
          fmt.setTopMargin(12);
          fmt.setLeftMargin(1);
          cursor.setBlockFormat(fmt);


          Here's the result of using QPlainTextEdit (on a MacOS).



          😱 Oh no!!!



          And here's the result of using QTextEdit (on a MacOS).



          😃 Yay!!!



          Note that none of the member functions need to be modified, so that's a plus. Transitioning from QPlainTextEdit to QTextEdit shouldn't be much of a pain.



          Further Reading: This other SO post kinda helped. Would also be good to read if you're planning on using more Qt Text Classes.






          share|improve this answer
























          • Yes, I know that it works for QTextEdit :) For certain reasons, however, I am confined to deal with QPlainTextEdit. And so it looks not much as a bug, but as documented feature of a class (QPlainTextEdit) which in fact is merely not implemented....

            – Maximko
            Nov 26 '18 at 15:42
















          0














          Don't use QPlainTextEdit for intensive formatting over text. Use its cousin, QTextEdit instead.



          Using your code and changing it from QPlainTextEdit to QTextEdit resolved the issue.



          FYI, this was also mentioned in the Bug Report you linked. Maybe you missed it or forgot to mention it in your question?




          Replacing QPlainTextEdit with QTextEdit shows the expected result.




          QTextEdit te;               //  note the change in type
          te.setPlainText("block1nblock2nblock3");

          QTextCursor cursor = te.textCursor();
          cursor.select(QTextCursor::Document);
          QTextBlockFormat fmt;
          fmt.setBackground(QColor(Qt::yellow));
          fmt.setBottomMargin(6); // let's not overexaggerate anything
          fmt.setIndent(1);
          fmt.setTopMargin(12);
          fmt.setLeftMargin(1);
          cursor.setBlockFormat(fmt);


          Here's the result of using QPlainTextEdit (on a MacOS).



          😱 Oh no!!!



          And here's the result of using QTextEdit (on a MacOS).



          😃 Yay!!!



          Note that none of the member functions need to be modified, so that's a plus. Transitioning from QPlainTextEdit to QTextEdit shouldn't be much of a pain.



          Further Reading: This other SO post kinda helped. Would also be good to read if you're planning on using more Qt Text Classes.






          share|improve this answer
























          • Yes, I know that it works for QTextEdit :) For certain reasons, however, I am confined to deal with QPlainTextEdit. And so it looks not much as a bug, but as documented feature of a class (QPlainTextEdit) which in fact is merely not implemented....

            – Maximko
            Nov 26 '18 at 15:42














          0












          0








          0







          Don't use QPlainTextEdit for intensive formatting over text. Use its cousin, QTextEdit instead.



          Using your code and changing it from QPlainTextEdit to QTextEdit resolved the issue.



          FYI, this was also mentioned in the Bug Report you linked. Maybe you missed it or forgot to mention it in your question?




          Replacing QPlainTextEdit with QTextEdit shows the expected result.




          QTextEdit te;               //  note the change in type
          te.setPlainText("block1nblock2nblock3");

          QTextCursor cursor = te.textCursor();
          cursor.select(QTextCursor::Document);
          QTextBlockFormat fmt;
          fmt.setBackground(QColor(Qt::yellow));
          fmt.setBottomMargin(6); // let's not overexaggerate anything
          fmt.setIndent(1);
          fmt.setTopMargin(12);
          fmt.setLeftMargin(1);
          cursor.setBlockFormat(fmt);


          Here's the result of using QPlainTextEdit (on a MacOS).



          😱 Oh no!!!



          And here's the result of using QTextEdit (on a MacOS).



          😃 Yay!!!



          Note that none of the member functions need to be modified, so that's a plus. Transitioning from QPlainTextEdit to QTextEdit shouldn't be much of a pain.



          Further Reading: This other SO post kinda helped. Would also be good to read if you're planning on using more Qt Text Classes.






          share|improve this answer













          Don't use QPlainTextEdit for intensive formatting over text. Use its cousin, QTextEdit instead.



          Using your code and changing it from QPlainTextEdit to QTextEdit resolved the issue.



          FYI, this was also mentioned in the Bug Report you linked. Maybe you missed it or forgot to mention it in your question?




          Replacing QPlainTextEdit with QTextEdit shows the expected result.




          QTextEdit te;               //  note the change in type
          te.setPlainText("block1nblock2nblock3");

          QTextCursor cursor = te.textCursor();
          cursor.select(QTextCursor::Document);
          QTextBlockFormat fmt;
          fmt.setBackground(QColor(Qt::yellow));
          fmt.setBottomMargin(6); // let's not overexaggerate anything
          fmt.setIndent(1);
          fmt.setTopMargin(12);
          fmt.setLeftMargin(1);
          cursor.setBlockFormat(fmt);


          Here's the result of using QPlainTextEdit (on a MacOS).



          😱 Oh no!!!



          And here's the result of using QTextEdit (on a MacOS).



          😃 Yay!!!



          Note that none of the member functions need to be modified, so that's a plus. Transitioning from QPlainTextEdit to QTextEdit shouldn't be much of a pain.



          Further Reading: This other SO post kinda helped. Would also be good to read if you're planning on using more Qt Text Classes.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 16 '18 at 15:35









          TrebuchetMSTrebuchetMS

          2,90511025




          2,90511025













          • Yes, I know that it works for QTextEdit :) For certain reasons, however, I am confined to deal with QPlainTextEdit. And so it looks not much as a bug, but as documented feature of a class (QPlainTextEdit) which in fact is merely not implemented....

            – Maximko
            Nov 26 '18 at 15:42



















          • Yes, I know that it works for QTextEdit :) For certain reasons, however, I am confined to deal with QPlainTextEdit. And so it looks not much as a bug, but as documented feature of a class (QPlainTextEdit) which in fact is merely not implemented....

            – Maximko
            Nov 26 '18 at 15:42

















          Yes, I know that it works for QTextEdit :) For certain reasons, however, I am confined to deal with QPlainTextEdit. And so it looks not much as a bug, but as documented feature of a class (QPlainTextEdit) which in fact is merely not implemented....

          – Maximko
          Nov 26 '18 at 15:42





          Yes, I know that it works for QTextEdit :) For certain reasons, however, I am confined to deal with QPlainTextEdit. And so it looks not much as a bug, but as documented feature of a class (QPlainTextEdit) which in fact is merely not implemented....

          – Maximko
          Nov 26 '18 at 15:42




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53323628%2fqplaintextedit-ignores-most-of-the-text-block-formats%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Xamarin.iOS Cant Deploy on Iphone

          Glorious Revolution

          Dulmage-Mendelsohn matrix decomposition in Python