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.
33 lines
963 B
33 lines
963 B
#!/bin/bash
|
|
QT_VER=X
|
|
|
|
if [[ $1 == "" ]]; then
|
|
echo "Usage: tqt-replace-stream <filename>"
|
|
else
|
|
cat $1 | \
|
|
sed 's/^TQ\([^T_]\)/Q\1/g' | \
|
|
sed 's/\([^_]\)TQ\([^T_]\)/\1Q\2/g' | \
|
|
sed 's/TQT\([^_]\)/QT\1/g' | \
|
|
sed 's/Q\([^ _]*\)_OBJECT_NAME_STRING/TQ\1_OBJECT_NAME_STRING/g' | \
|
|
sed 's/tqApp/qApp/g' | \
|
|
sed 's/\([ \t]\)tq\([^:(_)\t ]\)/\1\2/g' | \
|
|
sed 's/TQ_PROPERTY/Q_PROPERTY/g' | \
|
|
sed 's/TQ_ENUMS/Q_ENUMS/g' | \
|
|
sed 's/TQ_SETS/Q_SETS/g' | \
|
|
sed 's/TQ_OVERRIDE/Q_OVERRIDE/g' | \
|
|
sed 's/TQ_CLASSINFO/Q_CLASSINFO/g' | \
|
|
sed 's/Qt::Orientation/Orientation/g' | \
|
|
sed 's/TQ_INT8/Q_INT8/g' | \
|
|
sed 's/TQ_INT16/Q_INT16/g' | \
|
|
sed 's/TQ_INT32/Q_INT32/g' | \
|
|
sed 's/TQ_INT64/Q_INT64/g' | \
|
|
sed 's/TQ_UINT8/Q_UINT8/g' | \
|
|
sed 's/TQ_UINT16/Q_UINT16/g' | \
|
|
sed 's/TQ_UINT32/Q_UINT32/g' | \
|
|
sed 's/TQ_UINT64/Q_UINT64/g' | \
|
|
sed 's/TQ_LONG/Q_LONG/g' | \
|
|
sed 's/TQ_LLONG/Q_LLONG/g' | \
|
|
sed 's/TQ_ULONG/Q_ULONG/g' | \
|
|
sed 's/TQ_ULLONG/Q_ULLONG/g'
|
|
fi
|