Skip to content

Qt WebKit

Questions about Qt WebKit and related topics? Post here!
1.5k Topics 5.9k Posts
  • 0 Votes
    7 Posts
    4k Views
    ?

    bq.
    look at http://blog.forwardbias.in/2009/12/flash-in-qgraphicsview.html for more info).

    nice link, thanks :)

  • JavaScript types in C++

    5
    0 Votes
    5 Posts
    5k Views
    B

    bq. it’s better to find how Qt now supports conversion between some build-in types, for example – QString – I don’t know how it was done.

    Here is the code:
    "http://gitorious.org/webkit/qtwebkit/blobs/qtwebkit-2.1/WebCore/bridge/qt/qt_runtime.cpp":http://gitorious.org/webkit/qtwebkit/blobs/qtwebkit-2.1/WebCore/bridge/qt/qt_runtime.cpp

  • 0 Votes
    10 Posts
    11k Views
    J

    Wooow, the: "QT += webkit" did the trick, I can compile the all project now! :)

    Thank you so much for your time! It was really really appreciated!

  • [Solved] How to Embed Youtube Video

    4
    0 Votes
    4 Posts
    5k Views
    M

    thanks
    great snippet chetankjain

  • 0 Votes
    5 Posts
    4k Views
    B

    [quote author="bmahf" date="1286984397"]Fixed my problem. Thanks for the pointer.[/quote]

    Great. I am glad it helps.

  • 0 Votes
    16 Posts
    7k Views
    1

    and i've now restarted, and figured something else out, but that's going in a new topic. and here is the new topic: "here":http://developer.qt.nokia.com/forums/viewthread/1124/

  • 0 Votes
    2 Posts
    4k Views
    B

    Static build are not supported for QtWebKit.

  • 0 Votes
    2 Posts
    4k Views
    B

    You should not use QWebView, and especially not the zoomFactor() for touch based browsing.

    We have not had the time to do proper documentation about it but touch-based browsing is quite different from the regular browsing.

    For touch-based browsing, you generally use this:

    QGraphicsWebView Frame flattening Tiling zoom by scaling the QGraphicsWebView

    Some more info there:

    "http://gitorious.org/light":http://gitorious.org/light : basic browser for touch screen "http://gitorious.org/yberbrowser":http://gitorious.org/yberbrowser : an interesting browser for the N900 "https://bugs.webkit.org/show_bug.cgi?id=41465":https://bugs.webkit.org/show_bug.cgi?id=41465 the bug report about improving the documentation regarding those feature. A first patch is already available.

    Feel free to comment on bugzilla if you have ideas to improve the documentation further. If you have more questions, do not hesitate to ask them here on the forum.

  • QWebView problem with flash

    2
    0 Votes
    2 Posts
    4k Views
    B

    If the flash players sends any kind of event you can get from JavaScript, you could add a C++ object to the context and add an event listener calling that object.

    bq. WebBrowser’s (C#) WebBrowserProgressChangedEvent sends to me the signal (-1), when the flash player has just finished his job

    How does that work? You receive the event when the content has finished playing? or finished loading? I guess you could subclass QNetworkAccessManager and wait for all request to be finished.

  • QT4.7 : Webkit crash when accessing an Url

    5
    0 Votes
    5 Posts
    4k Views
    B

    You should post an small example we could run. The code snippet is not enough to find the bug in your code.

    I tend to think like chetankjain, the address of this or manager are invalid.

  • Version of Webkit in Qt-4.6.3?

    5
    0 Votes
    5 Posts
    5k Views
    U

    [quote author="Benjamin Poulain" date="1284737064"]So you can take the number as a minimum of feature available compared to Safari.[/quote]

    Ok, that makes complete sense. Thank you again.

  • [Solved] QT WebKit Important Problem

    8
    0 Votes
    8 Posts
    6k Views
    B

    Cool, I am glad to know it is fixed. :)

    Thinking about it, if you have linking error with WebKit but you don't use WebKit in your project, you can add -no-webkit to configure. That will speed-up the build, and avoid you the problems.

  • QWebPage and non-GUI app

    7
    0 Votes
    7 Posts
    8k Views
    B

    [quote author="QBall" date="1284512003"]Does anyone have any ideas which versions of Qt have this problem and which versions don't?[/quote]

    Which problem? Have you read the replies of the original post?

  • Cookies

    24
    0 Votes
    24 Posts
    14k Views
    1

    THANK YOU!!!!!!!!!!!!!!!!!!!!!!!

  • 0 Votes
    6 Posts
    3k Views
    M

    I should take more care in posting bugs...

    The source code of this "bug":https://bugs.webkit.org/show_bug.cgi?id=45499 also shows the problem when you follow the same procedure.

    Sorry for bad reporting.

  • CreateWindow override

    5
    0 Votes
    5 Posts
    5k Views
    J

    As I've been finding out, subclassing the WebPage is the way to go and, like you say, it looks necessary. Thx.

  • Can I enable XSS?

    5
    0 Votes
    5 Posts
    5k Views
    B

    I commented on the bug report. That should not be a problem to have this in QtWebKit since you have a business case and a patch.

  • 0 Votes
    4 Posts
    4k Views
    C

    The issue has been solved after analysis the network packet.

    The server ONLY redirects exe link to other address and I didn't check the reply code.

    Now the reply code from server has been checked in case of any redirection and the exe file could be downloaded as well as other types.

    But I still has the question, I didn't handle redirection before, why it worked on some machines?

  • Page is not being loaded

    11
    0 Votes
    11 Posts
    4k Views
    ?

    at least on winxp and qt 4.7, the amazon links mentioned here load just fine for me... no random issues there, tried multiple times.

    But linguatv is quite slow (even in other browsers), and on webview only the background gradient was visible even after few minutes.. gave up

  • Pause the downloading process

    2
    0 Votes
    2 Posts
    3k Views
    T

    You can provide your own network manager to do this with a custom written feature to pause.