summaryrefslogtreecommitdiffstats
path: root/python/pykde/sip/kdecore/kconfigdata.sip
diff options
context:
space:
mode:
Diffstat (limited to 'python/pykde/sip/kdecore/kconfigdata.sip')
-rw-r--r--python/pykde/sip/kdecore/kconfigdata.sip176
1 files changed, 176 insertions, 0 deletions
diff --git a/python/pykde/sip/kdecore/kconfigdata.sip b/python/pykde/sip/kdecore/kconfigdata.sip
new file mode 100644
index 00000000..afe8d120
--- /dev/null
+++ b/python/pykde/sip/kdecore/kconfigdata.sip
@@ -0,0 +1,176 @@
+//
+// Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com>
+// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson
+// may also apply
+
+
+// Generated by preSip
+// module kdecore version KDE 3.5.3
+
+
+// This software is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License as
+// published by the Free Software Foundation; either version 2 of
+// the License, or (at your option) any later version.
+//
+// This software is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public
+// License along with this library; see the file COPYING.
+// If not, write to the Free Software Foundation, Inc.,
+// 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+
+class KEntry
+{
+%TypeHeaderCode
+#include <kconfigdata.h>
+%End
+
+
+public:
+ KEntry ();
+ QCString mValue;
+ bool bDirty;
+ bool bNLS;
+ bool bGlobal;
+ bool bImmutable;
+ bool bDeleted;
+
+%If ( KDE_3_1_0 - )
+ bool bExpand;
+%End
+
+
+}; // class KEntry
+
+
+class KEntryKey
+{
+%TypeHeaderCode
+#include <kconfigdata.h>
+%End
+
+
+public:
+ KEntryKey (const QCString& = QCString ("" ), const QCString& = QCString ("" ));
+ QCString mGroup;
+ QCString mKey;
+ bool bLocal;
+ bool bDefault;
+ const char* c_key;
+
+}; // class KEntryKey
+
+typedef QMap<KEntryKey,KEntry> KEntryMap;
+//ig typedef QMap<KEntryKey,KEntry>::Iterator KEntryMapIterator;
+//ig typedef QMap<KEntryKey,KEntry>::ConstIterator KEntryMapConstIterator;
+//force
+KEntryMap testKEntryMap (SIP_PYOBJECT) [KEntryMap (KEntryMap)];
+%MethodCode
+//takes dict | (KEntryMap)
+//returns (QMap<KEntryKey,KEntry)
+
+ int isErr = 0;
+ KEntryMap *map = (KEntryMap *)sipForceConvertTo_KEntryMap (a0, &isErr);
+
+ if (isErr)
+ sipRes = NULL;
+ else
+ sipRes = map;
+%End
+
+//end
+
+
+%MappedType KEntryMap
+//converts a Python dict of KEntryKey:KEntry
+{
+%TypeHeaderCode
+#include <qmap.h>
+#include <kconfigdata.h>
+#include <sipkdecoreKEntryMap.h>
+#include <sipkdecoreKEntry.h>
+#include <sipkdecoreKEntryKey.h>
+%End
+
+%ConvertFromTypeCode
+ // Convert to a Python dict
+
+ if (!sipCpp)
+ return PyDict_New();
+
+ PyObject *dict;
+
+ // Create the dictionary.
+
+ if ((dict = PyDict_New()) == NULL)
+ return NULL;
+
+ // Get it.
+
+ const KEntryMap cppmap = *sipCpp;
+ KEntryMap::ConstIterator it;
+
+ for (it = cppmap.begin (); it != cppmap.end (); ++it)
+ {
+ KEntryKey acpp = it.key ();
+ KEntry bcpp = it.data ();
+ PyObject *ainst;
+ PyObject *binst;
+ if (((ainst = sipBuildResult (NULL, "N", new KEntryKey (acpp), sipClass_KEntryKey)) == NULL)
+ || ((binst = sipBuildResult (NULL, "N", new KEntry (bcpp), sipClass_KEntry)) == NULL)
+ || (PyDict_SetItem (dict, ainst, binst) < 0))
+ {
+ Py_XDECREF (ainst);
+ Py_XDECREF (binst);
+ Py_DECREF (dict);
+ return NULL;
+ }
+ }
+
+ return dict;
+%End
+
+
+%ConvertToTypeCode
+ // Convert a Python dictionary to a QMap on the heap.
+
+ if (sipIsErr == NULL)
+ return PyDict_Check(sipPy);
+
+
+ KEntryMap *cppmap = new KEntryMap;
+
+ PyObject *aelem, *belem;
+ int pos = 0;
+ KEntryKey *acpp;
+ KEntry *bcpp;
+
+ while (PyDict_Next(sipPy, &pos, &aelem, &belem))
+ {
+ int iserr = 0;
+
+ acpp = (KEntryKey *)sipForceConvertTo_KEntryKey (aelem, &iserr);
+ bcpp = (KEntry *)sipForceConvertTo_KEntry (belem, &iserr);
+
+ if (iserr)
+ {
+ *sipIsErr = 1;
+ delete cppmap;
+ return 0;
+ }
+
+ cppmap->insert (*acpp, *bcpp);
+ }
+
+ *sipCppPtr = cppmap;
+
+ return 1;
+%End
+};
+
+