Changeset 49 for trunk/src/MainPter.cxx
- Timestamp:
- 04/13/06 05:47:01 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/MainPter.cxx (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/MainPter.cxx
r43 r49 58 58 59 59 /// 60 /// @brief Initiali zes the view with the initial application's state.61 /// 62 /// Normally that will make all action except openinsensitive, will63 /// set the window's title and makethe 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. 64 64 /// 65 65 void … … 126 126 /// 127 127 /// @param view The view that will receive the user events for the presenter. 128 /// This view will be deleted by the presenter. 128 129 /// 129 130 void … … 181 182 /// 182 183 /// 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, 184 185 /// and the page will change to that value. 185 186 /// … … 221 222 /// 222 223 /// 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 file name.224 /// asks the view to show the Open File dialog and return a file name. 224 225 /// Then we'll try to open the file and if it's correct we'll show it, 225 226 /// otherwise it will request the view to show an error dialog or a … … 398 399 view.sensitiveGoToLastPage (m_Document->getNumPages() > currentPage); 399 400 view.sensitiveGoToNextPage (m_Document->getNumPages() > currentPage); 400 // And the zoom sen titivity.401 // And the zoom sensitivity. 401 402 view.sensitiveZoomIn (m_Document->canZoomIn ()); 402 403 view.sensitiveZoomOut (m_Document->canZoomOut ());
