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/gtk/PrintView.cxx

    r232 r233  
    177177} 
    178178 
     179gchar * 
     180PrintView::getColorModel () 
     181{ 
     182    gchar *colorModel = NULL; 
     183    getOptionFromComboBox (m_ColorModelView, &colorModel); 
     184    return colorModel; 
     185} 
     186 
    179187PrintPageLayout 
    180188PrintView::getPageLayout () 
     
    205213    getOptionFromComboBox (m_PageSizeView, &pageSize); 
    206214    return pageSize; 
     215} 
     216 
     217gchar * 
     218PrintView::getResolution () 
     219{ 
     220    gchar *resolution = NULL; 
     221    getOptionFromComboBox (m_ResolutionView, &resolution); 
     222    return resolution; 
    207223} 
    208224