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/kjsembed/tools/create_bindings.sh

24 lines
572 B

#!/bin/sh
function bind_class()
{
xsltproc doxygen2imp_h.xsl "xml/class$1.xml" > "$2_imp.h"
xsltproc doxygen2imp_cpp.xsl "xml/class$1.xml" > "$2_imp.cpp"
xsltproc doxygen2cons_h.xsl "xml/class$1.xml" > "$2_cons.h"
xsltproc doxygen2cons_cpp.xsl "xml/class$1.xml" > "$2_cons.cpp"
}
doxygen
bind_class TQComboBox qcombobox
bind_class Qt qnamespace
bind_class TDEPopupTitle tdepopupmenu
#bind_class TQDir qdir
#bind_class TQListViewItem qlistview
#bind_class TQTimer qtimer
#bind_class TQBrush qbrush
#bind_class TQPen qpen
#bind_class TQPainter qpainter