You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kalyptus
Michele Calgaro 024cac181f
Fixed broken Q_FULL_TEMPLATE_INSTANTIATION define (renamed to TQ_FULL_TEMPLATE_INSTANTIATION).
3 years ago
..
Ast.pm Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
ChangeLog Rename many classes and header files to avoid conflicts with KDE4 11 years ago
Iter.pm Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
Makefile.cvs Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
Makefile.in Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
README Rename many classes to avoid conflicts with KDE 10 years ago
TODO Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
Version Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
configure.in Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
dcopidlng Additional renaming of kde to tde 13 years ago
findperl Fix retquire 13 years ago
install-sh Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago
kalyptus Fixed broken Q_FULL_TEMPLATE_INSTANTIATION define (renamed to TQ_FULL_TEMPLATE_INSTANTIATION). 3 years ago
kalyptus.spec.in qt -> tqt conversion: 6 years ago
kalyptusCxxToCSharp.pm qt -> tqt conversion: 6 years ago
kalyptusCxxToDcopIDL.pm Merge fixes for kalyptus that were made in tdelibs/dcopidlng: 4 years ago
kalyptusCxxToECMA.pm Initial TQt conversion 13 years ago
kalyptusCxxToJNI.pm Fixed incorrect TTQ rename (TTQ -> TQ) 6 years ago
kalyptusCxxToJava.pm Fixed incorrect TTQ rename (TTQ -> TQ) 6 years ago
kalyptusCxxToKimono.pm Rename many classes to avoid conflicts with KDE 10 years ago
kalyptusCxxToSmoke.pm Fixed FTBFS and detection of tdenewstuff. 10 years ago
kalyptusCxxToSwig.pm Rename many classes to avoid conflicts with KDE 10 years ago
kalyptusDataDict.pm Removed obsolete Qt2's TQStack class and replaced with TQt3's TQPtrStack. 4 years ago
kdocAstUtil.pm Merge fixes for kalyptus that were made in tdelibs/dcopidlng: 4 years ago
kdocLib.pm Rename KApplication to TDEApplication to avoid conflicts with KDE4 11 years ago
kdocParseDoc.pm Merge fixes for kalyptus that were made in tdelibs/dcopidlng: 4 years ago
kdocUtil.pm Initial TQt conversion 13 years ago
perlbin Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. 15 years ago

README

KALYPTUS -- C, Objective-C and Java bindings generator

Version 0.9

KALYPTUS creates language bindings for Qt and KDE C++ libraries
directly from the headers. Documentation embedded in special doc
comments in the source is translated to an appropriate format for
the target language.

REQUIREMENTS

You need perl 5.005 or greater to run kalyptus.

HOWTO

If you are running this straight from CVS, you will need to run 

	make -f Makefile.cvs

before building.

This should install kalyptus:

./configure; make; make install

CREDITS
-------

Richard Dale - kdoc adaption, C/Objective-C/Java code generation.

Sirtaj Singh Kang for writing the original kdoc utility (kalyptus was
derived from kdoc).

Copyright(C) 2001, Lost Highway Ltd

------

Copyright(C) 1999, Sirtaj Singh Kang <taj@kde.org>
Distributed under the GPL.

NOTES ON USING THE CONVERTER
----------------------------

JAVA
----

Here are some of the shell commands that were used in the conversion process:

Remove any TQ_OVERRIDE macros from the Qt headers, and remove EXPORT_DOCKCLASS from the
KDE headers

# Generate Java and C++ sources. Copy all the target headers to directory 'test/tmp'
kalyptus -fjava test/tmp/*.h test/tmp/dom/*.h test/tmp/tdeio/*.h test/tmp/tdeprint/*.h \
   test/tmp/kjs/*.h test/tmp/tdeparts/*.h test/tmp/tdesu/*.h test/ktextedit/*.h test/tmp/libtdemid/*.h

# Shorten generated filenames
mv DOM__Node.cpp DOMNode.cpp
mv DOM__Node.java DOMNode.java
mv DOM__Document.cpp DOMDocument.cpp
mv DOM__Document.java DOMDocument.java
for FILE in *__* ; do
 NAME=`echo $FILE | sed -e 's/^.*__//'`;
 echo $NAME;
 mv $FILE $NAME;
done
mv SlaveInterface.cpp Slave.cpp
mv SlaveInterface.java Slave.java

# Edit and Compile the generated java
cd tdejava/koala/org/trinitydesktop/koala
make

# Build C++ JNI .h header files
cd qtjava/javalib/org/trinitydesktop/qt
for FILE in *.class ; do NAME=`echo $FILE | sed 's/.class//'`; echo $NAME; javah  -classpath '../../..' org.trinitydesktop.qt.$NAME ; done
for FILE in org_trinitydesktop* ; do NAME=`echo $FILE | sed -e 's/org_trinitydesktop_qt_//'`; echo $NAME; mv $FILE $NAME; done

cd tdejava/koala/org/trinitydesktop/koala
for FILE in *.class ; do NAME=`echo $FILE | sed 's/.class//'`; echo $NAME; javah  -classpath '../../..:../../../../../qtjava/javalib/qtjava.jar' org.trinitydesktop.koala.$NAME ; done
for FILE in org_trinitydesktop* ; do NAME=`echo $FILE | sed -e 's/org_trinitydesktop_koala_//'`; echo $NAME; mv $FILE $NAME; done
# Copy headers to tdejava/koala/tdejava

# Check that  the JNI .h function names match the .cpp ones
cd tdejava/koala/org/trinitydesktop/koala
grep ^Java_ *.cpp | sed -e 's/^[^:]*:\([^(]*\).*/\1/'  | grep -v '[/]' | sort | uniq > cpp.fns
grep Java_ *.h | awk '{ print $4 }' |  grep -v '[/]' | sort | uniq > h.fns
kompare h.fns cpp.fns
# Reconcile and fix any differences

# Edit and compile the generated .cpp and .h files with KDevelop