mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
26 lines
611 B
Plaintext
26 lines
611 B
Plaintext
/** 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);
|
|
};
|
|
|