diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-14 19:47:20 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-14 19:47:20 +0000 |
commit | 875ae8e38bc3663e5057ca910e7ebe4b2994edb9 (patch) | |
tree | ddd3b3bc4d6f0343bae986aebbf9555c20f8e558 /python/pykde/sip/glossary.html | |
parent | cb61a0436524f8ceba31db51ce3f1c5d4afbbb0e (diff) | |
download | tdebindings-875ae8e38bc3663e5057ca910e7ebe4b2994edb9.tar.gz tdebindings-875ae8e38bc3663e5057ca910e7ebe4b2994edb9.zip |
Updated python directory
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1175349 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'python/pykde/sip/glossary.html')
-rw-r--r-- | python/pykde/sip/glossary.html | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/python/pykde/sip/glossary.html b/python/pykde/sip/glossary.html deleted file mode 100644 index b4cec3bc..00000000 --- a/python/pykde/sip/glossary.html +++ /dev/null @@ -1,40 +0,0 @@ -<h2><a name="abstract">Abstract</a></h2> -<p> -Abstract classes are used as base classes. You cannot create -an instance of an abstract class directly - you need to subclass -it. In the subclass, you need to overload <i>all</i> of the -class's <a href="#purevirtual">pure virtual</a> methods. These -are marked as "pure virtual" in these docs, and are also indicated -by a " = 0" at the end of the method declaration. -</p> -<p> -If your subclass doesn't overload the pure virtual methods in the -abstract base class, you won't be able to create an instance of it. -</p> - -<h2><a name="purevirtual">pure virtual</a></h2> -<p> -Pure virtual methods are members of an <a href="#abstract">abstract</a> -class (they're what makes the class abstract in the first place). Pure -virtual methods are nothing more than place holders - there is no code -associated with them -</p> - - -<h2><a name="variables">variables</a></h2> -<p> -Class variables can be read and written from Python. Global or static -variables are <i>read only</i>. Variables that are "protected" or. -"private" in C++ are not implemented. -</p> - -<h2><a name="slots">slots</a></h2> -<p> -When using Qt or KDE in C++, methods involving connections to slots -take 2 arguments: a TQObject 'receiver' and a char* 'slot' name. In Python -you only need to provide a single value - the name of a Python callable -method or function which will be connected to a signal. The method or -function does not need to be in the class where it is reference, and does -not have to be in a class at all. There are other options - see the -"Signals and Slots" documentation for more information. -</p> |