Skip to content

Qt WebKit

Questions about Qt WebKit and related topics? Post here!
1.5k Topics 5.9k Posts
QtWS25 Last Chance
  • Qt 6 No WebView plug-in found!

    Solved
    4
    0 Votes
    4 Posts
    2k Views
    JKSHJ
    @Augustas said in Qt 6 No WebView plug-in found!: edit: Just to add to your answer: it seems that you also need to install Qt WebChannel packet for WebView to work. So in total you need to install: Qt WebEngine Qt Positioning Qt WebChannel Qt WebView Good catch. Thanks for letting us know! (I didn't notice it before because I usually install everything, for convenience)
  • Map QWidget center position to QGraphicsScene coordinates?

    Unsolved
    11
    0 Votes
    11 Posts
    2k Views
    JonBJ
    @Tacc said in Map QWidget center position to QGraphicsScene coordinates?: I'm getting all those positions in the constructos of each item/widget. That's why it's a shame that you did not show the code where you were printing the values. I did not know you were doing that. Can you help me with that? In what sense? If you move things and want to output their position, add a function you can call (e.g. from a menu item) while you develop/debug, or use something like QGraphicsItem::itemChange() or QGraphicsScene::changed() to recognise it has moved.
  • Adding QtWebView to a project causes deploying of QtWebEngine on macOS

    Unsolved
    4
    0 Votes
    4 Posts
    608 Views
    SGaistS
    Since Qt 6.3 has been released, can you check if you still have that issue ?
  • QWebView: problem with events

    Unsolved
    1
    0 Votes
    1 Posts
    443 Views
    No one has replied
  • 0 Votes
    18 Posts
    3k Views
    ?
    @SGaist This error occurs when I add this:Project ERROR: Unknown module(s) in QT: webkit
  • Render Web 3D Graphics with overlapping QML on Android

    Unsolved
    1
    0 Votes
    1 Posts
    469 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • QWebKit causes Qt application to freeze and become non-responsive

    Unsolved
    1
    0 Votes
    1 Posts
    383 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Instantiating QWebPage prevents my application from starting

    Unsolved
    16
    0 Votes
    16 Posts
    2k Views
    M
    @Konstantin-Tokarev Thank you for the link . But I already solved my problem with QTextCursor and QTextDocument sice I only needed to print to a PDF ,also I am working on Qt 5.13.0 so I don't want to mess with my environment as I am still kind of a noob xD and I hate environment -related issues . But thanks a lot though .
  • Unable to configure Webassembly

    Solved
    5
    0 Votes
    5 Posts
    798 Views
    G
    @JonB Thanks, I have raised the question in that forum : https://forum.qt.io/topic/131568/configuration-issue-with-webassembly
  • Enabling Extensions on PyQt

    Unsolved
    9
    0 Votes
    9 Posts
    2k Views
    S
    I'm sorry if that's how you see it, but I don't want you to do the work for me, I just need a little help.
  • QML WebView deleting cookies

    Unsolved
    2
    1 Votes
    2 Posts
    782 Views
    B
    @QCharacter. Hello. Have you solve this problem?
  • Incorrect site view in QML WebView

    Solved
    2
    0 Votes
    2 Posts
    495 Views
    B
    I fixed this by added webSettings.setDatabaseEnabled(true); webSettings.setDomStorageEnabled(true); in constructor of QtAndroidWebViewController.java end rebuild WebView.
  • WebView profiles

    Unsolved
    1
    0 Votes
    1 Posts
    446 Views
    No one has replied
  • QT Demo Browser crashing on aarch64 platform

    Unsolved
    13
    0 Votes
    13 Posts
    2k Views
    K
    @Konstantin-Tokarev I have build debug libraries with below options to configure script -debug , -webkit-debug, is there any option i should pass so that trace gives us more information?
  • Why are pointer objects created while defining a class?

    Unsolved
    2
    0 Votes
    2 Posts
    646 Views
    JKSHJ
    @Swati777999 said in Why are pointer objects created while defining a class?: I want to know why are pointer objects created in the definition of a class instead of simply creating an object of that class. There can be multiple different reasons. Some reasons are: To save space. The size of a pointer is always 32 bits or 64 bits (4 bytes or 8 bytes) on today's common PCs, but the size of a class/struct depends on the sizes of all its members. If an object is too big, it cannot be created on the stack (or it becomes easier to trigger a stack overflow). Because some objects cannot be copied. For example, you cannot have QList<QWidget>; you must use QList<QWidget*> Because of style/convention. Qt uses pointers to show that an object is an Identity object, and it uses non-pointers to show that an object is a Value object: https://doc.qt.io/qt-6/object.html#qt-objects-identity-vs-value
  • How to Store Multiple data using Serialport in QT

    Unsolved
    2
    0 Votes
    2 Posts
    450 Views
    SGaistS
    Hi and welcome to devnet, That code won't work as QSerialPort is asynchronous by default. What is your end goal ?
  • Could not find library libQt5WebSockets.so.5 for AM57xx.

    Unsolved
    8
    0 Votes
    8 Posts
    1k Views
    SGaistS
    Who is providing that environment ? Ask them for support/missing libraries.
  • Could not find feature mirclient ERROR

    Unsolved
    6
    0 Votes
    6 Posts
    1k Views
    F
    @jsulm Thanks. I will try it