https://github.com/equodev/chromium
Create and render web UIs in Java, SWT, Swing, JavaFX(coming soon), and Eclipse RCP applications.
https://github.com/equodev/chromium
browser cef chromium chromium-embedded-framework chromium-swt chromium-widget desktop-app eclipse eclipse-plugin eclipse-rcp java swing swt swt-browser
Last synced: 6 days ago
JSON representation
Create and render web UIs in Java, SWT, Swing, JavaFX(coming soon), and Eclipse RCP applications.
- Host: GitHub
- URL: https://github.com/equodev/chromium
- Owner: equodev
- License: gpl-3.0
- Created: 2016-11-03T16:47:28.000Z (over 9 years ago)
- Default Branch: ce/116
- Last Pushed: 2024-02-20T16:29:48.000Z (over 2 years ago)
- Last Synced: 2024-04-21T17:14:29.727Z (about 2 years ago)
- Topics: browser, cef, chromium, chromium-embedded-framework, chromium-swt, chromium-widget, desktop-app, eclipse, eclipse-plugin, eclipse-rcp, java, swing, swt, swt-browser
- Language: Java
- Homepage: https://www.equo.dev/chromium
- Size: 10.9 MB
- Stars: 149
- Watchers: 43
- Forks: 29
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: docs/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Equo Chromium Community Edition (**V116**)
The [Equo Chromium](https://www.equo.dev/chromium) Community Edition widget is a cross platform browser that allows users to create and render modern web-based UIs inside a Java application. It can be used in standalone Java applications, Windowless mode, Swing, SWT, or Eclipse RCP applications.
No more custom code for each platform, no more installations of specific libraries for Linux, no more problems in Windows with IE, no more platform-dependant and browser-specific issues at all. This is a truly **cross platform** browser that runs seamlessly in all operating systems and in embedded devices.
It is based on and uses the CEF Framework (https://bitbucket.org/chromiumembedded/cef).
## Usage
To use the Equo Chromium Community Edition widget add the following import sentence to your Java classes:
```java
import com.equo.chromium.swt.Browser;
```
Below you can see an example of how to instantiate the browser in your application:
```java
import com.equo.chromium.swt.Browser
public class SinglePagePart {
public void createBrowser(Composite parent, String url) {
Browser browser = new Browser(parent, SWT.NONE);
browser.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
browser.setUrl(url);
}
}
```
## Examples
Complete Sample projects can be found [here](https://github.com/equoplatform/chromium-samples).
## Distribution
The Equo Chromium Browser is provided as ready-to-use P2, MVN and OSGi repositories, which contain:
- a Chromium bundle
- a Chromium native library per platform fragments
- a feature containing all the above
### Repositories
Repositories are available for Linux, Windows and macOS (x86_64 only)
[Equo Chromium repositories](https://dl.equo.dev/chromium-swt-ce/oss/mvn/index.html)
If you need support for other platforms (i.e 32 bits or ARM architectures) please [contact us](https://www.equo.dev/request-a-demo).
## Equo documentation
https://docs.equo.dev/main/getting-started/introduction.html
## Contributing
Thank you to all the people who are contributing to Equo Chromium! Please, read our [Contributors Guide](docs/CONTRIBUTING.md) if you want to contribute to this project.
By contributing you agree to our [Code of Conduct](docs/CODE_OF_CONDUCT.md)'s terms.
## Build
This repo uses GIT LFS, please install (https://git-lfs.github.com/) before cloning.
- Clone this repo.
- `mvn clean package`
## License
[Equo Chromium](https://www.equo.dev/chromium) is dual-licensed under commercial and open source licenses (GPLv3). This repository is licensed under GPLv3. To get a commercial license and to not worry about the obligations associated with the GPLv3 license please contact the [Equo support team](https://www.equo.dev/request-a-demo).
## Release Notes
All the release notes for the Equo Chromium browser can be found [here](https://docs.equo.dev/chromium/116.x-ce/reference/release-notes.html).
## Support
If you need consultancy or support for having the widget integrated into your app, contact our [Enterprise support team](mailto:support@equo.dev).