< Ada Programming < Libraries < GUI
GtkAda is the Ada binding for the popular open-source GTK+ libraries. Can be used on multiple platforms.
GtkAda Code Example
with Gtk.Main, Gtk.Window;
procedure Simple_Application is
Window : Gtk.Window.Gtk_Window;
begin
Gtk.Main.Init;
Gtk.Window.Gtk_New (Window);
Gtk.Window.Show (Window);
Gtk.Main.Main;
end Simple_Application;
Library
- Author
- see homepage
- Homepage
- http://libre.adacore.com/libre/tools/GtkAda/
- http://www.adacore.com/home/gnatpro/add-on_technologies/gui_development
- Project Info
- see homepage.
- SVN Archive
- http://svn.eu.adacore.com/anonsvn/Dev/trunk/GtkAda
- Download
- see homepage
See also
- GtkAda Contributions from Dmitry A. Kazakov.
- Lorenz : A small drawing example using the Glade3 GUI builder.
- LinXtris is a multi-platform Tetris clone written in Ada 95 and GtkAda.
Wikibook
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.