Le dialogue d'impression presente desormais les memes options que le dialogue d'export.

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@759 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavier
2009-10-04 01:32:45 +00:00
parent 3e383237c1
commit b72419181c
4 changed files with 64 additions and 12 deletions

View File

@@ -20,6 +20,7 @@
#include <QtGui>
#include "qetproject.h"
#include "diagram.h"
#include "exportproperties.h"
/**
Cette classe represente le dialogue de configuration de l'impression d'un
schema electrique.
@@ -49,10 +50,11 @@ class DiagramPrintDialog : public QWidget {
private:
void buildPrintTypeDialog();
void buildDialog();
void saveReloadDiagramParameters(Diagram *, const ExportProperties, bool);
private slots:
void print(const QList<Diagram *> &, bool, QPrinter *);
void printDiagram(Diagram *, bool, QPainter *, QPrinter * = 0);
void print(const QList<Diagram *> &, bool, const ExportProperties, QPrinter *);
void printDiagram(Diagram *, bool, const ExportProperties, QPainter *, QPrinter * = 0);
void updatePrintTypeDialog();
void acceptPrintTypeDialog();
void browseFilePrintTypeDialog();