Changeset 233 for trunk/src/JobPrint.h
- Timestamp:
- 06/13/06 16:11:47 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/JobPrint.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/JobPrint.h
r223 r233 64 64 65 65 gboolean getCollate (void); 66 const gchar *getColorModel (void); 66 67 IDocument &getDocument (void); 67 68 guint getNumberOfCopies (void); … … 69 70 PrintPageOrientation getPageOrientation (void); 70 71 const gchar *getPrinterName (void); 72 const gchar *getResolution (void); 71 73 const gchar *getTempFileName (void); 72 74 virtual gboolean run (void); 73 75 void setCollate (gboolean collate); 76 void setColorModel (const gchar *colorModel); 74 77 void setDocument (IDocument *document); 75 78 void setNumberOfCopies (guint copies); … … 80 83 void setPageSize (gfloat pageWidth, gfloat pageHeight); 81 84 void setPrinterName (const gchar *name); 85 void setResolution (const gchar *resolution); 82 86 void setUpPrint (void); 83 87 84 88 protected: 85 89 gboolean m_Collate; 90 gchar *m_ColorModel; 86 91 guint m_CurrentPage; 87 92 IDocument *m_Document; … … 94 99 gchar *m_PageRangeString; 95 100 PrintPageSet m_PageSet; 101 gchar *m_Resolution; 96 102 gfloat m_PageWidth; 97 103 gchar *m_PrinterName;
