How to pull in and push out text browser? The Next CEO of Stack OverflowPull pixmap image source from ui edit text in QTHow to change the values of the push buttons in QT designerHow to pull data from multiple databases via Qt .ui form?Adding dynamic text feedback for QGIS plugin?Adding textbox to QGIS plugin toolbar?Add images and other text in QGIS 3.0.2 (Windows)How to get the file name from docked browser in QGIS 3xWhere to put new tool function in plugin and how to call it?How to use qgis customization.xml code in my gui?How to open and add SQLite connection to browser with PyQgis

Chain wire methods together in Lightning Web Components

Domestic-to-international connection at Orlando (MCO)

How many extra stops do monopods offer for tele photographs?

Do I need to write [sic] when a number is less than 10 but isn't written out?

Find non-case sensitive string in a mixed list of elements?

Is micro rebar a better way to reinforce concrete than rebar?

What steps are necessary to read a Modern SSD in Medieval Europe?

Is wanting to ask what to write an indication that you need to change your story?

Does Germany produce more waste than the US?

WOW air has ceased operation, can I get my tickets refunded?

Which one is the true statement?

The past simple of "gaslight" – "gaslighted" or "gaslit"?

0 rank tensor vs 1D vector

Make solar eclipses exceedingly rare, but still have new moons

Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis

Math-accent symbol over parentheses enclosing accented symbol (amsmath)

Solving system of ODEs with extra parameter

How to invert MapIndexed on a ragged structure? How to construct a tree from rules?

Prepend last line of stdin to entire stdin

Dominated convergence theorem - what sequence?

I want to delete every two lines after 3rd lines in file contain very large number of lines :

Won the lottery - how do I keep the money?

Reference request: Grassmannian and Plucker coordinates in type B, C, D

Can you be charged for obstruction for refusing to answer questions?



How to pull in and push out text browser?



The Next CEO of Stack OverflowPull pixmap image source from ui edit text in QTHow to change the values of the push buttons in QT designerHow to pull data from multiple databases via Qt .ui form?Adding dynamic text feedback for QGIS plugin?Adding textbox to QGIS plugin toolbar?Add images and other text in QGIS 3.0.2 (Windows)How to get the file name from docked browser in QGIS 3xWhere to put new tool function in plugin and how to call it?How to use qgis customization.xml code in my gui?How to open and add SQLite connection to browser with PyQgis










1















I am using Qt designer to create a plugin in Qgis3. I want to add description of a tool beside the tool. For this I have tried using 'Text Browser' by connecting it with button. I am able to hide and display the description(A Text Browser) using following code:



 def hide(self):
if self.dlg.textBrowser.isHidden()==True:
self.dlg.textBrowser.setVisible(True)
else:
self.dlg.textBrowser.hide()
#connect the action using Push button
self.dlg.pushButton_5.clicked.connect(self.hide)


But I want to pull in and pull out the description window. It should work like example showing below.
enter image description here
Is there any way to do this using Qt designer?










share|improve this question


























    1















    I am using Qt designer to create a plugin in Qgis3. I want to add description of a tool beside the tool. For this I have tried using 'Text Browser' by connecting it with button. I am able to hide and display the description(A Text Browser) using following code:



     def hide(self):
    if self.dlg.textBrowser.isHidden()==True:
    self.dlg.textBrowser.setVisible(True)
    else:
    self.dlg.textBrowser.hide()
    #connect the action using Push button
    self.dlg.pushButton_5.clicked.connect(self.hide)


    But I want to pull in and pull out the description window. It should work like example showing below.
    enter image description here
    Is there any way to do this using Qt designer?










    share|improve this question
























      1












      1








      1








      I am using Qt designer to create a plugin in Qgis3. I want to add description of a tool beside the tool. For this I have tried using 'Text Browser' by connecting it with button. I am able to hide and display the description(A Text Browser) using following code:



       def hide(self):
      if self.dlg.textBrowser.isHidden()==True:
      self.dlg.textBrowser.setVisible(True)
      else:
      self.dlg.textBrowser.hide()
      #connect the action using Push button
      self.dlg.pushButton_5.clicked.connect(self.hide)


      But I want to pull in and pull out the description window. It should work like example showing below.
      enter image description here
      Is there any way to do this using Qt designer?










      share|improve this question














      I am using Qt designer to create a plugin in Qgis3. I want to add description of a tool beside the tool. For this I have tried using 'Text Browser' by connecting it with button. I am able to hide and display the description(A Text Browser) using following code:



       def hide(self):
      if self.dlg.textBrowser.isHidden()==True:
      self.dlg.textBrowser.setVisible(True)
      else:
      self.dlg.textBrowser.hide()
      #connect the action using Push button
      self.dlg.pushButton_5.clicked.connect(self.hide)


      But I want to pull in and pull out the description window. It should work like example showing below.
      enter image description here
      Is there any way to do this using Qt designer?







      qgis-plugins qgis-3 qt-designer pyqt5






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      VaPVaP

      464




      464




















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "79"
          ;
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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%2fgis.stackexchange.com%2fquestions%2f317104%2fhow-to-pull-in-and-push-out-text-browser%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


          • 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%2fgis.stackexchange.com%2fquestions%2f317104%2fhow-to-pull-in-and-push-out-text-browser%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

          រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

          QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

          PDF-ში გადმოწერა სანავიგაციო მენიუproject page