Changeset 234
- Timestamp:
- Aug 25, 2007, 2:04:44 PM (18 years ago)
- Location:
- trunk/Lucide/SOURCE/gui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/Lucide/SOURCE/gui/docViewer.cpp ¶
r225 r234 286 286 287 287 DosReleaseMutexSem( todrawAccess ); 288 289 WinInvalidateRect( hWndDocFrame, NULL, TRUE ); 288 290 } 289 291 -
TabularUnified trunk/Lucide/SOURCE/gui/lucide.cpp ¶
r230 r234 245 245 } 246 246 247 void Lucide::checkMenus() 248 { 249 // pre-set "Actual size" 250 setZoomChecks( CM_ACTSIZE, 0, 0 ); 247 void Lucide::checkMenus( bool initial ) 248 { 249 if ( initial ) 250 { 251 // pre-set "Actual size" 252 setZoomChecks( CM_ACTSIZE, 0, 0 ); 253 } 251 254 252 255 if ( doc == NULL ) 253 256 { 254 // "single page" mode by default 255 WinCheckMenuItem( hWndMenu, CM_SINGLEPAGE, TRUE ); 257 if ( initial ) 258 { 259 // "single page" mode by default 260 WinCheckMenuItem( hWndMenu, CM_SINGLEPAGE, TRUE ); 261 } 256 262 257 263 WinEnableMenuItem( hWndMenu, CM_SAVEAS, FALSE ); … … 338 344 docViewer->setDocument( _doc ); 339 345 indexWin->setDocument( _doc ); 340 checkMenus( );346 checkMenus( false ); 341 347 } 342 348 … … 362 368 doc = NULL; 363 369 WinSetWindowText( hWndFrame, title ); 370 checkMenus( false ); 364 371 365 372 if ( thumbnailData != NULL ) { … … 1208 1215 MPFROMSHORT( DEFAULT_PICTSIZE + TOOLBAR_HEIGHT_ADD ), MPVOID ); 1209 1216 1210 Lucide::checkMenus( );1217 Lucide::checkMenus( true ); 1211 1218 Lucide::setPageLayout( settings->layout ); 1212 1219 Lucide::setZoom( settings->zoom ); -
TabularUnified trunk/Lucide/SOURCE/gui/lucide.h ¶
r222 r234 97 97 static void checkNavigationMenus(); 98 98 static void checkZoomMenus(); 99 static void checkMenus( );99 static void checkMenus( bool initial ); 100 100 static void checkNavpane(); 101 101 static void goToPage( long page ); -
TabularUnified trunk/Lucide/SOURCE/gui/pluginman.cpp ¶
r230 r234 310 310 char *p = strtok( tmpexts, ";" ); 311 311 while ( p != NULL ) { 312 cRet += '*';312 cRet += "*."; 313 313 cRet += p; 314 314 cRet += ';';
Note:
See TracChangeset
for help on using the changeset viewer.