diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-05 15:55:57 -0600 |
commit | 9ba04742771370f59740e32e11c5f3a1e6a1b70a (patch) | |
tree | c81c34dae2b3b1ea73801bf18a960265dc4207f7 /dcoppython/README | |
parent | 1a96c45b22d01378202d9dc7ed9c47acd30f966e (diff) | |
download | tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.tar.gz tdebindings-9ba04742771370f59740e32e11c5f3a1e6a1b70a.zip |
Initial TQt conversion
Diffstat (limited to 'dcoppython/README')
-rw-r--r-- | dcoppython/README | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dcoppython/README b/dcoppython/README index e5b8c3e8..e5ea18cd 100644 --- a/dcoppython/README +++ b/dcoppython/README @@ -19,13 +19,13 @@ pcop.cpp includes a header file marshal_funcs.h, which is generated from a data file called marshal_funcs.data by a converter script, gen_marshal_funcs.py marshal_funcs.data contains the basic code necessary to marshal and demarshal the different -types that DCOP can handle. For example, it codes how to convert a QString for use by Python +types that DCOP can handle. For example, it codes how to convert a TQString for use by Python (in this case, a Python string) and the reverse - what the user may supply in Python when -DCOP requires a QString. In addition to the fundemental types, more complex QT classes are -coded, such as QRect (which converts to a Python tuple ( (x1,y1), (x2,y2) ) ). +DCOP retquires a TQString. In addition to the fundemental types, more complex QT classes are +coded, such as TQRect (which converts to a Python tuple ( (x1,y1), (x2,y2) ) ). Documentation is auto-generated out of marshal_funcs.data, creating file marshal_funcs_doc.html, -which details how each DCOP type (e.g. QString, QRect, int, QCStringList) is represented in Python. +which details how each DCOP type (e.g. TQString, TQRect, int, TQCStringList) is represented in Python. In this implementation, each DCOP type is represented by a basic Python type - numeric, tuple, etc. There are no "QT bindings" necessary. |