From 16b10693e618ba23e25d5537338519910bf3cab7 Mon Sep 17 00:00:00 2001 From: timlinux Date: Thu, 17 Jan 2008 01:01:02 +0000 Subject: [PATCH] Added missing sip file for quickprint git-svn-id: http://svn.osgeo.org/qgis/trunk@7988 c8812cc2-4d05-0410-92ff-de0c093fc19c --- python/gui/qgsquickprint.sip | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 python/gui/qgsquickprint.sip diff --git a/python/gui/qgsquickprint.sip b/python/gui/qgsquickprint.sip new file mode 100644 index 00000000000..b8f372ae247 --- /dev/null +++ b/python/gui/qgsquickprint.sip @@ -0,0 +1,25 @@ +/** QgsQuickPrint is a convenience class to quickly print a + preformatted map to pdf. + */ +class QgsQuickPrint : QObject +{ +%TypeHeaderCode +#include +%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); +}; +