Tagged Questions
0
votes
0answers
28 views
javascript ctypes String to unsigned char
I have a shared C library that is expecting unsigned char * as one of the paramaters
What is the best way to get a Javascript string to be an unsigned char *?
In my js file, I have the paramater ...
1
vote
2answers
103 views
C Sockets: Server gives firefox a downloadable file instead of firefox showing the page
i am creating a simple server that does nothing but to give an existing file /home/john/www at port 2222. my www folder has three files: index.html, server.c, client.c.
running the server, my firefox ...
2
votes
1answer
518 views
Moving Firefox 13's startpage elements by editing omni.ja crashes FF, anyone know how to do this properly?
After removing the settings elements on Firefox 13's startpage, the google searchbox and logo are too low and I'd like to move them. I can edit the startpage by opening omni.ja with IZArc and going to ...
0
votes
1answer
71 views
How to save preferences like firefox?
I have created a simple browser and I want load preferences from a file like firefox does.
Do I have to load the preferences in the memory or do I have to read each preference when it is necessary ?
0
votes
3answers
622 views
how to retrieve values from places.sqlite firefox database?
Well, I'm trying get some values from places.sqlite database. But when I do
$ sqlite3 /home/<user>/.mozilla/firefox/xx.default/places.sqlite "SELECT url FROM moz_places"
I get the following ...
0
votes
1answer
260 views
Where is the places.sqlite database on linux?
Where can I found the places.sqlite file database on Ubuntu/Linux 10.4, Firefox 5.0 (X11)?
I want read the open urls on firefox using C. But I not found the file. I tried following the this ...
0
votes
1answer
396 views
Read omni.jar archive file with MiniZip library
Firefox store its default configuration information in omni.jar (older version) or omni.ja (later versions). Both omni.jar and omni.ja just are zip file format. So we can use many programs/libraries ...
-1
votes
2answers
406 views
Redirecting Firefox to a Proxy on Localhost
For class, I have to write a basic proxy server in C.
I need to test it with firefox, and I'm not sure how to do that.
Say I have the server listening on port X-- how do I make firefox (on the same ...
1
vote
1answer
789 views
Mozilla use a C DLL with js-ctypes
I'm tying to build a dll, and then use it with a Firefox extension.
I managed to build a DLL using gcc under Windows :
#include<stdio.h>
int add(int a,int b)
{
return(a+b);
}
I try now ...
2
votes
4answers
867 views
Sample NPAPI plugin in C for Linux
I need to make a binary plugin in C that works with both Firefox and Chromium, on Linux. Where can I find a simple example of an NPAPI plugin for Linux, written in C?
4
votes
1answer
948 views
Which GUI library is used to develop Mozilla Firefox?
Which GUI library is used to develop Firefox?
Qt? GTK+? Windows native?
0
votes
2answers
371 views
exec() not working with firefox
I've been using a combination of fork() and exec() to execute some external command on linux, however, the code seems to fail whenever I try to execute /usr/bin/firefox which is a symbolic link to a ...
1
vote
1answer
144 views
Does Firefox 4 implement any addon architectural changes
There is an open source firefox addon that I have attempted to test with firefox 4. The installation fails with an error advising that the addon is incompatiable with firefox 4.
From the best of my ...
-1
votes
3answers
3k views
How set a website as homepage in IE, Firefox, Chrome and Safari with C++?
Is there a way to set a website like google.com as homepage through C++ or C ? How ?
3
votes
1answer
911 views
Font smoothing using cairo
I am trying to smooth text rendering using anti-aliasing.
But it's not anti-aliased.
See the picture http://tinypic.com/r/2h7dy1i/4
First line is a png image created using pango and cairo.
Second ...
3
votes
1answer
346 views
Select & Copy firefox content to clipboard in C or C++
I found a few questions similar to mine but none of the answers are satisfactory and they are a few years old. So I am hoping that perhaps some progress has been made on that front since then.
What I ...
0
votes
1answer
82 views
Firefox basic modification
I have to modify firefox to make it an automated client for testing some personal servers.
I have to:1.Have firefox connect normaly, send the GET HTTP, and run all scripts on that web page. 2.Firefox ...