Skip to content

Commit

Permalink
Added missing sip file for quickprint
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7988 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Jan 17, 2008
1 parent 4c20f9c commit e1056e7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions 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 <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);
};

0 comments on commit e1056e7

Please sign in to comment.