Hi,<br><br>you can find an example at [1], namely a class called &quot;QgisInterface&quot; in the postgis_viewer.py, line 313.<br><br>Hope it helps. <br><br>Regards, <br><br>Germán<br><br>-------------------<br>[1] <a href="http://downloads.tuxfamily.org/tuxgis/geoblogs/visor_postgis_pgadmin_3/postgis_viewer.zip">http://downloads.tuxfamily.org/tuxgis/geoblogs/visor_postgis_pgadmin_3/postgis_viewer.zip</a><br>

<br><br><div class="gmail_quote">2012/1/10 Tim Sutton <span dir="ltr">&lt;<a href="mailto:lists@linfiniti.com">lists@linfiniti.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left:1px solid rgb(204,204,204);margin:0pt 0pt 0pt 0.8ex;padding-left:1ex">

Hi<br>
<div><div class="h5"><br>
On Tue, Jan 10, 2012 at 7:08 PM, Martin Dobias &lt;<a href="mailto:wonder.sk@gmail.com">wonder.sk@gmail.com</a>&gt; wrote:<br>
&gt;&gt; On Thu, Mar 3, 2011 at 10:40 AM, Martin Dobias &lt;<a href="mailto:wonder.sk@gmail.com">wonder.sk@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; The only difference when running unit-tests (i.e. standalone apps) is<br>
&gt;&gt;&gt; that you cannot access QGIS interface (qgis.utils.iface) since there<br>
&gt;&gt;&gt; is no QGIS running. But that should not pose a big problem. In case<br>
&gt;&gt;&gt; you really need access to that interface you can create your own<br>
&gt;&gt;&gt; implementation of QgisInterface class and assign it to<br>
&gt;&gt;&gt; qgis.utils.iface.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Regards<br>
&gt;&gt;&gt; Martin<br>
&gt;&gt;<br>
&gt;&gt; Martin do you (or anyone else) have example code for creating an iface<br>
&gt;&gt; instance from a standalone python / QGIS app?<br>
&gt;<br>
&gt; Hi Tim<br>
&gt;<br>
&gt; no I do not have a working example. In general it should be something like this:<br>
&gt;<br>
&gt; import qgis.utils<br>
&gt; import qgis.gui<br>
&gt;<br>
&gt; class MyQgisInterface(qgis.gui.QgisInterface):<br>
&gt;  def __init__(self):<br>
&gt;    QgisInterface.__init__(self)<br>
&gt;  def mapCanvas(self):<br>
&gt;    return FOO<br>
&gt;  def mainWindow(self):<br>
&gt;    return BAR<br>
&gt;  def activeLayer(self):<br>
&gt;    return BAZ<br>
&gt;  # ... more methods ...<br>
&gt;<br>
&gt; # use our interface instance<br>
&gt; qgis.utils.iface = MyQgisInterface()<br>
&gt;<br>
&gt; You will have to provide implementation of all the abstract virtual<br>
&gt; functions defined in QgisInterface. Luckily most of them are not used<br>
&gt; by plugins, so you may provide just implementations not<br>
&gt; doing/returning anything - depending on how precisely would you like<br>
&gt; to imitate QGIS environment.<br>
&gt;<br>
<br>
</div></div>Thanks Martin. Yes I have used the same approach in openModeller<br>
desktop some years ago to allow it to use QGIS (C++) plugins - I was<br>
just interested to know if someone had already baked a python<br>
equivalent in keeping with DRAY (dont repeat anyone else :-)).<br>
<br>
I&#39;ll go ahead and make an attempt at a python one then, thanks.<br>
<br>
Regards<br>
<br>
Tim<br>
<br>
<br>
&gt; Regards<br>
&gt; Martin<br>
<div class="im HOEnZb"><br>
<br>
<br>
--<br>
Tim Sutton - QGIS Project Steering Committee Member (Release  Manager)<br>
==============================================<br>
Please do not email me off-list with technical<br>
support questions. Using the lists will gain<br>
more exposure for your issues and the knowledge<br>
surrounding your issue will be shared with all.<br>
<br>
Visit <a href="http://linfiniti.com" target="_blank">http://linfiniti.com</a> to find out about:<br>
 * QGIS programming and support services<br>
 * Mapserver and PostGIS based hosting plans<br>
 * FOSS Consulting Services<br>
Skype: timlinux<br>
Irc: timlinux on #qgis at <a href="http://freenode.net" target="_blank">freenode.net</a><br>
==============================================<br>
</div><div class="HOEnZb"><div class="h5">_______________________________________________<br>
Qgis-developer mailing list<br>
<a href="mailto:Qgis-developer@lists.osgeo.org">Qgis-developer@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-developer</a><br>
</div></div></blockquote></div><br>-- <br>-----------<br>  |\__  <br>(:&gt;__)(<br>  |/    <br><br>Soluciones Geoinformáticas Libres                            <br><a href="http://geotux.tuxfamily.org/">http://geotux.tuxfamily.org/</a><br>

<br>