Changeset 99 for trunk/tests/DumbMainView.cxx
- Timestamp:
- 04/20/06 13:09:22 (3 years ago)
- Files:
-
- 1 modified
-
trunk/tests/DumbMainView.cxx (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/DumbMainView.cxx
r97 r99 53 53 m_TimesShownPassword = 0; 54 54 m_TotalPages = 0; 55 m_ZoomToFit = FALSE; 56 m_ZoomToWidth = FALSE; 55 57 } 56 58 … … 64 66 } 65 67 68 void 69 DumbMainView::activeZoomFit (gboolean active) 70 { 71 m_ZoomToFit = active; 72 } 73 74 void 75 DumbMainView::activeZoomWidth (gboolean active) 76 { 77 m_ZoomToWidth = active; 78 } 79 66 80 gchar * 67 81 DumbMainView::openFileDialog (const gchar *lastFolder) … … 348 362 { 349 363 return m_ShownSidebar; 364 } 365 366 gboolean 367 DumbMainView::isZoomToFitActive () 368 { 369 return m_ZoomToFit; 370 } 371 372 gboolean 373 DumbMainView::isZoomToWidthActive () 374 { 375 return m_ZoomToWidth; 350 376 } 351 377
