Java-gnome
It is proposed that this article be deleted because of the following concern:
If you can address this concern by improving, copyediting, sourcing, renaming, redirecting, or merging the page, please edit this page and do so. You may remove this message if you improve the article or otherwise object to deletion for any reason. Although not required, you are encouraged to explain why you object to the deletion, either in your edit summary or on the talk page. If this template is removed, do not replace it. The article may be deleted if this message remains in place for seven days, i.e., after 10:31, 1 September 2026 (UTC). Find sources: "Java-gnome" – news · newspapers · books · scholar · JSTOR Nominator: Please consider notifying the author/project: {{subst:proposed deletion notify|Java-gnome|concern=This is just an old unmaintained language binding. Many of the references are just to various linux packages or GitHub repositories, and there are more notable and widely used GTK+ bindings (e.g. gtk-rs, Gir.Core, Gjs) that don't have their own wikipedia article. I don't believe this article justifies its own existence.}} ~~~~ |
| Java-gnome | |
|---|---|
| Release | 0.99[1] / January 20, 1999 |
| Stable release | |
| Written in | C and Java |
| Operating system | UNIX-like |
| Type | GUI language bindings for java |
| License | GNU General Public License with exception. |
| Website | java-gnome |
| Repository | |
java-gnome is a set of language bindings for the Java programming language for use in the GNOME desktop environment. It is part of the official GNOME language bindings suite and provides a set of libraries allowing developers to write programs for GNOME using Java and the GTK cross-platform widget toolkit.
Development
[edit]Originally released on 8 October 1999 as version 0.2, it included the first bindings for Gnome and GTK. Until version 2.0, java-gnome was written by a group of online contributors.[3] Development of this codebase by 5 successive teams continued up to version 2.16.2 supporting GTK 2.6, after which development ceased for several years, and was ultimately discontinued.[4]
The current version, 4.0, was originally an internal project of Operational Dynamics, a change management consultancy group.[5] The 2.0 and 4.0 versions have similar APIs, but specific names (of e.g. packages, classes, and methods) are different, and internal code in 4.0 is encapsulated and not externally visible.[4]
The project is currently maintained by "java gnome Hackers". The leader of this latest team is Andrew Cowie, one of the principal architects for the java-gnome project.[6][7]
Functions
[edit]Java-gnome provides access to various GNOME libraries using idiomatic class-based bindings. The provided libraries in version 4.0 include:
- GTK - The widget toolkit itself.
- GDK - Contains low level drawing primitives. The majority of drawing is done by Cairo.
- Glib and Gobject - Containers for the rest of infrastructure that allow the use of OOP.
- Pango - Text layout engine.
- ATK - Accessibility toolkit.
- GtkSourceView - Source code highlighter.
- LibNotify - Warning notifier.
- GtkSpell - Spellchecker.
- LibUnique - Enforces that only one instance of a program is open simultaneously.
Support
[edit]Java-gnome is only supported in Linux and Unix distributions, unlike most other GTK bindings that are supported by other operating systems. Distribution specific instructions are available for:
Semi-finished instructions are available for Open Solaris and Fedora Core Linux distributions.
Licensing
[edit]Java-gnome is free software released under the terms of the GNU General Public License version 2.[8]
Example
[edit]To compile a java-gnome class, it is necessary to add the gtk-4.1.jar jar in the classpath. The jar is available on Debian (and all Debian-based distributions) in the libjava-gnome-java[9] package, which can be found in the official repositories (the jar is installed under the /usr/share/java path).

package org.wikipedia.javagnome.example;
import org.gnome.gdk.Event;
import org.gnome.gtk.Gtk;
import org.gnome.gtk.Widget;
import org.gnome.gtk.Window;
import org.gnome.gtk.WindowPosition;
/**
* Java-Gnome GTK Example
* inspired official site java-gnome.sourceforge.net
*/
public class GdkSimple extends Window {
public GdkSimple() {
setTitle("Example");
connect((DeleteEvent)(source, event) -> {
Gtk.mainQuit();
return false;
});
setDefaultSize(250, 150);
setPosition(WindowPosition.CENTER);
show();
}
public static void main(String[] args) {
Gtk.init(args);
new GdkSimple();
Gtk.main();
}
}
See also
[edit]- GTK
- Clutter
References
[edit]- ↑ "Index of /web/20010202155200/http://java-gnome.sourceforge.net/News/news.html". Archived from the original on 2001-02-02.
- ↑ "Index of /pub/gnome/sources/java-gnome". ftp.gnome.org.
- ↑ For the current list of developers see AUTHORS Archived 2011-02-08 at the Wayback Machine
- 1 2 "java-gnome 2.x". 2007-03-03. Archived from the original on 2007-03-03. Retrieved 2019-04-28.
- ↑ java-gnome 4.0: About Archived 2009-07-21 at the Wayback Machine. Accessed 2009-08-31.
- ↑ "Andrew Cowie in Launchpad". launchpad.net. 12 February 2008. Retrieved 2019-04-28.
- ↑ "AUTHORS". java-gnome.sourceforge.net. Archived from the original on 2023-06-01. Retrieved 2019-04-28.
- ↑ . 2017-07-04 https://web.archive.org/web/20170704205150/http://research.operationaldynamics.com/bzr/java-gnome/mainline/COPYING. Archived from the original on 2017-07-04. Retrieved 2019-04-28.
{{cite web}}: Missing or empty|title=(help) - ↑ libjava-gnome-java package