Changeset 219 for trunk/src/IPrintView.h

Show
Ignore:
Timestamp:
06/11/06 07:51:00 (2 years ago)
Author:
jordi
Message:

The PrintPter? class now retrieves the list of printers from cups and sends them to the view. I also added the PrintPter?.cxx function in the POTFILES file.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/IPrintView.h

    r218 r219  
    6262 
    6363            /// 
     64            /// @brief Adds a new printer to the list of printer. 
     65            /// 
     66            /// The presenter will get the list of printers from the 
     67            /// system and call this function for each one it finds. 
     68            /// 
     69            /// @param name The name of the printer. 
     70            /// @param job The number of jobs the printer currently has active. 
     71            /// @param state The current printer's state. 
     72            /// @param location The printer's location. 
     73            /// 
     74            virtual void addPrinter (const gchar *name, int jobs, 
     75                                     const gchar *state, 
     76                                     const gchar *location) = 0; 
     77 
     78            /// 
    6479            /// @brief Gets the number of copies to do. 
    6580            ///