diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-19 19:03:33 +0000 |
commit | e69e8b1d09fb579316595b4e6a850e717358a8b1 (patch) | |
tree | a24fc20865f65772f530d16177520190594ffdd2 /kpovmodeler/pminsertrules.dtd | |
parent | eecec9afb81fdebb0f22e9da22635874c403f854 (diff) | |
download | tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.tar.gz tdegraphics-e69e8b1d09fb579316595b4e6a850e717358a8b1.zip |
TQt4 port kdegraphics
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1237557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpovmodeler/pminsertrules.dtd')
-rw-r--r-- | kpovmodeler/pminsertrules.dtd | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kpovmodeler/pminsertrules.dtd b/kpovmodeler/pminsertrules.dtd index a3c2128c..4b9a46d7 100644 --- a/kpovmodeler/pminsertrules.dtd +++ b/kpovmodeler/pminsertrules.dtd @@ -39,23 +39,23 @@ Insert a list of groups and classes (the object classes that can be inserted) and one condition. If the condition is omitted, the classes can allways be inserted. --> -<!ELEMENT rule ((group | class)+, (and | or | not | before | after | contains +<!ELEMENT rule ((group | class)+, (and | or | not | before | after | tqcontains | greater | less | equal)?)> <!-- Simple negation. Insert one condition --> -<!ELEMENT not (and | or | before | after | contains | greater | less | equal)> +<!ELEMENT not (and | or | before | after | tqcontains | greater | less | equal)> <!-- Logical and. Insert any number of conditions --> -<!ELEMENT and (and | or | not | before | after | contains | greater | less | equal)+> +<!ELEMENT and (and | or | not | before | after | tqcontains | greater | less | equal)+> <!-- Logical or. Insert any number of conditions --> -<!ELEMENT or (and | or | not | before | after | contains | greater | less | equal)+> +<!ELEMENT or (and | or | not | before | after | tqcontains | greater | less | equal)+> -<!-- Condition. Value is true if the object already contains +<!-- Condition. Value is true if the object already tqcontains objects of the given class or group before the insert point. --> <!ELEMENT before (class | group)> -<!-- Condition. Value is true if the object already contains +<!-- Condition. Value is true if the object already tqcontains objects of the given class or group after the insert point. --> <!ELEMENT after (class | group)> @@ -71,9 +71,9 @@ is less than the second. --> <!ELEMENT less ((property | count | const), (property | count | const))> -<!-- Condition. Value is true if the object contains +<!-- Condition. Value is true if the object tqcontains objects of the given classes and groups. --> -<!ELEMENT contains (group | class)+> +<!ELEMENT tqcontains (group | class)+> <!-- Value. Value is the class property of the object, where the |