Changeset 227 for trunk/src/IMainView.h

Show
Ignore:
Timestamp:
06/12/06 16:40:59 (2 years ago)
Author:
jordi
Message:

The MainView? now has a separate widget for the current page number and the total page number, as requested in bug #37 closed in this revision.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/IMainView.h

    r213 r227  
    356356 
    357357            /// 
     358            /// @brief Sets the text for the number of pages. 
     359            /// 
     360            /// The view displays the number of pages separately 
     361            /// of the current page. This function should set the 
     362            /// text to display in this separate control. 
     363            /// 
     364            /// @param text The text to set as the number of pages. 
     365            /// 
     366            virtual void setNumberOfPagesText (const gchar *text) = 0; 
     367 
     368            /// 
    358369            /// @brief Sets the text of the status bar. 
    359370            /// 
     
    436447            /// 
    437448            virtual void showToolbar (gboolean show) = 0; 
    438  
    439             /// 
    440             /// @brief Gives the number of pages that the document has. 
    441             /// 
    442             /// The view should keep a the number of total pages and show it 
    443             /// to the user. 
    444             /// 
    445             /// @param pages The total number of pages the document has. 
    446             /// 
    447             virtual void setTotalPages (gint pages) = 0; 
    448449 
    449450            ///