Tagged Questions
0
votes
1answer
41 views
Getting Interface Implementation of built-in Mozilla Firefox Component
I'm currently trying to develop a custom password manager in c++.
I've already developed a deployable module implementing the nsILoginManagerStorage interface, can install it on firefox and it is ...
0
votes
0answers
9 views
nsIdleService is not behaving correctly
https://developer.mozilla.org/en-US/docs/XPCOM_Interface_Reference/nsIIdleService
As soon as user is inactive for specific period nsIdleService triggers and reports idletime.
But even if there is no ...
0
votes
0answers
36 views
Modifying DOM before loading in FireFox
I want to implement an extension to modify DOM in firefox before loading. Is there netscape api to do that. I looked at nsiDOMparser, but i don't think that will work. nsiTraceableChannel only allow ...
0
votes
1answer
2k views
Compile Firefox add-on in Visual Studio 2012 [duplicate]
Possible Duplicate:
Compiling a MFC app from Visual Studio 2010 to 2012 RC results in LNK2038
I am moving an XPCOM Firefox add-on project from Visual Studio 2010 to Visual Studio 2012. ...
1
vote
1answer
147 views
Why do I get error C2440 when I try to compile XPCOM code?
I need to create a Firefox addon that calls C++ code. I did some research and found this tutorial to get me started: http://briankrausz.com/building-a-c-xpcom-component-in-windows/
I followed all the ...
0
votes
2answers
757 views
Desktop Application upon Gecko/Mozilla or WebKit
How can I develop an installable desktop application on top of the Mozilla Engine or the Webkit engine.
We want to have best of both worlds, ease of development with ...
3
votes
2answers
625 views
Building XPCOM XULRunner 2.0 or newer versions
Followup to the following Questions:
What lib in the gecko 1.9.3 SDK do I link against to use moz_xmalloc()?
nsIGenericFactory.h is missing in the above version of xulrunner-2.0.en-US.win32.sdk
I ...
1
vote
1answer
155 views
XPJS (Javascript XPCOM) Documentation?
Anyone know where is some usable XPJS, or XPCOM in JS, documentation for recent versions of Firefox/Gecko? And sample code/ tutorials would be great too.
I need to write my own Component, but without ...
0
votes
2answers
450 views
Firefox 6 :Problem with QueryInterface(nsIDOMWindow::GetIID() in XPCOM component, for browser content window passed from js
I am working on adding support for Firefox 6 for my add-on on Mac OS, where the following logic is working in Firefox 4,5 versions but fails in Firefox 6.
XPCOM component has subclass of ...
0
votes
1answer
264 views
can npapi do everything that ActiveX can?
I wanted to write a B/S project that client side uses ActiveX or Gecko to Communication with server via network socket. And any browser(ie/firefox/chrome/opera/safari) can use it.
0
votes
1answer
150 views
How do I set up an XUL document to be the front end of a application using Gecko?
How do I set up an XUL document to be the front end of a application using Gecko or XUL Runner?? Or is there no way to do it? Could someone provide an brief example if it is possible? Or link to a ...
0
votes
1answer
257 views
Gecko NSModule: ContractIDEntry “nsID const *”?
I created a FireFox addon a while a go, and noticed it stopped working on FireFox 3.6
Apparently, NSGetModule is being replaced with an NSModule structure, so I have to adapt.
I'm coding my product ...
1
vote
1answer
771 views
Is it possible to delete or invalidate gecko / firefox session without closing browser?
Is it possible, using the gecko / firefox XPCOM interfaces, to delete or invalidate a user's active session without closing the browser? I am using Gecko embedded (specifically GeckoFX) in an ...
2
votes
1answer
214 views
Adding entry to Firefox cache from an XPCOM component
The nsICacheSession has a method openCacheEntry() which returns an existing cache entry. Is there a method such as createCacheEntry() that will create a cache entry. I want to create an XPCOM object ...
1
vote
1answer
499 views
How to attach mouse event listeners to embedded nsIWebBrowser in C++
I've embedded an nsIWebBrowser in my application. Because I'm just generating HTML for it on the fly, I'm using OpenStream, AppendToStream, and CloseStream to add content. What I need is to add event ...
3
votes
4answers
867 views
Browser Cache API for non IE browsers
IE has WinInet API, such as GetUrlCacheEntryInfo, to read and manipulate IE browser cache.
Is there a similar API for non IE browsers such as Firefox or Chrome? If so where can I get more info?
...
0
votes
1answer
275 views
Creating an image from a nsIBinaryInputStream
I create a binary input stream using some js trickery which contains compressed image data like jpeg or gif. I want to decode and display this data either using imgITools::decodeImageData or some ...
1
vote
1answer
1k views
Writing a Firefox XPCOM plug-in with a native window interface? (like ActiveX control)
I have an ActiveX control that works fine in Internet Explorer and the ActiveX Control Test Container program. The actual behavior of the control is split in two parts, where one part is the ATL gunk ...
2
votes
1answer
1k views
Accessing Firefox cache from an XPCOM component
Does anybody know how to get local path of file cached by Firefox based on its URL from an XPCOM component?