summaryrefslogtreecommitdiffstats
path: root/qtinterface/tqt-replace-stream.cmake
blob: fcaeced016d17c2d18defb3ff3a0fd6596b3d3b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
QT_VERSION=@QT_VERSION@

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