Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Added missing sip file for quickprint
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7988 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,25 @@ | ||
/** QgsQuickPrint is a convenience class to quickly print a | ||
preformatted map to pdf. | ||
*/ | ||
class QgsQuickPrint : QObject | ||
{ | ||
%TypeHeaderCode | ||
#include <qgsquickprint.h> | ||
%End | ||
public: | ||
QgsQuickPrint(); | ||
//! Destructor | ||
virtual ~QgsQuickPrint(); | ||
|
||
public slots: | ||
void printMap(); | ||
void setTitle(QString theText); | ||
void setName(QString theText); | ||
void setCopyright(QString theText); | ||
void setNorthArrow(QString theFileName); | ||
void setLogo1(QString theFileName); | ||
void setLogo2(QString theFileName); | ||
void setOutputPdf(QString theFileName); | ||
void setMapCanvas(QgsMapCanvas * thepMapCanvas); | ||
}; | ||
|