vote up 3 vote down star
2

Is there any browser I could embedd in C++ application on Windows?

I need all features typical browser has (HTTP client, cookies support, DOM style HTML parser, JavaScript engine) except rendering. Because I don't need rendering capability (and that's rather big part of a browser) I would prefer a browser with non monolithic design so I wouldn't have to include rendering stuff into my project.

It would be nice if it had C++ rather than C API.

I need this embedded browser mainly because I have much trouble finding C++ HTML parser which could handle broken HTML like browsers do.
If you know any, please answer Library Recommendation: C++ HTML Parser SO question or at least vote on it to increase a chance someone will give a good answer.

flag

65% accept rate
2  
You really should specify which platform this is for. Something that may be a good choice on Windows isn't necessarily going to be available on OS X for example. – ChrisInEdmonton May 7 at 15:15
It's for Windows. I added this info to the question. Thanks for spotting this. – Piotr Dobrogost May 7 at 16:46

6 Answers

vote up 3 vote down check

I'm a bit confused by your question regarding embedding a web browser for which you don't need rendering capabilities. A web browser is rendering web pages by definition, unless you just need HTTP and XML with JavaScript capabilities which is a subset of a browser functionalities?

If you need a web browser to embed in your C++ application, I would suggest to consider Qt that comes with the WebKit plugin. It is C++, LGPL and has a very nice IDE (Qt Creator). I tried Qt with Qt Creator on unix (Ubuntu) and it was very impressive. The debugger is a bit light but it is just the first version. The adapter of Qt into visual c++ 2008 is now free.

link|flag
Yep, I need HTTP, cookies, HTML (not XML!) parser and JavaScript. I added all these to the question to make it even more clear :) – Piotr Dobrogost May 7 at 17:19
I would then suggest to use webkit because it is quite efficient, especially the JavaScript interpretor. Just use the functionalities you are interested in. – chmike May 8 at 6:52
vote up 1 vote down

I'd recommend picking up Qt for C++ programming. It has a built-in library that embeds Webkit with all the bells'n'whistles, and Qt is a great C++ library in general.

link|flag
vote up 2 vote down

Including javascript support and html parsing makes this non-trivial task - you have to use one of the available browsers.

  • IE is usable through its COM model - you can create instance of it in your window be it invisible or not and call its javascript/html capabilities.

It has been designed to be used like that since the beginning and certainly it is working fine.

The other options are:

  • Gecko/Mozilla - a couple of years ago it wasn't usable like this, currently I think it is.

  • WebKit/V8 - no public API has been released for chrome yet, you could use webkit itself, but it doesn't have javascript engine. Another option is to take a look at the Chrome codebase and see if you could get out of it what you need.

I would probably go for IE, since it is maybe the easiest option and I have already used it. The other options seem to me more like building a browser instead of just using it.

link|flag
Thanks for pointing out Gecko and WebKit. I'd rather avoid IE and COM especially. – Piotr Dobrogost May 8 at 18:18
vote up 2 vote down

How about Gecko ? You may not need the entire engine but you may find some its components useful like SpiderMonkey which is a JavaScript engine written in C.

link|flag
vote up 5 vote down

Sounds like all you need is something like libcurl which is an HTTP library and will let you do GET/POST/etc.

When I think browser I generally think rendering/JavaScript and not HTTP library.

Edit

In that case I'd look at WebKit (which I think has a C++ API) and hope you don't have to pull too much in.

Edit Again

On second thought (since rendering is such a big part of what browsers do), you might be better off using a stand-alone JS engine like SpiderMonkey and a stand-alone XML parser like Xerces-C (plus maybe tidy to make your HTML into XML).

link|flag
So do I generally. – graham.reeds May 7 at 15:11
I'm already using it. I need JavaScript engine and html parser and libcurl doesn't have these things. – Piotr Dobrogost May 7 at 15:12
3  
It would have been sensible to list those requirements in the question. – Neil Butterworth May 7 at 15:14
@Neil: It was easier to say what I don't need since that's only one thing and all other features I need :) – Piotr Dobrogost May 7 at 16:49
1  
@Piotr ... yes and no. It's kind of obvious that we were confused about what you want ;) – Aaron Maenpaa May 7 at 17:16
show 1 more comment
vote up -1 vote down

Why not code your own? All you need to do is construct a GET statement and send it down the wire and listen for the response.

link|flag
Do you really think that's all what browser do? See my response to zacherates's comment. – Piotr Dobrogost May 7 at 15:16
No, but when I answered the question it was "I need download html files.". Out of context it looks wrong. At the time it was right – graham.reeds May 8 at 9:19
@graham.reeds It never was "I need download html files" what you can see yourself in the history of edits. I guess you confused this question with some other one. – Piotr Dobrogost May 8 at 18:25
@Piotr: To quote "Is there any browser I could embedd in C++ application? I don't need rendering capability so I would prefer a browser with non monolithic design so I wouldn't have to include rendering stuff into my project. It would be nice if it had C++ rather than C API.". So you say you don't want rendering, which lead me to believe you didn't want javascript, etc. either. Once all that is taken out all you have is the http transfer, so I suggested you roll your own. If you want a better answers you need to frame your questions better. – graham.reeds May 8 at 23:31
Ok, I now see your line of reasoning. – Piotr Dobrogost May 9 at 21:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.