Show
Ignore:
Timestamp:
06/10/06 19:50:31 (2 years ago)
Author:
jordi
Message:

The page range sensitivity is also implemented as well as the callback function for it and the collate sensitivity and the tests for both.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/DumbPrintView.cxx

    r217 r218  
    2424    IPrintView () 
    2525{ 
     26    m_AllPagesRangeOptionSelected = TRUE; 
    2627    m_NumberOfCopies = 1; 
    2728    m_SensitiveCollate = TRUE; 
     
    3738{ 
    3839    return m_NumberOfCopies; 
     40} 
     41 
     42gboolean 
     43DumbPrintView::isSelectedAllPagesRangeOption () 
     44{ 
     45    return m_AllPagesRangeOptionSelected; 
    3946} 
    4047 
     
    6875 
    6976void 
     77DumbPrintView::selectAllPagesRangeOption () 
     78{ 
     79    m_AllPagesRangeOptionSelected = TRUE; 
     80} 
     81 
     82void 
     83DumbPrintView::selectCustomPagesRangeOption () 
     84{ 
     85    m_AllPagesRangeOptionSelected = FALSE; 
     86} 
     87 
     88void 
    7089DumbPrintView::setNumberOfCopies (unsigned int copies) 
    7190{