[Qgis-developer] Globe runs in Trunk

2011-05-13 Thread Marco Bernasocchi
Hi all, For the fans of QGis globe, a good news, Thanks to Marco Hugentobler’s idea of using Mutex, QGIS Globe now runs in Trunk. It is an experiment waiting for multithreading but it actually works ok :) here [1] more infos and instruction on how to install. Ciao Marco [1] http://www.opengi

Re: [Qgis-developer] succesfull windows build from INSTALL text

2011-05-13 Thread Tim Sutton
Hi Richard On Fri, May 13, 2011 at 8:36 PM, Jürgen E. wrote: 8<---snip- >> - packaging: >> The packaging instructions are not clear to me. After compiling running it on >> windows, how to package it on ubuntu (for a 'real' windows user). I have a very detailed blog post on thi

Re: [Qgis-developer] Git repo available for testing

2011-05-13 Thread Martin Dobias
On Tue, May 3, 2011 at 2:23 PM, Tim Sutton wrote: > Hi Martin (and others who need to merge changes over) > > On Mon, May 2, 2011 at 6:22 PM, Martin Dobias wrote: >> >> Then I have a question regarding merging stuff from other >> repositories. For example customization we have done with Radim is

Re: [Qgis-developer] succesfull windows build from INSTALL text

2011-05-13 Thread Jürgen E . Fischer
Hi Richard, On Fri, 13. May 2011 at 17:30:37 +0200, Richard Duivenvoorde wrote: > - the INSTALL text seems more up to date than the instructions on > http://www.qgis.org/wiki/Building_QGIS_from_Source For example the INSTALL > text already mentions the GIT stuff etc Should we not delete the wiki p

[Qgis-developer] succesfull windows build from INSTALL text

2011-05-13 Thread Richard Duivenvoorde
Hi All, playing with a clean windows xp virtual machine on my laptop, I thought to test/try the windows build instructions from the INSTALL text... My compliments for this documentation Following the 4.1.1. Visual C++ Express Edition route within I think 2 hours I had a working basis qgi

Re: [Qgis-developer] Contributions for improved QGIS OSM viewer plugin

2011-05-13 Thread Paolo Cavallini
Il giorno ven, 13/05/2011 alle 13.25 +0300, Alexander Bruy ha scritto: > some time ago our community create a set of styles and projects for > beautiful OSM maps in QGIS. Can find more info at > http://gis-lab.info/qa/osm-qgis-projects.html (in Russian, but Google > translate is available). thanks

[Qgis-developer] Re: Error_while _Compiling _Qgis_using _MSVC

2011-05-13 Thread sttsx
Finally I fixed all the errors. May be some of them help you to improve the instructions. (If I can reproduce the errors I will give detailed information about them) - SIP error(mentioned early in this thread) - Missing environment variable definitions(for Python, CMake, etc.) - python import er

Re: [Qgis-developer] Contributions for improved QGIS OSM viewer plugin

2011-05-13 Thread Alexander Bruy
Hi Mayeul, some time ago our community create a set of styles and projects for beautiful OSM maps in QGIS. Can find more info at http://gis-lab.info/qa/osm-qgis-projects.html (in Russian, but Google translate is available). -- Alexander Bruy ___ Qgis-d

Re: [Qgis-developer] Template programming in QGIS

2011-05-13 Thread GOO Creations
No, the constructor is available and correct. If this wasn't the case, the code wouldn't have compiled when I remove the templates and replace it with int. On 2011/05/13 11:58 AM, Martin Dobias wrote: On Fri, May 13, 2011 at 9:32 AM, GOO Creations wrote: Hi all I'm currently writing C++ cod

Re: [Qgis-developer] Template programming in QGIS

2011-05-13 Thread Martin Dobias
On Fri, May 13, 2011 at 9:32 AM, GOO Creations wrote: > Hi all > > I'm currently writing C++ code that I want to use via Python with SIP. The > following is a skeleton for my code: > > template > class MyClass > { >     MyClass(QString s); >     T* calculate(); > } > > class B > { >     B(); >    

Re: [Qgis-developer] Template programming in QGIS

2011-05-13 Thread Tim Sutton
Hi Christoph On Fri, May 13, 2011 at 9:32 AM, GOO Creations wrote: > Hi all > > I'm currently writing C++ code that I want to use via Python with SIP. The > following is a skeleton for my code: > > template > class MyClass > { >     MyClass(QString s); >     T* calculate(); > } > > class B > { >

Re: [Qgis-developer] no python on fresh compile on natty FIXED

2011-05-13 Thread Richard Duivenvoorde
On 05/10/2011 12:59 PM, Richard Duivenvoorde wrote: > > Hi py-devs, > > installed Ubuntu 11.04 on laptop and trying to compile qgis from svn > (r15866). > > compiling (debug mode) ends ok, no errors or so, but I do not have python > (though there is a non working menu-item 'python-console'). ...

Re: [Qgis-developer] Re: Error_while _Compiling _Qgis_using _MSVC

2011-05-13 Thread Tim Sutton
Hi On Tue, May 10, 2011 at 4:21 PM, sttsx wrote: > You won't get much thing even if you follow the notes carefully.  There are > many things missing in windows installation instructions. There are tons of > compilation errors. I could not fix them all and I give up after dealing > many hours. >

Re: [Qgis-developer] Re: Error_while _Compiling _Qgis_using _MSVC

2011-05-13 Thread Tim Sutton
Hi Sunil Maybe you should start a new thread since you seem to be talking about linux issues now. Some distros require you to add /usr/lib64/grass64/lib to your /etc/ld.so.conf After adding it do ldconfig All above need to be done as sudo / root. Regards Tim On Fri, May 13, 2011 at 7:38 A

[Qgis-developer] Template programming in QGIS

2011-05-13 Thread GOO Creations
Hi all I'm currently writing C++ code that I want to use via Python with SIP. The following is a skeleton for my code: /template class MyClass { //MyClass//(QString s); T* calculate(); } class B { B(); void doStuff(); } void B::doStuff()