-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
timlinux
committed
Jan 17, 2008
1 parent
4c20f9c
commit e1056e7
Showing
1 changed file
with
25 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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); | ||
}; | ||
|