Changeset 234


Ignore:
Timestamp:
Aug 25, 2007, 2:04:44 PM (18 years ago)
Author:
Eugene Romanenko
Message:

return dot to wildcard, small interface fixes

Location:
trunk/Lucide/SOURCE/gui
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/Lucide/SOURCE/gui/docViewer.cpp

    r225 r234  
    286286
    287287    DosReleaseMutexSem( todrawAccess );
     288   
     289    WinInvalidateRect( hWndDocFrame, NULL, TRUE );
    288290}
    289291
  • TabularUnified trunk/Lucide/SOURCE/gui/lucide.cpp

    r230 r234  
    245245}
    246246
    247 void Lucide::checkMenus()
    248 {
    249     // pre-set "Actual size"
    250     setZoomChecks( CM_ACTSIZE, 0, 0 );
     247void Lucide::checkMenus( bool initial )
     248{
     249    if ( initial )
     250    {
     251        // pre-set "Actual size"
     252        setZoomChecks( CM_ACTSIZE, 0, 0 );
     253    }
    251254
    252255    if ( doc == NULL )
    253256    {
    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        }
    256262
    257263        WinEnableMenuItem( hWndMenu, CM_SAVEAS, FALSE );
     
    338344    docViewer->setDocument( _doc );
    339345    indexWin->setDocument( _doc );
    340     checkMenus();
     346    checkMenus( false );
    341347}
    342348
     
    362368    doc = NULL;
    363369    WinSetWindowText( hWndFrame, title );
     370    checkMenus( false );
    364371
    365372    if ( thumbnailData != NULL ) {
     
    12081215                MPFROMSHORT( DEFAULT_PICTSIZE + TOOLBAR_HEIGHT_ADD ), MPVOID );
    12091216
    1210     Lucide::checkMenus();
     1217    Lucide::checkMenus( true );
    12111218    Lucide::setPageLayout( settings->layout );
    12121219    Lucide::setZoom( settings->zoom );
  • TabularUnified trunk/Lucide/SOURCE/gui/lucide.h

    r222 r234  
    9797        static void checkNavigationMenus();
    9898        static void checkZoomMenus();
    99         static void checkMenus();
     99        static void checkMenus( bool initial );
    100100        static void checkNavpane();
    101101        static void goToPage( long page );
  • TabularUnified trunk/Lucide/SOURCE/gui/pluginman.cpp

    r230 r234  
    310310        char *p = strtok( tmpexts, ";" );
    311311        while ( p != NULL ) {
    312             cRet += '*';
     312            cRet += "*.";
    313313            cRet += p;
    314314            cRet += ';';
Note: See TracChangeset for help on using the changeset viewer.