Changeset 216 for trunk/src/IPrintView.h

Show
Ignore:
Timestamp:
06/10/06 18:42:54 (2 years ago)
Author:
jordi
Message:

Added a test suite for the PrintPter? and a Dumb view for testing purposes. I've created the first test that checks the initial control's sensitivity.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/IPrintView.h

    r213 r216  
    6161            } 
    6262 
     63            /// 
     64            /// @brief Changes the sensitivity of the "Collate" option. 
     65            /// 
     66            /// The view must change the sensitivity (it's called enabled or 
     67            /// disabled on some toolkits) of the "Collate" option. 
     68            /// 
     69            /// @param sensitive Set to TRUE to make sensitive (enable) the 
     70            ///                  option or FALSE to insensitive (disable) it. 
     71            /// 
     72            virtual void sensitiveCollate (gboolean sensitive) = 0; 
     73 
     74            /// 
     75            /// @brief Changes the sensitivity of the "Page Range" entry. 
     76            /// 
     77            /// The view must change the sensitivity (it's called enabled or 
     78            /// disabled on some toolkits) of the "Page Range" entry. 
     79            /// 
     80            /// @param sensitive Set to TRUE if need to make sensitive (enable) 
     81            ///                  the entry or FALSE to insensitive (disable) it. 
     82            /// 
     83            virtual void sensitivePageRange (gboolean sensitive) = 0; 
     84 
    6385        protected: 
    6486            /// The presenter that controls the view.