gambas-source-code/TEMPLATE
Benoît Minisini f457c9608c [CONFIGURATION]
* BUG: Fix the component template script.

[GB.FORM]
* BUG: SidePanel controls now behave correctly when they are put inside a 
  TabStrip.

[GB.GMP]
* NEW: Skeleton for a new component based on the GNU "big numbers" GMP 
  library.

[GB.GTK]
* NEW: TabStrip.FindIndex() is a new method that returns the index of 
  parent tab of a specific child.
* BUG: Fix Control.Raise() and Control.Lower() method when the parent is a
  TabStrip.

[GB.QT4]
* NEW: TabStrip.FindIndex() is a new method that returns the index of 
  parent tab of a specific child.

[GB.QT4.EXT]
* NEW: Editor: The current line is now visible when using a dark highlight 
  theme.


git-svn-id: svn://localhost/gambas/trunk@5016 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-08-07 14:04:55 +00:00
..
conf [CONFIGURATION] 2012-08-07 14:04:55 +00:00
template [CONFIGURATION] 2012-08-07 14:04:55 +00:00
make-component
README
TEMPLATE.c
TEMPLATE.conf
TEMPLATE.cpp
TEMPLATE.h

COMPONENT DIRECTORY TEMPLATE

Here you will find the 'make-component' script, that creates a initial 
component source directory from a configuration file located in the 
'conf' directory.

BE CAREFUL! This template only works inside the complete gambas source 
package structure.

For example, let suppose you want to make a component named 'gb.test',
based on the well known 'test' library:

1) Copy the file 'TEMPLATE.conf' in the 'conf' directory, and rename it
   as 'gb.test.conf'
   
2) Open a terminal, with the current directory being the one where
   the 'make-component' script is located. This is important, because
   otherwise the script won't work.
   
3) Edit the file 'gb.test.conf', and replaces the value of each
   '#define' directive by the appropriate ones. Each directive has
   a commentary that explains its role.
   
4) Once done, run './make-component gb.test'.

5) If everything is ok, you will find a new component directory in the
   parent directory named gb.test, with all needed files and symbolic
   links ready to be build: configure.ac, Makefile.am, ...
   
If something is weird, tell me on the gambas developer mailing-list!

Benoît.