New qvariant converter module. Now BeRTOS Wizard is able to run with PyQt4 4.6 and...
[bertos.git] / wizard / qvariant_converter_newest.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # This file is part of slimqc.
5 #
6 # Slimqc is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19 #
20 # As a special exception, you may use this file as part of a free software
21 # library without restriction.  Specifically, if other files instantiate
22 # templates or use macros or inline functions from this file, or you compile
23 # this file and link it with other files to produce an executable, this
24 # file does not by itself cause the resulting executable to be covered by
25 # the GNU General Public License.  This exception does not however
26 # invalidate any other reasons why the executable file might be covered by
27 # the GNU General Public License.
28 #
29 # Copyright 2009 Develer S.r.l. (http://www.develer.com/)
30 #
31 # $Id$
32 #
33 # Author: Lorenzo Berni <duplo@develer.com>
34 #
35
36 from PyQt4.QtCore import *
37
38 def getString(qvariant):
39     if type(qvariant) != QVariant:
40         return qvariant
41     string = unicode(qvariant.toString())
42     return string
43
44 def convertString(string):
45     return QVariant(string)
46
47 def getStringList(qvariant):
48     if type(qvariant) == QVariant:
49         tmp = qvariant.toPyObject()
50     else:
51         tmp = qvariant
52     string_list = []
53     if tmp:
54         string_list = [unicode(string) for string in tmp]
55     return string_list
56
57 def convertStringList(string_list):
58     return QVariant(string_list)
59
60 def getStringDict(qvariant):
61     dict_str_str = {}
62     try:
63         for key, value in qvariant.toPyObject().items():
64             dict_str_str[unicode(key)] = unicode(value)
65     except:
66         pass
67     return dict_str_str
68
69 def convertStringDict(string_dict):
70     return QVariant(string_dict)
71
72 def getBool(qvariant):
73     return qvariant.toBool()
74
75 def convertBool(boolean):
76     return QVariant(boolean)
77
78 def getBoolDict(qvariant):
79     dict_str_bool = {}
80     try:
81         for key, value in qvariant.toPyObject().items():
82             dict_str_bool[unicode(key)] = value
83     except:
84         pass
85     return dict_str_bool
86
87 def convertBoolDict(dict_str_bool):
88     return QVariant(dict_str_bool)
89
90 def getDict(qvariant):
91     dict_str_variant = {}
92     try:
93         for key, value in qvariant.toMap().items():
94             dict_str_variant[unicode(key)] = value
95     except:
96         pass
97     return dict_str_variant
98
99 def convertDict(dict_str_variant):
100     result_dict = {}
101     for key, value in dict_str_variant.items():
102         result_dict[QString(key)] = QVariant(value)
103     return QVariant(result_dict)