Bug 37622 - [Qt] Moving setViewMode from DumpRenderTreeSupportQt to qwebpage.cpp
Summary: [Qt] Moving setViewMode from DumpRenderTreeSupportQt to qwebpage.cpp
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Platform (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC All
: P2 Normal
Assignee: Nobody
URL:
Keywords: Qt
Depends on:
Blocks:
 
Reported: 2010-04-14 16:16 PDT by Luiz Agostini
Modified: 2010-04-20 12:37 PDT (History)
2 users (show)

See Also:


Attachments
patch 1 (5.69 KB, patch)
2010-04-14 16:21 PDT, Luiz Agostini
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Luiz Agostini 2010-04-14 16:16:02 PDT
Method qt_wrt_setViewMode was removed from qwebpage.cpp by mistake in r57433 (bug 35844).
Moving it back.
Comment 1 Luiz Agostini 2010-04-14 16:21:58 PDT
Created attachment 53383 [details]
patch 1
Comment 2 Simon Hausmann 2010-04-14 16:55:25 PDT
A nicer way of achieving the same kind of private "API" would be to use dynamic properties. So instead of using a private function

    QWebPage* page = ...
    qt_wrt_setViewMode(page, "foobar");

the client could would be much simpler:

    page->setProperty("wrt_viewMode", "foobar");


and QWebPage would receiver a QEvent::DynamicPropertyChange where the QEvent* is actually a QDynamicPropertyChangeEvent.

Here's a link to the docs:
    http://doc.qt.nokia.com/4.6/qobject.html#setProperty
Comment 3 WebKit Commit Bot 2010-04-14 20:34:52 PDT
Comment on attachment 53383 [details]
patch 1

Clearing flags on attachment: 53383

Committed r57629: <http://trac.webkit.org/changeset/57629>
Comment 4 WebKit Commit Bot 2010-04-14 20:34:57 PDT
All reviewed patches have been landed.  Closing bug.
Comment 5 Simon Hausmann 2010-04-20 12:37:27 PDT
Right now the function in question is still present in the qtwebkit-2.0 branch, so I'm removing this as a blocker