mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
Added missing sip file for quickprint
git-svn-id: http://svn.osgeo.org/qgis/trunk@7988 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
c0cc6ebce9
commit
16b10693e6
25
python/gui/qgsquickprint.sip
Normal file
25
python/gui/qgsquickprint.sip
Normal file
@ -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);
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user