bool ReaderViewNative::openRecentBook() { CRLog::debug("ReaderViewNative::openRecentBook()"); int index = 0; if ( _docview->isDocumentOpened() ) { CRLog::debug("ReaderViewNative::openRecentBook() : saving previous document state"); _docview->swapToCache(); _docview->getDocument()->updateMap(); _docview->savePosition(); closeBook(); index = 1; } LVPtrVector<CRFileHistRecord> & files = _docview->getHistory()->getRecords(); CRLog::info("ReaderViewNative::openRecentBook() : %d files found in history, startIndex=%d", files.length(), index); if ( index < files.length() ) { CRFileHistRecord * file = files.get( index ); lString16 fn = file->getFilePathName(); CRLog::info("ReaderViewNative::openRecentBook() : checking file %s", LCSTR(fn)); // TODO: check error if ( LVFileExists(fn) ) { return loadDocument( fn ); } else { CRLog::error("file %s doesn't exist", LCSTR(fn)); return false; } //_docview->swapToCache(); } else { CRLog::info("ReaderViewNative::openRecentBook() : no recent book found in history"); } return false; }
void V3DocViewWin::openRecentBook( int index ) { _docview->savePosition(); LVPtrVector<CRFileHistRecord> & files = _docview->getHistory()->getRecords(); if ( index >= 1 && index < files.length() ) { CRFileHistRecord * file = files.get( index ); lString16 fn = file->getFilePathName(); // TODO: check error if ( LVFileExists(fn) ) { //showWaitIcon(); loadDocument( fn ); } //_docview->swapToCache(); } }