Changeset 49 for trunk/src/MainPter.cxx

Show
Ignore:
Timestamp:
04/13/06 05:47:01 (3 years ago)
Author:
jordi
Message:

Added the doxygen documentation builder file in the "doc" directory. I've also wirtten the missing documentation for all files in "src", but not in "src/gtk" a it would be redundant.

Also I've been paranoic on spelling (I'm a very bad spelled) and spell checked all source files, changing some string. Updated the translations.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/MainPter.cxx

    r43 r49  
    5858 
    5959/// 
    60 /// @brief Initializes the view with the initial application's state. 
    61 /// 
    62 /// Normally that will make all action except open insensitive, will 
    63 /// set the window's title and make the main view to show itself. 
     60/// @brief Initialises the view with the initial application's state. 
     61/// 
     62/// Normally that will make all action except "Open File" insensitive, will 
     63/// set the window's title and tell the main view to show itself. 
    6464/// 
    6565void 
     
    126126/// 
    127127/// @param view The view that will receive the user events for the presenter. 
     128///             This view will be deleted by the presenter. 
    128129/// 
    129130void 
     
    181182/// 
    182183/// This action is activated when the user presses the Enter key on 
    183 /// the displayed current apge number. The user can change the value, 
     184/// the displayed current page number. The user can change the value, 
    184185/// and the page will change to that value. 
    185186/// 
     
    221222/// 
    222223/// This means that the user wants to open a new file. The presenter 
    223 /// asks the view to show the Open File dialog and return a filename. 
     224/// asks the view to show the Open File dialog and return a file name. 
    224225/// Then we'll try to open the file and if it's correct we'll show it,  
    225226/// otherwise it will request the view to show an error dialog or a  
     
    398399    view.sensitiveGoToLastPage (m_Document->getNumPages() > currentPage); 
    399400    view.sensitiveGoToNextPage (m_Document->getNumPages() > currentPage); 
    400     // And the zoom sentitivity. 
     401    // And the zoom sensitivity. 
    401402    view.sensitiveZoomIn (m_Document->canZoomIn ()); 
    402403    view.sensitiveZoomOut (m_Document->canZoomOut ());