16353 Commits

Author SHA1 Message Date
Juergen E. Fischer
dcef083826 apply revised #6613 2012-11-03 21:51:21 +01:00
Juergen E. Fischer
35646bbc18 partly fix #6610 2012-11-03 21:51:21 +01:00
Larry Shaffer
bb426f4a21 Update to duplicate layer(s)
- Better information about unsupported types
- Action unavailable in contextual menu for individually selected unsupported layers
2012-11-03 14:11:02 -06:00
Juergen E. Fischer
ab2442bbef allow printing of html results in identify window (implements #6575) 2012-11-03 15:23:22 +01:00
Werner Macho
744314d153 adjust translation update script to reflect changes for console 2012-11-03 08:49:38 +01:00
Werner Macho
b30bf98b40 translation update: gl_ES by Xan 2012-11-03 08:48:54 +01:00
Giuseppe Sucameli
d8ca9193b1 fix crashes using uninitialized geometries with GEOS functions,
ensure geos geometries are up to date when passed to GEOS functions
2012-11-03 00:45:10 +01:00
Sandro Santilli
cde8b1e896 Fix bug introduced by reordering postgis table metadata info cols
Thanks jef :)
2012-11-02 20:59:36 +01:00
Sandro Santilli
8e108768cf Reorder and rename postgis layers metadata columns shown in selector 2012-11-02 20:41:35 +01:00
Alexander Bruy
4b9dbf209d use new lineedit widget in several dialogs 2012-11-02 19:13:31 +02:00
Alexander Bruy
8694cb8cd5 [FEATURE] add lineedit with builtin clear button 2012-11-02 19:13:31 +02:00
Sandro Santilli
603c0dc3ea Use "TopoGeometry" as the datatype for topogeometries
"Topology" is too generic, as also the primitive tables (edges,
nodes and faces) are part of the topology
2012-11-02 18:05:05 +01:00
Sandro Santilli
af8f9c9fd5 Retain old TopoGeometry id on editing
Avoids leaving orphaned TopoGeometry objects and breaking
upper hirearchical  layers
2012-11-02 17:28:14 +01:00
Giuseppe Sucameli
135776796b update remove/duplicate layer actions at startup 2012-11-02 16:37:18 +01:00
Giuseppe Sucameli
fedb8ac35a sextante: fix NameError (undefined var) executing GRASS commands 2012-11-02 16:37:18 +01:00
Larry Shaffer
00b1958dc1 Update to duplicate layer(s)
- Duplicate layer always created below source layer, and at same nested group depth
- Duplicate layer is always set to not visible (much faster, canvas refresh not needed when duplicating many layers)
2012-11-02 08:22:39 -06:00
Giuseppe Sucameli
9df95b1e7e Merge pull request #313 from slarosa/master
Automatically switch focus to the input area in console
2012-11-02 05:43:20 -07:00
Salvatore Larosa
2425f92ce0 automatically switch focus to the input area in console
- any keystroke switch focus when in the output area
- moved closeEvent method to DockWidget (since 0330202 it has not worked anymore)
2012-11-02 11:50:19 +01:00
Marco Hugentobler
70fc8ca9b2 WMS server GetLegendGraphics: differentiate between layer space and layer title space 2012-11-02 10:50:49 +01:00
Larry Shaffer
c11df1aa79 [FEATURE] Duplicate map layer(s)
- Action available in Layer menu and legend contextual menu
- Layer style copy/pasted to duplicate
- Memory and plugin layers skipped
- Add sip binding to action in app interface
2012-11-02 03:23:10 -06:00
Juergen E. Fischer
42104d7f3d show filled attribute table again (partly reverts 779e16603) 2012-11-01 22:54:43 +01:00
Sandro Santilli
0dc01f5fff Do not drop schema name from URI, even if it's the same as current
The dropping was done in 2007 to workaround a bug which was elsewhere
(in OGR usage, as reported in #843). I guess by now everything
would work transparently, but if it doesn't it'd be time to fix it
for real.

This commit fixes bug #6599, making life harder for NON-BOGUS code
which isn't confused by schemas...

Please test !
2012-11-01 17:52:16 +01:00
Sandro Santilli
bbedc4e00f TopoViewer: add layer for full faces 2012-11-01 17:44:39 +01:00
Sandro Santilli
a5553b7e54 TopoViewer: only use queries for layers when really needed 2012-11-01 17:44:39 +01:00
Giuseppe Sucameli
c3ca2f20aa Merge pull request #312 from slarosa/master
Moved all the console files into own directory
2012-11-01 04:06:31 -07:00
Salvatore Larosa
6abe8611f4 Moved all the console files into own directory 2012-11-01 11:26:52 +01:00
Marco Hugentobler
dbea3596a1 WMS GetProjectSettings: better drawing order detection 2012-11-01 09:20:36 +01:00
Marco Hugentobler
af575b74d1 Fix crash if calling GetProjectSettings the first time 2012-11-01 08:46:09 +01:00
Giuseppe Sucameli
29ed401769 Merge pull request #311 from slarosa/master
python console: add splitter and scrollbars, fix for DEL and Backspace key
2012-10-31 17:22:13 -07:00
Juergen E. Fischer
98e8ba484b indentation update 2012-10-31 23:47:29 +01:00
Salvatore Larosa
66368f9bc3 vertical scrollbar as needed both input and output area 2012-10-31 23:44:14 +01:00
Juergen E. Fischer
62ebf88974 extent b47b43997 2012-10-31 23:36:50 +01:00
Sandro Santilli
bbecffdb65 Add initial support for editing TopoGeometry objects
This is pretty hackish in that it basically creates a new TopoGeometry
on every edit, leaving loads of orphaned ones around.
2012-10-31 23:34:21 +01:00
Salvatore Larosa
c729a0d9eb fix for DELETE and BACKSPACE key
(it is only an appearance issue)
2012-10-31 22:10:47 +01:00
Sandro Santilli
bd8237f648 Drop mIsGeography member from QgsPostgresProvider
... now replaced by mSpatialColType
2012-10-31 21:09:36 +01:00
Sandro Santilli
b47b43997e Add mSpatialColType member in QgsPostgresProvider
This member tells us if a spatial column is of type Geometry,
Geography or TopoGeometry. The member is currently unused but
will eventually be used for specially handling TopoGeometry.
It could replace the mIsGeography bool, but replacement isn't
done by this commit.

Incidentally, this commit also adds SRID and type detection
for TopoGeometry columns
2012-10-31 20:35:16 +01:00
Radim Blazek
65754481bf fixed warning 2012-10-31 18:47:57 +01:00
Radim Blazek
c4014cfab7 feature counts in rulebased widget 2012-10-31 18:05:15 +01:00
Salvatore Larosa
676b37e986 add vertical scroll bar for input area in console 2012-10-31 15:42:12 +01:00
Larry Shaffer
fd7c3a24bd Fix output/python/qgis dir for Win32 builds that add dir/CMAKE_CFG_INTDIR 2012-10-31 06:27:59 -06:00
Salvatore Larosa
06da4e8a24 Add resize splitter for console
as it was from f15b4e1
2012-10-31 12:36:09 +01:00
Larry Shaffer
d6e832d602 Update for d7a7a46, make sure targets are always built for install 2012-10-31 05:18:13 -06:00
Larry Shaffer
d7a7a46afa Add CMake option WITH_STAGED_PLUGINS (ON by default)
- Core plugins remain available once staged (no need to re-build targets, unless source updated or build directory cleared)
- Once plugins are staged, setting WITH_STAGED_PLUGINS to OFF allows for much quicker subsequent builds
- PyQGIS utilities, console and installer are always staged, regardless of WITH_STAGED_PLUGINS
2012-10-30 18:39:22 -06:00
Larry Shaffer
9918350783 Revert part of a27aad0, not compatible with generated makefiles for GCC 4.2.1 2012-10-30 17:34:55 -06:00
Giuseppe Sucameli
36f8f889b2 Merge pull request #310 from slarosa/master
Add default font-family and size to output area - PyQGIS Console
2012-10-30 12:32:08 -07:00
Salvatore Larosa
47da0c0700 add default font-family and size to output area in console
fix for help dialog
2012-10-30 20:03:49 +01:00
Giuseppe Sucameli
f68b6883f3 Merge pull request #308 from slarosa/master
Add UI file for help - PyQGIS Console
2012-10-30 08:02:43 -07:00
Salvatore Larosa
10178d71c8 Merge branch master of https://github.com/qgis/Quantum-GIS 2012-10-30 15:40:09 +01:00
Salvatore Larosa
e3cd56fa8c removed importing of traceback module as it is unused 2012-10-30 10:57:13 +01:00
Werner Macho
234709da5a changed nokia to digia as they are the new owner of qt 2012-10-30 08:53:38 +01:00