Re: [webkit-dev] Understanding code of WebKit.

2009-04-04 Thread Gustavo Noronha
On Fri, 2009-04-03 at 04:32 -0700, jagadeesh k wrote:
> Hi,
> I am trying to understand the code of WebKit.I am using DDD(data
> display debugger) for understanding the code on Linux OS.But I am
> unable to navigate through the code of WebKit when i used the command:
> ddd GtkLauncher  .If any one have info about how to debug GtkLauncher
> with ddd,please inform.Should i use different command please let me
> know ?

Try libtool --mode=execute ddd GtkLauncher

-- 
Gustavo Noronha 
GNOME contributor

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] how to disable context menus

2009-04-04 Thread Gustavo Noronha
On Wed, 2009-04-01 at 05:52 -0400, webkit...@aol.com wrote:
> I am using GTK port of webkit and would like to disable (not show at
> all) the right click menus. Does anyone know which API should I be
> using for the same?

Easiest way would be to handle the button-press-event of the widget, and
return TRUE if the button is 3, I think.

See you,

-- 
Gustavo Noronha 
GNOME contributor

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] WebKit Compile erros with Visual C++ 2005

2009-04-04 Thread Brent Fulgham

You are missing a step somewhere.

Did you build using the 'build-webkit' script, or are you trying to  
use the IDE?


Sent from my iPhone

On Apr 3, 2009, at 4:07 PM, Quentin Headen  wrote:



Hello everyone! I am trying to compile webkit using Visual C++ 2005  
I followed all of the instructions on webkit.org, but it gives me  
tons of errors. Most of them come from the WebCore. Here are the  
errors I am getting:


http://pastebin.com/ma52593f


What is the problem?
___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Building QtWebkit on Mac OSX 10.5.6 with Qt 4.5

2009-04-04 Thread Husam Senussi

Hi,

I'm trying to build Qt port on Mac OSX with Qt 4.5 using latest svn  
trunk, but run "./WebKitTools/Scripts/build-webkit --qt"

I get

Use of chdir('') or chdir(undef) as chdir() is deprecated at /Users/ 
husam/WebKit/WebKitTools/Scripts/webkitdirs.pm line 1009,  line  
45.
Calling 'qmake -r DEFINES+=QT_SHARED CONFIG+=qt-port OUTPUT_DIR=/Users/ 
husam/WebKit/WebKitBuild/Release /Users/husam/WebKit/WebKit.pro CONFIG 
+=release CONFIG-=debug' in /Users/husam/WebKit/WebKitBuild/Release


Reading /Users/husam/WebKit/WebCore/WebCore.pro [/Users/husam/WebKit/ 
WebKitBuild/Release//WebCore]
Reading /Users/husam/WebKit/JavaScriptCore/jsc.pro [/Users/husam/ 
WebKit/WebKitBuild/Release//JavaScriptCore]
Reading /Users/husam/WebKit/WebKit/qt/QtLauncher/QtLauncher.pro [/ 
Users/husam/WebKit/WebKitBuild/Release//WebKit/qt/QtLauncher]
Reading /Users/husam/WebKit/WebKit/qt/tests/tests.pro [/Users/husam/ 
WebKit/WebKitBuild/Release//WebKit/qt/tests]
 Reading /Users/husam/WebKit/WebKit/qt/tests/qwebframe/qwebframe.pro  
[/Users/husam/WebKit/WebKitBuild/Release/WebKit/qt/tests//qwebframe]
 Reading /Users/husam/WebKit/WebKit/qt/tests/qwebpage/qwebpage.pro [/ 
Users/husam/WebKit/WebKitBuild/Release/WebKit/qt/tests//qwebpage]
WARNING: Ignored (not found) '/Users/husam/WebKit/WebKit/qt/tests/ 
qwebframe/tst_qwebframe.xcodeproj'
WARNING: Ignored (not found) '/Users/husam/WebKit/WebKit/qt/tests/ 
qwebpage/tst_qwebpage.xcodeproj'
Reading /Users/husam/WebKit/WebKitTools/DumpRenderTree/qt/ 
DumpRenderTree.pro [/Users/husam/WebKit/WebKitBuild/Release// 
WebKitTools/DumpRenderTree/qt]
WARNING: Ignored (not found) '/Users/husam/WebKit/WebCore/ 
QtWebKit.xcodeproj'
WARNING: Ignored (not found) '/Users/husam/WebKit/JavaScriptCore/ 
jsc.xcodeproj'
WARNING: Ignored (not found) '/Users/husam/WebKit/WebKit/qt/QtLauncher/ 
QtLauncher.xcodeproj'
WARNING: Ignored (not found) '/Users/husam/WebKit/WebKitTools/ 
DumpRenderTree/qt/DumpRenderTree.xcodeproj'
WARNING: Ignored (not found) '/Users/husam/WebKit/WebKit/qt/tests/ 
qwebframe/tst_qwebframe.xcodeproj'
WARNING: Ignored (not found) '/Users/husam/WebKit/WebKit/qt/tests/ 
qwebpage/tst_qwebpage.xcodeproj'



I guess there is something else I need to do.

Thanks 
___

webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


Re: [webkit-dev] Options for execCommand in Webkit

2009-04-04 Thread Darin Adler

On Apr 4, 2009, at 1:45 AM, Raja Sekharan wrote:

What are all the operations that can be done through the execCommand  
of document object? I am not able to find this in any of the webkit  
documentation.


I don’t know where there might be documentation for this, but the  
implementation uses a table in the createCommandMap function in the  
EditorCommand.cpp source file. The 44 that say "supported" (as opposed  
to supportedFromMenuOrKeyBinding) are available from  
document.execCommand.


-- Darin

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev


[webkit-dev] Options for execCommand in Webkit

2009-04-04 Thread Raja Sekharan
Hi,

What are all the operations that can be done through the execCommand of
document object? I am not able to find this in any of the webkit
documentation.

Raja Sekharan

___
webkit-dev mailing list
webkit-dev@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev