How to use the default browser to open the link in qtextbrowser

Source: Internet
Author: User
Qtextbrowser will try to open the link by itself. Most of the time this is not what you want, so setopenlinks (false) is required ). Then capture the anchorclicked signal and call the ShellExecute Function to open the URL in the default browser. The reference code is as follows:
========================================================== ========
# Include "testtextbrowser. H"
# Include <qstring>
# Include <windows. h>

Testtextbrowser: testtextbrowser (qwidget * parent, QT: wflags flags)
      :
Qmainwindow (parent, flags)
{
      Ui. setupui (this );
      Ui. textbrowser-> setopenlinks (false );
      Connect (ui. textbrowser,
Signal (anchorclicked (const qurl &), this, slot (anchorclickedslot (const qurl &)));
      Ui. textbrowser-> append (qstring: fromlocal8bit ("<
Href = \ "http://www.sina.com.cn/\"> Sina </a> "));
}

Void testtextbrowser: anchorclickedslot (const qurl & URL)
{
      Shellexecutea (null,
"Open", URL. tostring (). tostdstring (). c_str (), "", "", sw_show );
}Qtextbrowser will try to open the link by itself. Most of the time this is not what you want, so setopenlinks (false) is required ). Then capture the anchorclicked signal and call the ShellExecute Function to open the URL in the default browser. The reference code is as follows:
========================================================== ========
# Include "testtextbrowser. H"
# Include <qstring>
# Include <windows. h>

Testtextbrowser: testtextbrowser (qwidget * parent, QT: wflags flags)
      :
Qmainwindow (parent, flags)
{
      Ui. setupui (this );
      Ui. textbrowser-> setopenlinks (false );
      Connect (ui. textbrowser,
Signal (anchorclicked (const qurl &), this, slot (anchorclickedslot (const qurl &)));
      Ui. textbrowser-> append (qstring: fromlocal8bit ("<
Href = \ "http://www.sina.com.cn/\"> Sina </a> "));
}

Void testtextbrowser: anchorclickedslot (const qurl & URL)
{
      Shellexecutea (null,
"Open", URL. tostring (). tostdstring (). c_str (), "", "", sw_show );
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.