Open a website from an internal eclipse browser?

Can someone help me open web pages from an internal (built-in) Eclipse browser? I am running Linux (window manager) and Eclipse-3.7.2 side by side with the browser, and this is a pain.

I want it to be convenient to read the requirements of my code and at the same time the code. This may be a superuser question, but it is related to Eclipse, so I think I better made the answer for this.

Thanks in advance.

eclipse

edit: I am running gentoo linux and swt-3.7.1 with compilation in support of xulrunner.

edit2: Add a gui menu image in response to the answer below. No menu

+4
source share
3 answers

I know the question is old, but I had the same problem and I was able to find a solution.

The internal SWT browser uses the webkitgtk browser engine. Since you are using gentoo, I assume that you currently have net-libs / webkit-gtk: 3 installed, which is incompatible with SWT. But this is not a problem, because you can install compatible net-libs / webkit-gtk: 2 in a new slot. Just install it like this: emerge net-libs/webkit-gtk:2

After installing the package, the internal web browser works again (for me)

Relations Martin

+4
source

Open the / Configure Vista ... window, then on the "Command Group Availability" tab, find the "Web Browser" entry and make sure it is checked. Then make sure "Web Browser" is also checked on the "Toolbar" tab. You should then see a web browser icon in the toolbar that opens the web browser editor in the IDE.

Although you will have to change the settings in your image in order to use the Internal Web Browser, then it will open as an Eclipse editor.

enter image description here

+4
source

In Ubuntu 13.04, using Eclipse, it automatically worked, I was not sure which web code was missing for me, so I installed everything that seemed relevant, if someone determined what it was, comment,

Hi,

Gabriel Medina

 aptitude install libqt4-webkit libqt5webkit5 libqtscript4-webkit libqtwebkit4 libswt-webkit-gtk-3-jni libwebkitgtk-1.0-0 libwebkitgtk-3.0-0 
0
source

Source: https://habr.com/ru/post/1403718/


All Articles