Re: [webkit-dev] get web content by clicking with editing feature?

2009-03-19 Thread Paul Pedriana
Are Web Slices a vetted Internet standard? Was there any formal discussion about it? Closed design results in poor design. Remember the tag? There's also this to consider: http://ajaxian.com/archives/not-possible-to-use-web-slice-icon-in-other-browsers Hi guys, did you notice the Web

Re: [webkit-dev] Webkit-Qt: how to transfer data from LineEdit1 to LineEdit2 ???

2009-03-19 Thread Arun Patole
It has nothing to do with webkit, it's your pure qt app. refer qt signals/slots documentation. btw, here are things that could help you... -you could pass data from LineEdit1 is to LineEdit2 with: "LineEdit2->setText(LineEdit1->text());" -If you want to do it on PushButton1

[webkit-dev] qt 4.5 webkit when flash plugin enabled overloads cpu by 40-70% on windows

2009-03-19 Thread Firuz Kosimov
Hi all: Currently I am writing application on Qt 4.5 that uses webkit intensively(it works as UI of application) on windows XP SP2. I have a problem - Every page that qtwebkit shows has some adobe flash elements. And every page that has flash overloads cpu up to 40-70% while playing. Non-flash we

[webkit-dev] Webkit-Qt: how to transfer data from LineEdit1 to LineEdit2 ???

2009-03-19 Thread nguyen hai
Hi all, I am building webkit through Qt port. But I am new to Qt. I am designing a basic interface. My program has three components: PushButton, LineEdit1, LineEdit2; I want to do thing : when I press on "PushButton" , data from LineEdit1 is passed to LineEdit2. Here is my code but I met error

Re: [webkit-dev] IMG tag

2009-03-19 Thread Darin Adler
On Mar 19, 2009, at 1:51 PM, Ravi Ramachandra wrote: I am very new to webkit. Pardon my silly question. I wanted to know when and where do we decode a JPEG image file? For example if on a HTML page if i encounter tag and with that tag we have a src=".http:////some_picture.jpg";, how does

Re: [webkit-dev] x86-64 JIT

2009-03-19 Thread Gavin Barraclough
I think I can see a bug here – the compile guard on the definition of VoidPtrPair in JITStubs.h isn't right. #if PLATFORM(MAC) should be changed to #if !COMPILER(MSVC) (and the else case should #error if compiled on x86-64, if it not 64- bit safe). The MSVC version of this structure works

[webkit-dev] IMG tag

2009-03-19 Thread Ravi Ramachandra
All, I am very new to webkit. Pardon my silly question. I wanted to know when and where do we decode a JPEG image file? For example if on a HTML page if i encounter tag and with that tag we have a src=".http:////some_picture.jpg";, how does webkit render this? It needs to decode this MIME typ

[webkit-dev] how does Webkit open a new window

2009-03-19 Thread ying lcs
Hi, In some sites, when users click a link, webkit will open a new window to display the content. Can you please tell me where does webkit (in the code) handle that window pops up? Thank you. ___ webkit-dev mailing list webkit-dev@lists.webkit.org http:

Re: [webkit-dev] x86-64 JIT

2009-03-19 Thread Maciej Stachowiak
On Mar 19, 2009, at 11:58 AM, Mike Hommey wrote: On Thu, Mar 19, 2009 at 10:20:03AM -0700, Darin Adler wrote: On Mar 19, 2009, at 10:12 AM, Mike Hommey wrote: Except alert() isn't defined under jsc. Are there any other non-js (native) functions available in jsc, since it seems to be the pr

Re: [webkit-dev] x86-64 JIT

2009-03-19 Thread Mike Hommey
On Thu, Mar 19, 2009 at 10:20:03AM -0700, Darin Adler wrote: > On Mar 19, 2009, at 10:12 AM, Mike Hommey wrote: > >> Except alert() isn't defined under jsc. Are there any other non-js >> (native) functions available in jsc, since it seems to be the problem ? > > Sure, there are tons and tons of n

[webkit-dev] get web content by clicking with editing feature?

2009-03-19 Thread Shi Yan
Hi guys, did you notice the Web Slices feature of IE8? I want to implement a similar thing with the QT webkit. but to do that, I want the webkit be able to return the piece of HTML under my mouse click. for example if I click on an image, I'll have returned. and if I click on some paragraph, I'll

Re: [webkit-dev] x86-64 JIT

2009-03-19 Thread Darin Adler
On Mar 19, 2009, at 10:12 AM, Mike Hommey wrote: Except alert() isn't defined under jsc. Are there any other non-js (native) functions available in jsc, since it seems to be the problem ? Sure, there are tons and tons of native functions; almost every function on every built-in JavaScript

Re: [webkit-dev] x86-64 JIT

2009-03-19 Thread Mike Hommey
On Thu, Mar 19, 2009 at 09:43:36AM -0700, Maciej Stachowiak wrote: > > On Mar 18, 2009, at 1:47 PM, Mike Hommey wrote: > >> On Wed, Mar 18, 2009 at 01:07:51PM -0700, Gavin Barraclough wrote: >>> On Mar 18, 2009, at 11:06 AM, Mike Hommey wrote: >>> An earlier call to JSC::JITStubs::cti_op_call_

Re: [webkit-dev] x86-64 JIT

2009-03-19 Thread Maciej Stachowiak
On Mar 18, 2009, at 1:47 PM, Mike Hommey wrote: On Wed, Mar 18, 2009 at 01:07:51PM -0700, Gavin Barraclough wrote: On Mar 18, 2009, at 11:06 AM, Mike Hommey wrote: An earlier call to JSC::JITStubs::cti_op_call_NotJSFunction works and a lot of other stub functions are called before the cras

Re: [webkit-dev] webkit-dev Digest, Vol 46, Issue 20

2009-03-19 Thread Veerabhadra Sheelavant
Hi , I have done web kit porting to ARM. I have used scratchbox cross compiling tool chain to do this. Install scratchbox and and gcc in it. Then follow the steps as given for Linux. Regards, Veer Hi, Can anyone give me any pointer to compile WebKit GTK+ port for ARM processor? Can this b

[webkit-dev] subscribing

2009-03-19 Thread Siddu
-- Thanks & Regards, Siddu ___ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

Re: [webkit-dev] Diabling XML, XPATH, SVG, and XSLT features of WebKit

2009-03-19 Thread David Kilzer
For the Apple Mac port, look at the list of FEATURE_DEFINES in JavaScriptCore/Configurations/JavaScriptCore.xcconfig, WebCore/Configurations/WebCore.xcconfig and WebKit/mac/Configurations/WebKit.xcconfig. For other ports, look in related build files for the ENABLE_FOO macros. Dave

Re: [webkit-dev] Pushing data to plugin

2009-03-19 Thread Sriram Neelakandan
> myObj.HelloWorld(); > U must register a NPAPI method Identifier with the browser using browser->getstringidentifiers and later implement the method in your NPP->Invoke. Invoke's NPVariant *result is the JS return value. Please read about all this and much more @ http://developer.mozilla.org/en

[webkit-dev] Pushing data to plugin

2009-03-19 Thread Jack Wootton
Hi all, I have written a plugin which represents a new MIME type I wish the browser to be capable of handling. It runs fine is only used to provide an API. So, for example the plugin is used like this: /**/ var myObj = document.embeds[0]; myObj.HelloWorld(); /**