Changeset 233 for trunk/src/JobPrint.h

Show
Ignore:
Timestamp:
06/13/06 16:11:47 (2 years ago)
Author:
jordi
Message:

The JobPrint? now implements the new Resolution and ColorMode?.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/JobPrint.h

    r223 r233  
    6464 
    6565            gboolean getCollate (void); 
     66            const gchar *getColorModel (void); 
    6667            IDocument &getDocument (void); 
    6768            guint getNumberOfCopies (void); 
     
    6970            PrintPageOrientation getPageOrientation (void); 
    7071            const gchar *getPrinterName (void); 
     72            const gchar *getResolution (void); 
    7173            const gchar *getTempFileName (void); 
    7274            virtual gboolean run (void); 
    7375            void setCollate (gboolean collate); 
     76            void setColorModel (const gchar *colorModel); 
    7477            void setDocument (IDocument *document); 
    7578            void setNumberOfCopies (guint copies); 
     
    8083            void setPageSize (gfloat pageWidth, gfloat pageHeight); 
    8184            void setPrinterName (const gchar *name); 
     85            void setResolution (const gchar *resolution); 
    8286            void setUpPrint (void); 
    8387 
    8488        protected: 
    8589            gboolean m_Collate; 
     90            gchar *m_ColorModel; 
    8691            guint m_CurrentPage; 
    8792            IDocument *m_Document; 
     
    9499            gchar *m_PageRangeString; 
    95100            PrintPageSet m_PageSet; 
     101            gchar *m_Resolution; 
    96102            gfloat m_PageWidth; 
    97103            gchar *m_PrinterName;