Gnome Chemistry Utils 0.10.2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Gnome Chemistry Utils 0.10.2 (Default branch)
# 1  
Old 11-29-2008
Gnome Chemistry Utils 0.10.2 (Default branch)

Image The Gnome Chemistry Utils includes the following programs: a 2D chemical editor (GChemPaint), a chemical calculator (computes raw formule, molar weight, mass composition, and isotopic pattern), a 3D molecule viewer using OpenGL to display molecular models, a crystal structure viewer and editor, a spectrum viewer, and a periodic table of the elements. License: GNU General Public License v2 Changes:
Major bugs were fixed. An issue in GChemPaint with double bond drawing was fixed along with crashes when adding a bond between two molecules and when adding a fourth bond to phosphorus. Various issues related to group symbols were fixed, and all users of GChemPaint are encouraged to upgrade. URIs are now un-escaped before display in all applications. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Gnome(3)						User Contributed Perl Documentation						  Gnome(3)

NAME
Gnome - Perl module for the Gnome libraries SYNOPSIS
use Gnome; Gnome->init('myapp'); my $app = new Gnome::App("myapp", "myapp window title"); $app->create_menus({type => 'subtree', label => '_File', subtree => [ ['item', '_Quit', undef, sub {exit}, 'stock', 'Quit'], ]}); my $canvas = new Gnome::Canvas; $canvas->set_scroll_region(0, 0, 300, 300); $canvas->set_usize(300, 300); $canvas->root->new($canvas->root, 'Rect', x1 => 10, y1 => 10, x2 => 150, y2 => 250, fill_color => '#0f0ef2', outline_color => 'black'); $app->set_contents($canvas); $app->show_all; Gtk->main; DESCRIPTION
The Gtk module allows Perl access to the widgets and other facilities in the Gnome libraries. You can find more information about Gnome on http://www.gnome.org. The Perl binding tries to follow the C interface as much as possible, providing at the same time a fully object ori- ented interface and Perl-style calling conventions. You will find the reference documentation for the Gnome module in the "Gnome::reference" manpage. More information can be found on http://gtkperl.org. AUTHOR
Kenneth Albanowski, Paolo Molaro SEE ALSO
perl(1), Gtk(3pm), Gtk::reference(3pm), Gnome::reference(3pm) perl v5.8.0 2001-06-26 Gnome(3)