Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Cleaned up and added debug output for north arrow plugin
git-svn-id: http://svn.osgeo.org/qgis/trunk@7982 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
homann committed Jan 16, 2008
1 parent 231c70a commit f415fde
Showing 1 changed file with 25 additions and 19 deletions.
44 changes: 25 additions & 19 deletions src/plugins/north_arrow/plugin.cpp
Expand Up @@ -28,13 +28,15 @@ email : tim@linfiniti.com
#include "qgsmaplayer.h"
#include "plugin.h"
#include "qgsproject.h"
#include "qgslogger.h"
#include "qgsmapcanvas.h"
#include "qgsmaprender.h"
#include "qgsapplication.h"

// qt includes
#include <QPainter>
#include <QMenu>
#include <QDir>

//non qt includes
#include <iostream>
Expand Down Expand Up @@ -110,15 +112,13 @@ void QgsNorthArrowPlugin::initGui()

void QgsNorthArrowPlugin::projectRead()
{
#ifdef QGISDEBUG
std::cout << "+++++++++ north arrow plugin - project read slot called...." << std::endl;
#endif
//default text to start with - try to fetch it from qgsproject
QgsDebugMsg("+++++++++ north arrow plugin - project read slot called....");
//default text to start with - try to fetch it from qgsproject

mRotationInt = QgsProject::instance()->readNumEntry("NorthArrow","/Rotation",0);
mPlacementIndex = QgsProject::instance()->readNumEntry("NorthArrow","/Placement",0);
mEnable = QgsProject::instance()->readBoolEntry("NorthArrow","/Enabled",true);
mAutomatic = QgsProject::instance()->readBoolEntry("NorthArrow","/Automatic",true);
mRotationInt = QgsProject::instance()->readNumEntry("NorthArrow","/Rotation",0);
mPlacementIndex = QgsProject::instance()->readNumEntry("NorthArrow","/Placement",0);
mEnable = QgsProject::instance()->readBoolEntry("NorthArrow","/Enabled",true);
mAutomatic = QgsProject::instance()->readBoolEntry("NorthArrow","/Automatic",true);
}

//method defined in interface
Expand Down Expand Up @@ -156,18 +156,25 @@ void QgsNorthArrowPlugin::refreshCanvas()

void QgsNorthArrowPlugin::renderNorthArrow(QPainter * theQPainter)
{
#ifdef QGISDEBUG
std::cout << "Rendering n-arrow" << std::endl;
#endif

//Large IF statement controlled by enable check box
if (mEnable)
{
if (theQPainter->isActive())
{
QgsDebugMsg("Rendering north arrow on active painter");
}
else
{
QgsDebugMsg("Rendering north arrow on INactive painter!!!");
}

QPixmap myQPixmap; //to store the north arrow image in

QString myFileNameQString = QgsApplication::pkgDataPath() +
"/images/north_arrows/default.png";
QString myFileNameQString = QDir::cleanPath( QgsApplication::pkgDataPath() +
"/images/north_arrows/default.png" );

//std::cout << "Trying to load " << myFileNameQString << std::cout;
QgsDebugMsg("Trying to load " + myFileNameQString);
if (myQPixmap.load(myFileNameQString))
{

Expand Down Expand Up @@ -200,9 +207,8 @@ void QgsNorthArrowPlugin::renderNorthArrow(QPainter * theQPainter)
int myHeight = theQPainter->device()->height();
int myWidth = theQPainter->device()->width();

#ifdef QGISDEBUG
std::cout << "Rendering n-arrow at " << mPlacementLabels.at(mPlacementIndex).toLocal8Bit().data() << std::endl;
#endif
QgsDebugMsg("Rendering north arrow at " + mPlacementLabels.at(mPlacementIndex));

//Determine placement of label from form combo box
switch (mPlacementIndex)
{
Expand All @@ -221,8 +227,7 @@ void QgsNorthArrowPlugin::renderNorthArrow(QPainter * theQPainter)
myHeight-myQPixmap.height());
break;
default:
std::cout << "Unable to determine where to put north arrow so defaulting to top left"
<< std::endl;
QgsDebugMsg("Unable to determine where to put north arrow so defaulting to top left");
}
//rotate the canvas by the north arrow rotation amount
theQPainter->rotate( mRotationInt );
Expand Down Expand Up @@ -321,6 +326,7 @@ bool QgsNorthArrowPlugin::calculateNorthDirection()
{
UNUSED(e);
// just give up
QgsDebugMsg("Transformation error, quitting");
return false;
}

Expand Down

0 comments on commit f415fde

Please sign in to comment.