Re: [Qgis-developer] Re: Working on Symbology Improvement for the GSOC

2012-04-02 Thread Paolo Cavallini
On 31/03/2012 23:00, Tim Sutton wrote: I don't want to overload your project with requirements, but at least consider (ie not that you need to implement it but youd ui should make allowances for this future feature to live on tge gui) in your design the idea of 'social styling' where you can

Re: [Qgis-developer] SEXTANTE for QGIS has been released

2012-04-02 Thread Victor Olaya
Thanks Radim That means that some distributions of QGIS might have a QT version lower that 4.7? The one I am using works fine, so i gues is 4.7. Is there any way of checking it on the fly, so I can execute that line only if the version is recent enough? Thanks in advance El día 1 de abril de

Re: [Qgis-developer] Linux bug fixed in SEXTANTE release

2012-04-02 Thread Paolo Cavallini
On 30/03/2012 17:04, Victor Olaya wrote: You should re-install (re-download) SEXTANTE, since I uploaded it with the same version number and the plugin manager will not tell you that there is a new version. Sorry for this inconvenience. Now I know how Hi Victor. Could you please pubish a new

Re: [Qgis-user] Re: [Qgis-developer] SEXTANTE for QGIS has been released

2012-04-02 Thread Martin Dobias
On Mon, Apr 2, 2012 at 9:59 AM, Victor Olaya vola...@gmail.com wrote: Thanks Radim That means that some distributions of QGIS might have a QT version lower that 4.7? The one I am using works fine, so i gues is 4.7. Is there any way of checking it on the fly, so I can execute that line only

Re: [Qgis-user] Re: [Qgis-developer] SEXTANTE for QGIS has been released

2012-04-02 Thread Victor Olaya
Hi Victor in Python you can use 'hasattr' builtin function: edit = QLineEdit() if hasattr(edit, 'setPlaceholderText'): edit.setPlaceholderText('foo') Cheers Martin Great! Thanks! ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org

Re: [Qgis-developer] Handling of donations

2012-04-02 Thread Paolo Cavallini
Another interesting example: http://www-old.gnome.org/friends/ I would like to avoid reinventing the wheel: can we reuse some existing solution? All the best. -- Paolo Cavallini - Faunalia www.faunalia.eu Full contact details at www.faunalia.eu/pc

Re: [Qgis-user] Re: [Qgis-developer] SEXTANTE for QGIS has been released

2012-04-02 Thread Alexander Bruy
Hi Victor, you can use qVersion() macro to get Qt version. Something like this minQtVersion = '4.6.0' def initGui(self): if qVersion() minQtVersion: QMessageBox.warning( self.iface.mainWindow(), Error, Your message) self.loadingCanceled = True return None def

[Qgis-developer] Re: Why are GML and KML not directly editable?

2012-04-02 Thread anitagraser
Hi, This question just appeared on gis.stackexchange again. Can anyone explain why GML and KML cannot be edited? It would be good to be able to explain why it doesn't work. Best wishes, Anita -- View this message in context:

Re: [Qgis-developer] Re: Why are GML and KML not directly editable?

2012-04-02 Thread Alexander Bruy
Hi Anita, state of the Toggle Editing button depends on provider (driver) capabilities. It enabled only when driver has ChangeAttributeValues capability and don't rely on DeleteFeatures or AddFeatures capabilities. With this approach many OGR formats that support adding or removing features but

[Qgis-developer] GRASS provider issue on OS X needs attention

2012-04-02 Thread William Kyngesburye
I've been debating whether to make a fuss about it, and I think I will. http://hub.qgis.org/issues/3999 As stated in the bug report, my workaround fix only partially works. Even so, it's not really an OS X problem - it's more of a conceptual problem: PROVIDERS AND PLUGINS ARE NOT SHARED

Re: [Qgis-developer] GRASS provider issue on OS X needs attention

2012-04-02 Thread Charlie Sharpsteen
On Mon, Apr 2, 2012 at 9:50 AM, Giuseppe Sucameli brush.ty...@gmail.comwrote: I understand your point of view, but if OSX users agree the plugin is useful they should also consider to sponsor the fix. What broke the plugin in the first place? It appears to be working fine in 1.7.4. -Charlie

Re: [Qgis-developer] GRASS provider issue on OS X needs attention

2012-04-02 Thread William Kyngesburye
On Apr 2, 2012, at 12:19 PM, Charlie Sharpsteen wrote: On Mon, Apr 2, 2012 at 9:50 AM, Giuseppe Sucameli brush.ty...@gmail.com wrote: I understand your point of view, but if OSX users agree the plugin is useful they should also consider to sponsor the fix. What broke the plugin in the

Re: [Qgis-developer] Re: Working on Symbology Improvement for the GSOC

2012-04-02 Thread Mayeul Kauffmann
Hi, Using QGIS 1.9 I've rendered one third of the Alps with 15 different zoom levels as a hobby project (and serve the world at work on QGIS server with a simpler symbology). See links and what I've learned from this below. Here would be my wish-list should we want to compete with open renderers

[Qgis-developer] PyQGIS Dev Lib plugin idea

2012-04-02 Thread Larry Shaffer
Hi, I have an idea that I am not sure has been discussed before: How about a core, or install-able, plugin that consists of reusable Python functions and subclass-able PyQt widgets? I envision this plugin containing community-submitted functions and classes that any Python plugin dev can call

[Qgis-developer] deactivating toolbar with plugin

2012-04-02 Thread SJWC GIS
Hello all, I'm creating a qgis python plugin. One of the functions of the plugin is to customize the qgis interface by turning off a few toolbars. For most toolbars, this isn't a problem, but for some reason I can't find a way to shut off the Label toolbar. For most toolbars, the following

Re: [Qgis-developer] Linux bug fixed in SEXTANTE release

2012-04-02 Thread Zirneklitis
Something wrong has been done :( There was no problems to install the first version. No luck now :( . OS: Fedora 14 x 64 Python: 2.7 (r27:82500, Sep 16 2010, 18:02:00) [GCC 4.5.1 20100907 (Red Hat 4.5.1-3)] QGIS: 1.9.90-Alpha Alpha, 927dcbd Traceback (most recent call last): File

Re: [Qgis-developer] Linux bug fixed in SEXTANTE release

2012-04-02 Thread Zirneklitis
Sorry for rush! Uninstalling the pug-in, closing QGIS and reopening QGIS dismiss the error. Best regards, Karlis Zirneklitis wrote: Something wrong has been done :( There was no problems to install the first version. No luck now :( . .. ___

Re: [Qgis-developer] deactivating toolbar with plugin

2012-04-02 Thread Larry Shaffer
Hi Aaron, On Mon, Apr 2, 2012 at 2:16 PM, SJWC GIS sjwc...@gmail.com wrote: Hello all, I'm creating a qgis python plugin. One of the functions of the plugin is to customize the qgis interface by turning off a few toolbars. For most toolbars, this isn't a problem, but for some reason I

Re: [Qgis-developer] deactivating toolbar with plugin

2012-04-02 Thread SJWC GIS
Thanks Larry, this is exactly what I was looking for! On Mon, Apr 2, 2012 at 2:13 PM, Larry Shaffer lar...@dakotacarto.comwrote: Hi Aaron, On Mon, Apr 2, 2012 at 2:16 PM, SJWC GIS sjwc...@gmail.com wrote: Hello all, I'm creating a qgis python plugin. One of the functions of the plugin

[Qgis-developer] symbol rotation

2012-04-02 Thread Denis Rouzaud
Hi all, There is an advanced button in the single symbol mode (layer style) which allows me to define a rotation based on the value of a field (great!). But it is not recalled in the rule-based mode. Is this a missing feature or is there a specific reason? Thanks a lot Denis