Changeset 205 for trunk/tests/DumbMainView.cxx
- Timestamp:
- 06/10/06 05:34:50 (2 years ago)
- Files:
-
- 1 modified
-
trunk/tests/DumbMainView.cxx (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/DumbMainView.cxx
r177 r205 73 73 g_free (m_Title); 74 74 } 75 76 void 75 76 void 77 77 DumbMainView::activeZoomFit (gboolean active) 78 78 { … … 80 80 } 81 81 82 void 82 void 83 83 DumbMainView::activeZoomWidth (gboolean active) 84 84 { … … 97 97 return m_PageView; 98 98 } 99 99 100 IPreferencesView * 101 DumbMainView::getPreferencesView () 102 { 103 return (IPreferencesView *)0; 104 } 105 100 106 gchar * 101 107 DumbMainView::openFileDialog (const gchar *lastFolder) … … 113 119 } 114 120 121 gchar * 122 DumbMainView::saveFileDialog (const gchar *lastFolder) 123 { 124 // Do nothing. 125 return g_strdup (""); 126 } 127 115 128 void 116 129 DumbMainView::sensitiveGoToFirstPage (gboolean sensitive) … … 166 179 } 167 180 168 void 181 void 169 182 DumbMainView::sensitiveRotateRight (gboolean sensitive) 170 183 { 171 184 m_SensitiveRotateRight = sensitive; 185 } 186 187 void 188 DumbMainView::sensitiveSave (gboolean sensitive) 189 { 190 } 191 192 void 193 DumbMainView::sensitiveZoom (gboolean sensitive) 194 { 172 195 } 173 196 … … 200 223 { 201 224 return (const gchar *)m_GoToPageText; 225 } 226 227 const gchar * 228 DumbMainView::getZoomText () 229 { 230 return ""; 202 231 } 203 232 … … 236 265 void 237 266 DumbMainView::setStatusBarText (const gchar *text) 267 { 268 } 269 270 void 271 DumbMainView::setZoomText (const gchar *text) 238 272 { 239 273 }
