<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:3.0cm 2.0cm 3.0cm 2.0cm;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="DA" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">Hi Calvin<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">I’m facing the same problem and before I go home I just wanted to ask if you found a solution to this problem?<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D">Regards, Casper<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US" style="font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D"><o:p> </o:p></span></p>
<p class="MsoNormal"><b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif"">From:</span></b><span lang="EN-US" style="font-size:10.0pt;font-family:"Tahoma","sans-serif""> Qgis-developer [mailto:qgis-developer-bounces@lists.osgeo.org]
<b>On Behalf Of </b>C Hamilton<br>
<b>Sent:</b> 30. juni 2016 20:45<br>
<b>To:</b> qgis-developer<br>
<b>Subject:</b> [Qgis-developer] Problems with using QGIS Custom Widgets<o:p></o:p></span></p>
<p class="MsoNormal"><span lang="EN-US"><o:p> </o:p></span></p>
<div>
<div>
<div>
<p class="MsoNormal" style="margin-bottom:12.0pt">I am using Qt Designer to add a QgsColorButtonV2 to the ui of a QGIS plugin. I am using uic.loadUiType to load my .ui file. Specifically here is the line of code:<br>
<br>
FORM_CLASS, _ = uic.loadUiType(os.path.join(<br>
    os.path.dirname(__file__), 'heatmapdialog.ui'))<br>
<br>
When I load the plugin in QGIS I get the error:<br>
<br>
---------------------------<br>
ImportError: No module named qgscolorbuttonv2<br>
<br>
Traceback (most recent call last):<br>
  File "C:/OSGeo4W/apps/qgis/./python\qgis\utils.py", line 306, in startPlugin<br>
    plugins[packageName] = package.classFactory(iface)<br>
  File "C:/Users/Calvin/.qgis2/python/plugins\d3datavis\__init__.py", line 2, in classFactory<br>
    from .d3datavis import D3DataVis<br>
  File "C:/OSGeo4W/apps/qgis/./python\qgis\utils.py", line 572, in _import<br>
    mod = _builtin_import(name, globals, locals, fromlist, level)<br>
  File "C:/Users/Calvin/.qgis2/python/plugins\d3datavis\d3datavis.py", line 10, in
<br>
    from heatmapDialog import HeatmapDialog<br>
  File "C:/OSGeo4W/apps/qgis/./python\qgis\utils.py", line 572, in _import<br>
    mod = _builtin_import(name, globals, locals, fromlist, level)<br>
  File "C:/Users/Calvin/.qgis2/python/plugins\d3datavis\heatmapDialog.py", line 17, in
<br>
    os.path.dirname(__file__), 'heatmapdialog.ui'))<br>
  File "C:\OSGeo4W\apps\Python27\lib\site-packages\PyQt4\uic\__init__.py", line 213, in loadUiType<br>
    exec(code_string.getvalue(), ui_globals)<br>
  File "", line 169, in <br>
  File "C:/OSGeo4W/apps/qgis/./python\qgis\utils.py", line 572, in _import<br>
    mod = _builtin_import(name, globals, locals, fromlist, level)<br>
ImportError: No module named qgscolorbuttonv2<br>
---------------------------<br>
<br>
In my code I have the import line:<br>
<br>
from qgis.gui import *<br>
<br>
From the QGIS console if I do that import, QgsColorButtonV2 is available.<br>
<br>
It appears that uic.loadUiType is the problem. How do I solve this?<o:p></o:p></p>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt">Thanks,<o:p></o:p></p>
</div>
<p class="MsoNormal">Calvin<o:p></o:p></p>
</div>
</div>
</body>
</html>