Changeset 232 for trunk/src/IPrintView.h

Show
Ignore:
Timestamp:
06/13/06 15:50:59 (2 years ago)
Author:
jordi
Message:

Added the Color Model options to the print view.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/IPrintView.h

    r231 r232  
    6262 
    6363            /// 
     64            /// @brief Adds a new color model to the list. 
     65            /// 
     66            /// @param name The possibly translated name of the color model. 
     67            /// @param value The value the ePDFView internally uses to know 
     68            ///              which colorModel is. 
     69            /// 
     70            virtual void addColorModel (const gchar *name, 
     71                                        const gchar *value) = 0; 
     72  
     73 
     74            /// 
    6475            /// @brief Adds a new page size to the list. 
    6576            /// 
     
    97108 
    98109            /// 
     110            /// @brief Deletes all color models from the list of color modes. 
     111            /// 
     112            virtual void clearColorModelList (void) = 0; 
     113 
     114            /// 
    99115            /// @brief Deletes all sizes from the list of page sizes. 
    100116            /// 
     
    186202 
    187203            /// 
     204            /// @brief Select a color model. 
     205            /// 
     206            /// @param colorModelIndex The index of the color model to select. 
     207            /// 
     208            virtual void selectColorModel (guint colorModelIndex) = 0; 
     209 
     210            /// 
    188211            /// @brief Selects a page size. 
    189212            ///