[Gtkada-wrapper-devel] SF.net SVN: gtkada-wrapper: [10] trunk
Brought to you by:
bechir_zalila
From: <bec...@us...> - 2006-11-25 23:12:11
|
Revision: 10 http://svn.sourceforge.net/gtkada-wrapper/?rev=10&view=rev Author: bechir_zalila Date: 2006-11-25 15:12:11 -0800 (Sat, 25 Nov 2006) Log Message: ----------- * Renamed the example to 'empty_window' Modified Paths: -------------- trunk/configure.ac trunk/examples/Makefile.am Added Paths: ----------- trunk/examples/empty_window/ trunk/examples/empty_window/Makefile.am trunk/examples/empty_window/README trunk/examples/empty_window/empty_window.adb trunk/examples/empty_window/empty_window.gpr Removed Paths: ------------- trunk/examples/empty_window/Makefile.am trunk/examples/empty_window/README trunk/examples/empty_windows/ Modified: trunk/configure.ac =================================================================== --- trunk/configure.ac 2006-11-25 23:06:27 UTC (rev 9) +++ trunk/configure.ac 2006-11-25 23:12:11 UTC (rev 10) @@ -87,7 +87,7 @@ Makefile doc/Makefile examples/Makefile - examples/empty_windows/Makefile + examples/empty_window/Makefile src/Makefile ]) Modified: trunk/examples/Makefile.am =================================================================== --- trunk/examples/Makefile.am 2006-11-25 23:06:27 UTC (rev 9) +++ trunk/examples/Makefile.am 2006-11-25 23:12:11 UTC (rev 10) @@ -1 +1 @@ -SUBDIRS = empty_windows +SUBDIRS = empty_window Copied: trunk/examples/empty_window (from rev 4, trunk/examples/empty_windows) Deleted: trunk/examples/empty_window/Makefile.am =================================================================== Copied: trunk/examples/empty_window/Makefile.am (from rev 9, trunk/examples/empty_windows/Makefile.am) =================================================================== --- trunk/examples/empty_window/Makefile.am (rev 0) +++ trunk/examples/empty_window/Makefile.am 2006-11-25 23:12:11 UTC (rev 10) @@ -0,0 +1,5 @@ +include ../Makefile.common + +PROJECT_FILE = $(srcdir)/empty_window.gpr +SOURCES = $(srcdir)/empty_window.adb + Deleted: trunk/examples/empty_window/README =================================================================== --- trunk/examples/empty_windows/README 2006-11-25 00:05:56 UTC (rev 4) +++ trunk/examples/empty_window/README 2006-11-25 23:12:11 UTC (rev 10) @@ -1,3 +0,0 @@ -This example test the creation, the display, and the destruction of a -main windows. The main windows is destroyed when the user close it or -clic on it. Copied: trunk/examples/empty_window/README (from rev 9, trunk/examples/empty_windows/README) =================================================================== --- trunk/examples/empty_window/README (rev 0) +++ trunk/examples/empty_window/README 2006-11-25 23:12:11 UTC (rev 10) @@ -0,0 +1,3 @@ +This example test the creation, the display, and the destruction of a +main windows. The main windows is destroyed when the user close it or +clic on it. Copied: trunk/examples/empty_window/empty_window.adb (from rev 9, trunk/examples/empty_windows/empty_window.adb) =================================================================== --- trunk/examples/empty_window/empty_window.adb (rev 0) +++ trunk/examples/empty_window/empty_window.adb 2006-11-25 23:12:11 UTC (rev 10) @@ -0,0 +1,14 @@ +-- $Id$ +-- Copyright (C) 2006 Bechir Zalila <bec...@en...> +-- See COPYING file for license + +-- This example, creates an empty default main window then exits + +with GTKAda_Wrapper; use GTKAda_Wrapper; + +procedure Empty_Window is +begin + Create_Main_Window; + + delay 5.0; +end Empty_Window; Copied: trunk/examples/empty_window/empty_window.gpr (from rev 9, trunk/examples/empty_windows/empty_window.gpr) =================================================================== --- trunk/examples/empty_window/empty_window.gpr (rev 0) +++ trunk/examples/empty_window/empty_window.gpr 2006-11-25 23:12:11 UTC (rev 10) @@ -0,0 +1,5 @@ +with "../../src/gtkada_wrapper.gpr"; + +project Empty_Window is + for main use ("empty_window.adb"); +end Empty_Window; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |