Re: [Qgis-developer] Fwd: Icon for delete selected polygon

2014-10-01 Thread Anita Graser
On Wed, Oct 1, 2014 at 12:44 AM, Nathan Woodrow madman...@gmail.com wrote: Hey Anita, I'm still not sure I really like that icon. Personally I still think a simple bin is a good sign for delete. It is the delete icon on OS X, Linux, and Windows, and most mobile apps. Having a polygon and a

[Qgis-developer] QGIS 2.4 and 2.5: default transparency for select not honored?

2014-10-01 Thread Luca Manganelli
Hi, I found a problem with QGIS 2.4 and 2.5 yesterday build. When you set the defeult the color for selections and you set the alpha channel (i.e. to 25%), at next QGIS startup only the color (without the alpha channel) is taken, until you modify the alpha channel from the project options

[Qgis-developer] Build error in Debug mode

2014-10-01 Thread René-Luc Dhont
Hi devs, When I build master in Debug mode I have this error : [ 31%] Generating __/__/__/src/providers/wcs/moc_qgswcscapabilities.cxx [ 31%] Built target qgis_wcsprovidertest moc: Cannot create /home/~/build/tests/src/providers/__/__/__/src/providers/wcs/moc_qgswcscapabilities.cxx make[2]: ***

[Qgis-developer] WMS Search results

2014-10-01 Thread SSchmidt
Hi all, don't know if the question is right placed here. In QGIS in the Add WMS dialog on tab Search for Server you can put in some keywords and get a list of WMS matching this topic. How could a WMS becomes a member of this resultlist? Freundliche Grüße aus Leipzig Susann Schmidt

[Qgis-developer] Request for feature freeze exemption

2014-10-01 Thread Nyall Dawson
Hi all, I've just posted a pull request #1601, which I'd like considered for an exemption for feature freeze for 2.6. As mentioned in the PR: What this feature does is add an option in the view menu for compositions to hide the bounding boxes of the currently selected feature. It's a standard

[Qgis-developer] Fwd: Style widget ergonomics

2014-10-01 Thread Vincent Mora
Hi all, It would be nice to have the same interface for data defined properties in the 'Style' widget and in the 'Labels' widget. The 'Labels' widget has a small icon on the side of each property that allows to specify a field or expression. The 'Style' widget has the 'Advanced' combobox

Re: [Qgis-developer] Fwd: Style widget ergonomics

2014-10-01 Thread Nathan Woodrow
On Wed, Oct 1, 2014 at 10:17 PM, Vincent Mora vincent.m...@oslandia.com wrote: The 'Labels' small icon is my preferred option. It Hey Vincent, This is the plan as far as I know. Both features landed by two different devs at the same time so it would be good to unify them now that the base

[Qgis-developer] PostGIS warning details in QGIS master

2014-10-01 Thread Pedro Venâncio
It seems that there were changes in warning messages in QGIS master. When trying to copy features from a PostGIS layer in QGIS master to another, in the moment of pasting to the destination layer, I get the warning message Paste features: no features could be succesfully pasted., however it does

Re: [Qgis-developer] PostGIS warning details in QGIS master

2014-10-01 Thread Denis Rouzaud
Hi, Now copy/paste tries to convert geometries to match layer destination. So, you probably had incompatible geometries like trying to paste lines in a point layer. I can try to provide a better feedback, but as I remember it was not so easy. Greetings Denis Le 1 oct. 2014 15:58, Pedro

Re: [Qgis-developer] PostGIS warning details in QGIS master

2014-10-01 Thread Pedro Venâncio
Hi Denis, Now copy/paste tries to convert geometries to match layer destination. So, you probably had incompatible geometries like trying to paste lines in a point layer. Not in this case. Both layers were geometry (MultiLineString,20790). In previous versions the only problem that the

[Qgis-developer] QGIS and South Oriented CRS

2014-10-01 Thread Zoltan Szecsei
Hi Devs, Gavin I have swapped a few emails discussing this, and would like to get a wider opinion as to whether it is a QGIS error, or not. QGIS version in use by me, as per attached screenshot. *The problem:* If I read in a CSV layer that uses South Oriented CRS, then QGIS displays

[Qgis-developer] 'Qsci/qsciapis.h' file not found

2014-10-01 Thread Rouzaud Denis
Hi all, I am trying to build QGIS on Mac OS Mavericks and I am having troubles with QScintilla. While compiling, I reach this error /Users/denis/Documents/code/QGIS/src/app/../gui/qgscodeeditor.h:22:10: fatal error: 'Qsci/qsciapis.h' file not found #include Qsci/qsciapis.h Although, it

[Qgis-developer] Error Saving WFS edits in QGIS 2.4 and 2.5

2014-10-01 Thread Scott
Hello, I'm using QGIS 2.4 and QGIS 2.5 b044d4d on OS-X. I am trying to edit a point layer that is being served out as WFS 1.3 from GeoServer 2.5. When I try to edit attributes or the geometry, I get an error that says: Could not commit changes to layername (I tried a couple). Errors: ERROR: 1

Re: [Qgis-developer] Fwd: Style widget ergonomics

2014-10-01 Thread Régis Haubourg
Hi, this was already suggested by Anita If I remember well, and I agree with that too. FYI, I will be funding that very soon, as a consultation is on here about homogeneizing those style interfaces, focusing on a more clear and functional UI for size varying analyses, and finally implement

[Qgis-developer] PyQt4.QtCore.QVariant represents a mapped type and cannot be instantiated

2014-10-01 Thread Mark Coletti
I'm writing a qgis python plugin and have encountered a curious problem. I've successfully tested the plugin's dialog standalone via ipython. However, I get the following error when I try to execute the same code from within qgis: PyQt4.QtCore.QVariant represents a mapped type and cannot be

Re: [Qgis-developer] PyQt4.QtCore.QVariant represents a mapped type and cannot be instantiated

2014-10-01 Thread Gary Sherman
On 10/1/14 12:55 PM, Mark Coletti wrote: I'm writing a qgis python plugin and have encountered a curious problem. I've successfully tested the plugin's dialog standalone via ipython. However, I get the following error when I try to execute the same code from within qgis: PyQt4.QtCore.QVariant

Re: [Qgis-developer] QgsAttributeDialog() working example

2014-10-01 Thread Andrew McClure
I found this thread very helpful. It seems to be that to the dialog into edit mode this has to be done programmatically by calling startEditing() - not by simply having the layer in edit mode. Can anyone else verify that? Regardless, thanks for the pointers and suggestions in the thread.