Hello,

At the moment i am going to write a little, very simple c++
application which bears a plain gtkmm gui including a webbrowser
object and can be run with linux as well as win distros.
It's hard to believe there is not even one example that works without
building all the mozilla-dev lib which causes into troubles at the
ubuntu os which removed this package from repro :(
Can't i import/use the embedded browser without starting from its
sources?!

The simple hello gtkmm+mozilla app looks at the moment like that:
#include <gtkmm/main.h>
#include <gtkmm/button.h>
#include <gtkmm/window.h>

int main (int argc, char* argv[])
{
    Gtk::Main m_main(argc, argv);
    Gtk::Window m_window;
    Gtk::Button m_button("hello gecko!");

    m_window.add(m_button);
    m_button.show();

        //add a embedded browser, show and navigate2 "http://mozilla.org";

    Gtk::Main::run(m_window);

    return 0;
}


After searching a lot i could find the file libgtkembedmoz.so and the
win dll for download without need of sources to be build!

Can You please tell me, how to use that file(s) now?
Or is there a tutorial which copes with this issue and not with build
all the mozilla dev package?

Thanks for advice.
_______________________________________________
dev-embedding mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-embedding

Reply via email to