- GTK_LIB_NAME = <library name>
-
Describes the name of the library (.so or .dll) to open.
Example:
GTK_LIB_NAME = libgtk-x11-2.0.so
- GTK_LIB_EXTRA = <library name>
-
Describes the name of an additional library to open.
Example:
GTK_LIB_EXTRA = libgdk-x11-2.0.so
- GTK_LIB_FUNCTION = <func>, <callback>, <type>, <amount>, <arg1>...<argx>
-
Every GTK function used by a script must be described here. First the name of
the function itself must be mentioned, after that a callback signal if applicable. The real
names for the GTK callback signals must be used here. Then the type of the returnvalue
must be specified. The type can be one of the following:
NONE, WIDGET, BOOL, STRING, LONG or FLOAT. After that, it must be clear how many
arguments the GTK function needs. Finally, the type of each indivdual argument must be declared.
The type of the arguments can be one of the following: NULL, WIDGET, STRING, LONG or FLOAT.
Example:
GTK_LIB_FUNCTION = gtk_window_new, delete-event, WIDGET, 1, LONG
- GTK_SERVER_LOG = <directory>
-
This keyword describes the directory where the GTK-server has to put it's logfile, if logging
is turned on. If the directory is described with a dot '.', the logfile will be produced
in the same directory where the GTK-server binary resides.
Example:
GTK_SERVER_LOG = /tmp