2004-08-26 21:17:24 +00:00
/***************************************************************************
* Copyright ( C ) 2002 by Wilco Greven < greven @ kde . org > *
* Copyright ( C ) 2002 by Chris Cheney < ccheney @ cheney . cx > *
* Copyright ( C ) 2002 by Malcolm Hunter < malcolm . hunter @ gmx . co . uk > *
* Copyright ( C ) 2003 - 2004 by Christophe Devriese *
* < Christophe . Devriese @ student . kuleuven . ac . be > *
* Copyright ( C ) 2003 by Daniel Molkentin < molkentin @ kde . org > *
* Copyright ( C ) 2003 by Andy Goossens < andygoossens @ telenet . be > *
* Copyright ( C ) 2003 by Dirk Mueller < mueller @ kde . org > *
* Copyright ( C ) 2003 by Laurent Montel < montel @ kde . org > *
* Copyright ( C ) 2004 by Dominique Devriese < devriese @ kde . org > *
* Copyright ( C ) 2004 by Christoph Cullmann < crossfire @ babylon2k . de > *
* Copyright ( C ) 2004 by Henrique Pinto < stampede @ coltec . ufmg . br > *
* Copyright ( C ) 2004 by Waldo Bastian < bastian @ kde . org > *
2008-03-17 23:02:33 +00:00
* Copyright ( C ) 2004 - 2008 by Albert Astals Cid < aacid @ kde . org > *
2004-09-02 18:11:19 +00:00
* Copyright ( C ) 2004 by Antti Markus < antti . markus @ starman . ee > *
2004-08-26 21:17:24 +00:00
* *
* This program is free software ; you can redistribute it and / or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation ; either version 2 of the License , or *
* ( at your option ) any later version . *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-04-19 18:30:20 +00:00
# include "part.h"
2005-01-02 14:55:14 +00:00
// qt/kde includes
2007-01-05 19:02:39 +00:00
# include <qapplication.h>
2007-08-21 23:18:17 +00:00
# include <qfile.h>
2004-09-09 13:25:40 +00:00
# include <qlayout.h>
# include <qlabel.h>
2007-12-07 15:40:25 +00:00
# include <qtimer.h>
2007-10-15 23:01:27 +00:00
# include <QtGui/QPrinter>
# include <QtGui/QPrintDialog>
2006-03-24 21:31:46 +00:00
# include <kvbox.h>
2007-03-07 18:15:00 +00:00
# include <kaboutapplicationdialog.h>
2002-08-30 09:14:01 +00:00
# include <kaction.h>
2006-05-13 14:59:50 +00:00
# include <kactioncollection.h>
2004-12-01 22:18:27 +00:00
# include <kdirwatch.h>
2006-12-19 12:23:43 +00:00
# include <kstandardaction.h>
2002-08-30 09:14:01 +00:00
# include <kparts/genericfactory.h>
2004-08-28 17:59:17 +00:00
# include <kfiledialog.h>
2004-08-28 14:18:45 +00:00
# include <kmessagebox.h>
2004-09-09 13:25:40 +00:00
# include <knuminput.h>
2004-09-16 21:27:34 +00:00
# include <kio/netaccess.h>
2006-03-24 22:57:41 +00:00
# include <kmenu.h>
2004-12-04 23:23:18 +00:00
# include <kxmlguiclient.h>
# include <kxmlguifactory.h>
2006-05-22 14:02:24 +00:00
# include <kservicetypetrader.h>
2005-07-15 18:20:57 +00:00
# include <kstandarddirs.h>
2007-05-06 11:23:26 +00:00
# include <kstandardshortcut.h>
2006-10-16 17:57:44 +00:00
# include <ktemporaryfile.h>
2006-05-08 18:57:49 +00:00
# include <ktoggleaction.h>
2006-05-13 14:59:50 +00:00
# include <ktogglefullscreenaction.h>
2005-11-04 11:59:51 +00:00
# include <kio/job.h>
2006-08-05 10:35:03 +00:00
# include <kicon.h>
2007-01-12 23:54:26 +00:00
# include <kfilterdev.h>
2009-12-26 16:23:36 +00:00
#if 0
2007-07-19 22:27:45 +00:00
# include <knewstuff2/engine.h>
2009-12-26 16:23:36 +00:00
# endif
2007-10-15 23:01:27 +00:00
# include <kdeprintdialog.h>
2007-10-18 20:25:33 +00:00
# include <kprintpreview.h>
2007-01-12 23:54:26 +00:00
2005-01-02 14:55:14 +00:00
// local includes
2007-03-10 23:45:12 +00:00
# include "aboutdata.h"
2008-04-01 09:10:46 +00:00
# include "extensions.h"
2005-01-02 14:29:37 +00:00
# include "ui/pageview.h"
# include "ui/toc.h"
2005-03-24 19:50:28 +00:00
# include "ui/searchwidget.h"
# include "ui/thumbnaillist.h"
# include "ui/side_reviews.h"
2005-01-26 10:42:07 +00:00
# include "ui/minibar.h"
2006-05-28 16:54:54 +00:00
# include "ui/embeddedfilesdialog.h"
2005-01-02 14:29:37 +00:00
# include "ui/propertiesdialog.h"
# include "ui/presentationwidget.h"
2006-10-15 19:37:14 +00:00
# include "ui/pagesizelabel.h"
2006-12-27 16:04:49 +00:00
# include "ui/bookmarklist.h"
2007-03-17 22:58:41 +00:00
# include "ui/findbar.h"
2007-08-06 17:24:10 +00:00
# include "ui/sidebar.h"
2007-12-03 00:17:12 +00:00
# include "ui/fileprinterpreview.h"
2007-12-24 15:02:32 +00:00
# include "ui/guiutils.h"
2005-01-02 14:29:37 +00:00
# include "conf/preferencesdialog.h"
2006-03-28 22:22:10 +00:00
# include "settings.h"
2007-01-13 17:28:54 +00:00
# include "core/bookmarkmanager.h"
2005-01-02 14:29:37 +00:00
# include "core/document.h"
- Page/Link: tooltips for links backported
- Page: rotation does not switch height and width
- Document/Part/Generator:
1. Add API for attaching stuff to the interface: ActionCollection and the Navigation Panel
also add possibility to merge an XML .rc file with menu layout. Relevant functions are:
QString Generator::getXMLFile(), returns a QString with your .rc file name.
void Generator::setupGUI (KActionCollection* , QToolbox* ), add your components to the user interface
2. Supporting backend settings:
If during startup, backends which provide a configuration ([X-KDE-oKularHasInternalSettings]
set to true) are found, a menu item: configure backends is created, clicking on it results in
loading all the generators that have settings, but not those that dont. the Generator::addPages(KConfigDialog *dlg)
function should be overloaded by a generator and dlg->addPage should be used to add pages.
If a user opens a file that needs an already loaded generator, the already loaded one is used instead of loading another.
3. Error/Warning/Notice sending support, to send a notice/error/warning, add a relevant notice/error/warning(QString& txt ,int duration)
to the generator class, and sending a message to the user is as simple as emitting a signal!
4. Intercepting of events generated by the PageView is done by Generator::handleEvent(QEvent*), subclass it, do a switch on QEvent::type(), handle your
event and return true if pageview is to proceed with its handling or false if not.
5. Support configuring the KPrinter on the generator side, use Generator::canConfigurePrinter(), return true there, and you get a nonconfigured KPrinter in your
Generator::print()
6. PixmapRequest handling update:
a.) Generator::canGeneratePixmap is now Generator::canGeneratePixmap(bool async)
b.) Document::sendGeneratorRequests is a slot now
c.) Old way of sending pixmaps (Document::requestPixmaps(QValueList<PixmapRequest*> checking if we can generate pixmap if not, waiting for receiving)
is replaced with: requestPixmaps only queues the pixmap all checking if w can generate is done in sendGeneratorReqest, the sendGeneratorRequest is
run in three places:
1. in requestPixmaps when we receive a request
2. in requestDone if pixmapStack is not empty
3. sendGeneratorRequest, apart from removing invalid requests, takes the current request and if generator canGeratePixmap(request->async)
it removes the pixmap from stack and sends to generator if not, QTimer::singleshots to itself after 20ms, it ends when stack has no valid pixmap request
7. Added a commented out zoom field to PixmapGenerator, mightcome in handy sometime
- TextPage: add instructions that handle simplyfing the RegularAreaRect, no more double painted borders in selection rectangles, this rocks.
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=445196
2005-08-10 16:14:39 +00:00
# include "core/generator.h"
2005-01-02 14:29:37 +00:00
# include "core/page.h"
2007-11-26 21:43:54 +00:00
# include "core/fileprinter.h"
2003-06-28 01:59:03 +00:00
2008-06-07 21:08:41 +00:00
# include <cstdio>
class FileKeeper
{
public :
FileKeeper ( )
: m_handle ( NULL )
{
}
~ FileKeeper ( )
{
}
void open ( const QString & path )
{
if ( ! m_handle )
m_handle = std : : fopen ( QFile : : encodeName ( path ) , " r " ) ;
}
void close ( )
{
if ( m_handle )
{
int ret = std : : fclose ( m_handle ) ;
Q_UNUSED ( ret )
m_handle = NULL ;
}
}
KTemporaryFile * copyToTemporary ( ) const
{
if ( ! m_handle )
return 0 ;
KTemporaryFile * retFile = new KTemporaryFile ;
retFile - > open ( ) ;
std : : rewind ( m_handle ) ;
int c = - 1 ;
do
{
c = std : : fgetc ( m_handle ) ;
if ( c = = EOF )
break ;
if ( ! retFile - > putChar ( ( char ) c ) )
break ;
} while ( ! feof ( m_handle ) ) ;
retFile - > flush ( ) ;
return retFile ;
}
private :
std : : FILE * m_handle ;
} ;
2009-10-26 20:59:24 +00:00
K_PLUGIN_FACTORY ( okularPartFactory , registerPlugin < Okular : : Part > ( ) ; )
2008-01-20 15:35:19 +00:00
K_EXPORT_PLUGIN ( okularPartFactory ( okularAboutData ( " okular " , I18N_NOOP ( " Okular " ) ) ) )
2002-08-30 09:14:01 +00:00
2007-03-10 21:32:09 +00:00
static QAction * actionForExportFormat ( const Okular : : ExportFormat & format , QObject * parent = 0 )
{
QAction * act = new QAction ( format . description ( ) , parent ) ;
if ( ! format . icon ( ) . isNull ( ) )
{
act - > setIcon ( format . icon ( ) ) ;
}
return act ;
}
2007-07-29 00:55:17 +00:00
static QString compressedMimeFor ( const QString & mime_to_check )
{
static QHash < QString , QString > compressedMimeMap ;
if ( compressedMimeMap . isEmpty ( ) )
{
compressedMimeMap [ QString : : fromLatin1 ( " application/x-gzip " ) ] =
QString : : fromLatin1 ( " application/x-gzip " ) ;
compressedMimeMap [ QString : : fromLatin1 ( " application/x-bzip " ) ] =
QString : : fromLatin1 ( " application/x-bzip " ) ;
compressedMimeMap [ QString : : fromLatin1 ( " application/x-bzpdf " ) ] =
QString : : fromLatin1 ( " application/x-bzip " ) ;
compressedMimeMap [ QString : : fromLatin1 ( " application/x-bzpostscript " ) ] =
QString : : fromLatin1 ( " application/x-bzip " ) ;
compressedMimeMap [ QString : : fromLatin1 ( " application/x-bzdvi " ) ] =
QString : : fromLatin1 ( " application/x-bzip " ) ;
2008-12-12 21:44:49 +00:00
compressedMimeMap [ QString : : fromLatin1 ( " image/x-gzeps " ) ] =
QString : : fromLatin1 ( " application/x-gzip " ) ;
compressedMimeMap [ QString : : fromLatin1 ( " image/x-bzeps " ) ] =
QString : : fromLatin1 ( " application/x-bzip " ) ;
2007-07-29 00:55:17 +00:00
}
2008-11-11 18:48:40 +00:00
QHash < QString , QString > : : const_iterator it = compressedMimeMap . constFind ( mime_to_check ) ;
if ( it ! = compressedMimeMap . constEnd ( ) )
2007-07-29 00:55:17 +00:00
return it . value ( ) ;
return QString ( ) ;
}
2009-10-26 20:59:24 +00:00
static Okular : : Part : : EmbedMode detectEmbedMode ( QWidget * parentWidget , QObject * parent , const QVariantList & args )
2009-03-22 18:38:38 +00:00
{
Q_UNUSED ( parentWidget ) ;
if ( parent
& & ( parent - > objectName ( ) = = QLatin1String ( " okular::Shell " )
| | parent - > objectName ( ) = = QLatin1String ( " okular/okular__Shell " ) ) )
2009-10-26 20:59:24 +00:00
return Okular : : Part : : NativeShellMode ;
2009-03-22 18:38:38 +00:00
2009-03-23 15:40:09 +00:00
if ( parent
& & ( QByteArray ( " KHTMLPart " ) = = parent - > metaObject ( ) - > className ( ) ) )
2009-10-26 20:59:24 +00:00
return Okular : : Part : : KHTMLPartMode ;
2009-03-23 15:40:09 +00:00
2009-03-22 18:38:38 +00:00
Q_FOREACH ( const QVariant & arg , args )
{
if ( arg . type ( ) = = QVariant : : String )
{
if ( arg . toString ( ) = = QLatin1String ( " Print/Preview " ) )
2009-10-26 20:59:24 +00:00
return Okular : : Part : : PrintPreviewMode ;
2009-03-22 18:38:38 +00:00
}
}
2009-10-26 20:59:24 +00:00
return Okular : : Part : : UnknownEmbedMode ;
2009-03-22 18:38:38 +00:00
}
2008-06-07 21:08:41 +00:00
# undef OKULAR_KEEP_FILE_OPEN
# ifdef OKULAR_KEEP_FILE_OPEN
static bool keepFileOpen ( )
{
static bool keep_file_open = ! qgetenv ( " OKULAR_NO_KEEP_FILE_OPEN " ) . toInt ( ) ;
return keep_file_open ;
}
# endif
2009-10-26 20:59:24 +00:00
namespace Okular
{
2006-05-08 18:57:49 +00:00
Part : : Part ( QWidget * parentWidget ,
2007-01-13 00:33:50 +00:00
QObject * parent ,
2007-08-29 14:16:06 +00:00
const QVariantList & args )
2007-01-13 00:33:50 +00:00
: KParts : : ReadOnlyPart ( parent ) ,
2008-03-17 23:02:33 +00:00
m_tempfile ( 0 ) , m_fileWasRemoved ( false ) , m_showMenuBarAction ( 0 ) , m_showFullScreenAction ( 0 ) , m_actionsSearched ( false ) ,
2009-03-22 18:38:38 +00:00
m_cliPresentation ( false ) , m_embedMode ( detectEmbedMode ( parentWidget , parent , args ) ) , m_generatorGuiClient ( 0 ) , m_keeper ( 0 )
2002-08-30 09:14:01 +00:00
{
2007-08-21 23:18:17 +00:00
// first necessary step: copy the configuration from kpdf, if available
QString newokularconffile = KStandardDirs : : locateLocal ( " config " , " okularpartrc " ) ;
2007-09-10 17:20:58 +00:00
if ( ! QFile : : exists ( newokularconffile ) )
2007-08-21 23:18:17 +00:00
{
2007-09-10 17:20:58 +00:00
QString oldkpdfconffile = KStandardDirs : : locateLocal ( " config " , " kpdfpartrc " ) ;
if ( QFile : : exists ( oldkpdfconffile ) )
QFile : : copy ( oldkpdfconffile , newokularconffile ) ;
2007-08-21 23:18:17 +00:00
}
2007-01-13 00:33:50 +00:00
QDBusConnection : : sessionBus ( ) . registerObject ( " /okular " , this , QDBusConnection : : ExportScriptableSlots ) ;
// connect the started signal to tell the job the mimetypes we like
connect ( this , SIGNAL ( started ( KIO : : Job * ) ) , this , SLOT ( setMimeTypes ( KIO : : Job * ) ) ) ;
2007-06-05 21:25:41 +00:00
// connect the completed signal so we can put the window caption when loading remote files
connect ( this , SIGNAL ( completed ( ) ) , this , SLOT ( setWindowTitleFromDocument ( ) ) ) ;
connect ( this , SIGNAL ( canceled ( const QString & ) ) , this , SLOT ( loadCancelled ( const QString & ) ) ) ;
2007-01-13 00:33:50 +00:00
// create browser extension (for printing when embedded into browser)
m_bExtension = new BrowserExtension ( this ) ;
2008-03-30 23:36:15 +00:00
// create live connect extension (for integrating with browser scripting)
new OkularLiveConnectExtension ( this ) ;
2007-01-13 00:33:50 +00:00
// we need an instance
2007-01-29 20:18:39 +00:00
setComponentData ( okularPartFactory : : componentData ( ) ) ;
2007-01-13 00:33:50 +00:00
2010-03-17 19:37:52 +00:00
GuiUtils : : addIconLoader ( iconLoader ( ) ) ;
2007-12-24 15:02:32 +00:00
2008-11-21 11:45:00 +00:00
m_sidebar = new Sidebar ( parentWidget ) ;
setWidget ( m_sidebar ) ;
2007-08-06 17:24:10 +00:00
2007-01-13 00:33:50 +00:00
// build the document
2007-03-30 17:46:50 +00:00
m_document = new Okular : : Document ( widget ( ) ) ;
2007-01-13 00:33:50 +00:00
connect ( m_document , SIGNAL ( linkFind ( ) ) , this , SLOT ( slotFind ( ) ) ) ;
connect ( m_document , SIGNAL ( linkGoToPage ( ) ) , this , SLOT ( slotGoToPage ( ) ) ) ;
connect ( m_document , SIGNAL ( linkPresentation ( ) ) , this , SLOT ( slotShowPresentation ( ) ) ) ;
connect ( m_document , SIGNAL ( linkEndPresentation ( ) ) , this , SLOT ( slotHidePresentation ( ) ) ) ;
connect ( m_document , SIGNAL ( openUrl ( const KUrl & ) ) , this , SLOT ( openUrlFromDocument ( const KUrl & ) ) ) ;
2007-01-13 17:28:54 +00:00
connect ( m_document - > bookmarkManager ( ) , SIGNAL ( openUrl ( const KUrl & ) ) , this , SLOT ( openUrlFromBookmarks ( const KUrl & ) ) ) ;
2007-01-13 00:33:50 +00:00
connect ( m_document , SIGNAL ( close ( ) ) , this , SLOT ( close ( ) ) ) ;
2007-07-13 22:52:32 +00:00
if ( parent & & parent - > metaObject ( ) - > indexOfSlot ( QMetaObject : : normalizedSignature ( " slotQuit() " ) ) ! = - 1 )
2007-01-13 00:33:50 +00:00
connect ( m_document , SIGNAL ( quit ( ) ) , parent , SLOT ( slotQuit ( ) ) ) ;
else
connect ( m_document , SIGNAL ( quit ( ) ) , this , SLOT ( cannotQuit ( ) ) ) ;
// widgets: ^searchbar (toolbar containing label and SearchWidget)
// m_searchToolBar = new KToolBar( parentWidget, "searchBar" );
// m_searchToolBar->boxLayout()->setSpacing( KDialog::spacingHint() );
// QLabel * sLabel = new QLabel( i18n( "&Search:" ), m_searchToolBar, "kde toolbar widget" );
// m_searchWidget = new SearchWidget( m_searchToolBar, m_document );
// sLabel->setBuddy( m_searchWidget );
// m_searchToolBar->setStretchableWidget( m_searchWidget );
int tbIndex ;
// [left toolbox: Table of Contents] | []
2007-08-06 17:24:10 +00:00
m_toc = new TOC ( 0 , m_document ) ;
2007-01-13 00:33:50 +00:00
connect ( m_toc , SIGNAL ( hasTOC ( bool ) ) , this , SLOT ( enableTOC ( bool ) ) ) ;
2007-11-14 00:04:07 +00:00
tbIndex = m_sidebar - > addItem ( m_toc , KIcon ( QApplication : : isLeftToRight ( ) ? " format-justify-left " : " format-justify-right " ) , i18n ( " Contents " ) ) ;
2007-01-13 00:33:50 +00:00
enableTOC ( false ) ;
// [left toolbox: Thumbnails and Bookmarks] | []
2007-08-06 17:24:10 +00:00
KVBox * thumbsBox = new ThumbnailsBox ( 0 ) ;
2007-08-24 14:20:03 +00:00
thumbsBox - > setSpacing ( 6 ) ;
2007-01-13 00:33:50 +00:00
m_searchWidget = new SearchWidget ( thumbsBox , m_document ) ;
m_thumbnailList = new ThumbnailList ( thumbsBox , m_document ) ;
// ThumbnailController * m_tc = new ThumbnailController( thumbsBox, m_thumbnailList );
connect ( m_thumbnailList , SIGNAL ( urlDropped ( const KUrl & ) ) , SLOT ( openUrlFromDocument ( const KUrl & ) ) ) ;
connect ( m_thumbnailList , SIGNAL ( rightClick ( const Okular : : Page * , const QPoint & ) ) , this , SLOT ( slotShowMenu ( const Okular : : Page * , const QPoint & ) ) ) ;
2007-11-10 18:49:57 +00:00
tbIndex = m_sidebar - > addItem ( thumbsBox , KIcon ( " view-preview " ) , i18n ( " Thumbnails " ) ) ;
2007-08-06 17:24:10 +00:00
m_sidebar - > setCurrentIndex ( tbIndex ) ;
2007-01-13 00:33:50 +00:00
// [left toolbox: Reviews] | []
2008-09-22 22:58:32 +00:00
m_reviewsWidget = new Reviews ( 0 , m_document ) ;
m_sidebar - > addItem ( m_reviewsWidget , KIcon ( " draw-freehand " ) , i18n ( " Reviews " ) ) ;
2007-09-03 17:25:52 +00:00
m_sidebar - > setItemEnabled ( 2 , false ) ;
2007-01-13 00:33:50 +00:00
// [left toolbox: Bookmarks] | []
2008-09-22 22:58:32 +00:00
m_bookmarkList = new BookmarkList ( m_document , 0 ) ;
m_sidebar - > addItem ( m_bookmarkList , KIcon ( " bookmarks " ) , i18n ( " Bookmarks " ) ) ;
2007-09-03 17:25:52 +00:00
m_sidebar - > setItemEnabled ( 3 , false ) ;
2007-01-13 00:33:50 +00:00
// widgets: [../miniBarContainer] | []
2007-09-07 10:59:28 +00:00
# ifdef OKULAR_ENABLE_MINIBAR
2007-08-06 17:24:10 +00:00
QWidget * miniBarContainer = new QWidget ( 0 ) ;
m_sidebar - > setBottomWidget ( miniBarContainer ) ;
2007-01-13 00:33:50 +00:00
QVBoxLayout * miniBarLayout = new QVBoxLayout ( miniBarContainer ) ;
miniBarLayout - > setMargin ( 0 ) ;
// widgets: [../[spacer/..]] | []
miniBarLayout - > addItem ( new QSpacerItem ( 6 , 6 , QSizePolicy : : Fixed , QSizePolicy : : Fixed ) ) ;
// widgets: [../[../MiniBar]] | []
QFrame * bevelContainer = new QFrame ( miniBarContainer ) ;
bevelContainer - > setFrameStyle ( QFrame : : StyledPanel | QFrame : : Sunken ) ;
QVBoxLayout * bevelContainerLayout = new QVBoxLayout ( bevelContainer ) ;
bevelContainerLayout - > setMargin ( 4 ) ;
m_progressWidget = new ProgressWidget ( bevelContainer , m_document ) ;
bevelContainerLayout - > addWidget ( m_progressWidget ) ;
miniBarLayout - > addWidget ( bevelContainer ) ;
miniBarLayout - > addItem ( new QSpacerItem ( 6 , 6 , QSizePolicy : : Fixed , QSizePolicy : : Fixed ) ) ;
2007-09-07 10:59:28 +00:00
# endif
2007-01-13 00:33:50 +00:00
// widgets: [] | [right 'pageView']
2007-08-06 17:24:10 +00:00
QWidget * rightContainer = new QWidget ( 0 ) ;
m_sidebar - > setMainWidget ( rightContainer ) ;
2007-01-13 00:33:50 +00:00
QVBoxLayout * rightLayout = new QVBoxLayout ( rightContainer ) ;
rightLayout - > setMargin ( 0 ) ;
rightLayout - > setSpacing ( 0 ) ;
// KToolBar * rtb = new KToolBar( rightContainer, "mainToolBarSS" );
// rightLayout->addWidget( rtb );
m_topMessage = new PageViewTopMessage ( rightContainer ) ;
2007-12-03 06:27:42 +00:00
m_topMessage - > setup ( i18n ( " This document has embedded files. <a href= \" okular:/embeddedfiles \" >Click here to see them</a> or go to File -> Embedded Files. " ) , KIcon ( " mail-attachment " ) ) ;
2007-01-13 00:33:50 +00:00
connect ( m_topMessage , SIGNAL ( action ( ) ) , this , SLOT ( slotShowEmbeddedFiles ( ) ) ) ;
rightLayout - > addWidget ( m_topMessage ) ;
2007-02-25 00:07:59 +00:00
m_formsMessage = new PageViewTopMessage ( rightContainer ) ;
m_formsMessage - > setup ( i18n ( " This document has forms. Click on the button to interact with them, or use View -> Show Forms. " ) ) ;
rightLayout - > addWidget ( m_formsMessage ) ;
2007-01-13 00:33:50 +00:00
m_pageView = new PageView ( rightContainer , m_document ) ;
m_pageView - > setFocus ( ) ; //usability setting
2007-08-06 17:24:10 +00:00
// m_splitter->setFocusProxy(m_pageView);
2007-01-13 00:33:50 +00:00
connect ( m_pageView , SIGNAL ( urlDropped ( const KUrl & ) ) , SLOT ( openUrlFromDocument ( const KUrl & ) ) ) ;
connect ( m_pageView , SIGNAL ( rightClick ( const Okular : : Page * , const QPoint & ) ) , this , SLOT ( slotShowMenu ( const Okular : : Page * , const QPoint & ) ) ) ;
connect ( m_document , SIGNAL ( error ( const QString & , int ) ) , m_pageView , SLOT ( errorMessage ( const QString & , int ) ) ) ;
connect ( m_document , SIGNAL ( warning ( const QString & , int ) ) , m_pageView , SLOT ( warningMessage ( const QString & , int ) ) ) ;
connect ( m_document , SIGNAL ( notice ( const QString & , int ) ) , m_pageView , SLOT ( noticeMessage ( const QString & , int ) ) ) ;
rightLayout - > addWidget ( m_pageView ) ;
2007-03-17 22:58:41 +00:00
m_findBar = new FindBar ( m_document , rightContainer ) ;
rightLayout - > addWidget ( m_findBar ) ;
2008-11-21 11:45:00 +00:00
QWidget * bottomBar = new QWidget ( rightContainer ) ;
2007-01-13 00:33:50 +00:00
QHBoxLayout * bottomBarLayout = new QHBoxLayout ( bottomBar ) ;
m_pageSizeLabel = new PageSizeLabel ( bottomBar , m_document ) ;
bottomBarLayout - > setMargin ( 0 ) ;
bottomBarLayout - > setSpacing ( 0 ) ;
bottomBarLayout - > addWidget ( m_pageSizeLabel - > antiWidget ( ) ) ;
bottomBarLayout - > addItem ( new QSpacerItem ( 5 , 5 , QSizePolicy : : Expanding , QSizePolicy : : Minimum ) ) ;
m_miniBar = new MiniBar ( bottomBar , m_document ) ;
bottomBarLayout - > addWidget ( m_miniBar ) ;
bottomBarLayout - > addItem ( new QSpacerItem ( 5 , 5 , QSizePolicy : : Expanding , QSizePolicy : : Minimum ) ) ;
bottomBarLayout - > addWidget ( m_pageSizeLabel ) ;
2008-11-21 11:45:00 +00:00
rightLayout - > addWidget ( bottomBar ) ;
2004-09-23 17:16:04 +00:00
2008-09-22 22:58:32 +00:00
connect ( m_reviewsWidget , SIGNAL ( setAnnotationWindow ( Okular : : Annotation * ) ) ,
2007-01-13 00:33:50 +00:00
m_pageView , SLOT ( setAnnotationWindow ( Okular : : Annotation * ) ) ) ;
2008-09-22 22:58:32 +00:00
connect ( m_reviewsWidget , SIGNAL ( removeAnnotationWindow ( Okular : : Annotation * ) ) ,
2007-01-13 00:33:50 +00:00
m_pageView , SLOT ( removeAnnotationWindow ( Okular : : Annotation * ) ) ) ;
// add document observers
m_document - > addObserver ( this ) ;
m_document - > addObserver ( m_thumbnailList ) ;
m_document - > addObserver ( m_pageView ) ;
2008-04-27 11:17:05 +00:00
m_document - > registerView ( m_pageView ) ;
2007-01-13 00:33:50 +00:00
m_document - > addObserver ( m_toc ) ;
m_document - > addObserver ( m_miniBar ) ;
2007-09-07 10:59:28 +00:00
# ifdef OKULAR_ENABLE_MINIBAR
2007-01-13 00:33:50 +00:00
m_document - > addObserver ( m_progressWidget ) ;
2007-09-07 10:59:28 +00:00
# endif
2008-09-22 22:58:32 +00:00
m_document - > addObserver ( m_reviewsWidget ) ;
2007-01-13 00:33:50 +00:00
m_document - > addObserver ( m_pageSizeLabel ) ;
2008-09-22 22:58:32 +00:00
m_document - > addObserver ( m_bookmarkList ) ;
2007-01-13 00:33:50 +00:00
2008-02-05 17:36:04 +00:00
connect ( m_document - > bookmarkManager ( ) , SIGNAL ( saved ( ) ) ,
this , SLOT ( slotRebuildBookmarkMenu ( ) ) ) ;
2007-01-13 00:33:50 +00:00
// ACTIONS
KActionCollection * ac = actionCollection ( ) ;
// Page Traversal actions
m_gotoPage = KStandardAction : : gotoPage ( this , SLOT ( slotGoToPage ( ) ) , ac ) ;
m_gotoPage - > setShortcut ( QKeySequence ( Qt : : CTRL + Qt : : Key_G ) ) ;
// dirty way to activate gotopage when pressing miniBar's button
connect ( m_miniBar , SIGNAL ( gotoPage ( ) ) , m_gotoPage , SLOT ( trigger ( ) ) ) ;
m_prevPage = KStandardAction : : prior ( this , SLOT ( slotPreviousPage ( ) ) , ac ) ;
2007-08-20 20:25:22 +00:00
m_prevPage - > setIconText ( i18nc ( " Previous page " , " Previous " ) ) ;
m_prevPage - > setToolTip ( i18n ( " Go back to the Previous Page " ) ) ;
2007-01-13 00:33:50 +00:00
m_prevPage - > setWhatsThis ( i18n ( " Moves to the previous page of the document " ) ) ;
m_prevPage - > setShortcut ( 0 ) ;
// dirty way to activate prev page when pressing miniBar's button
connect ( m_miniBar , SIGNAL ( prevPage ( ) ) , m_prevPage , SLOT ( trigger ( ) ) ) ;
2007-09-07 10:59:28 +00:00
# ifdef OKULAR_ENABLE_MINIBAR
2007-01-13 00:33:50 +00:00
connect ( m_progressWidget , SIGNAL ( prevPage ( ) ) , m_prevPage , SLOT ( trigger ( ) ) ) ;
2007-09-07 10:59:28 +00:00
# endif
2007-01-13 00:33:50 +00:00
m_nextPage = KStandardAction : : next ( this , SLOT ( slotNextPage ( ) ) , ac ) ;
2007-08-20 20:25:22 +00:00
m_nextPage - > setIconText ( i18nc ( " Next page " , " Next " ) ) ;
m_nextPage - > setToolTip ( i18n ( " Advance to the Next Page " ) ) ;
2007-01-13 00:33:50 +00:00
m_nextPage - > setWhatsThis ( i18n ( " Moves to the next page of the document " ) ) ;
m_nextPage - > setShortcut ( 0 ) ;
// dirty way to activate next page when pressing miniBar's button
connect ( m_miniBar , SIGNAL ( nextPage ( ) ) , m_nextPage , SLOT ( trigger ( ) ) ) ;
2007-09-07 10:59:28 +00:00
# ifdef OKULAR_ENABLE_MINIBAR
2007-01-13 00:33:50 +00:00
connect ( m_progressWidget , SIGNAL ( nextPage ( ) ) , m_nextPage , SLOT ( trigger ( ) ) ) ;
2007-09-07 10:59:28 +00:00
# endif
2007-01-13 00:33:50 +00:00
m_firstPage = KStandardAction : : firstPage ( this , SLOT ( slotGotoFirst ( ) ) , ac ) ;
ac - > addAction ( " first_page " , m_firstPage ) ;
m_firstPage - > setWhatsThis ( i18n ( " Moves to the first page of the document " ) ) ;
m_lastPage = KStandardAction : : lastPage ( this , SLOT ( slotGotoLast ( ) ) , ac ) ;
ac - > addAction ( " last_page " , m_lastPage ) ;
m_lastPage - > setWhatsThis ( i18n ( " Moves to the last page of the document " ) ) ;
2007-06-17 09:45:59 +00:00
// we do not want back and next in history in the dummy mode
m_historyBack = 0 ;
m_historyNext = 0 ;
2007-01-13 00:33:50 +00:00
2007-05-01 14:43:30 +00:00
m_addBookmark = KStandardAction : : addBookmark ( this , SLOT ( slotAddBookmark ( ) ) , ac ) ;
m_addBookmarkText = m_addBookmark - > text ( ) ;
2007-05-01 16:38:35 +00:00
m_addBookmarkIcon = m_addBookmark - > icon ( ) ;
2007-05-01 14:43:30 +00:00
2007-01-13 00:33:50 +00:00
m_prevBookmark = ac - > addAction ( " previous_bookmark " ) ;
m_prevBookmark - > setText ( i18n ( " Previous Bookmark " ) ) ;
2007-12-03 06:27:42 +00:00
m_prevBookmark - > setIcon ( KIcon ( " go-up-search " ) ) ;
2007-01-13 00:33:50 +00:00
m_prevBookmark - > setWhatsThis ( i18n ( " Go to the previous bookmarked page " ) ) ;
connect ( m_prevBookmark , SIGNAL ( triggered ( ) ) , this , SLOT ( slotPreviousBookmark ( ) ) ) ;
m_nextBookmark = ac - > addAction ( " next_bookmark " ) ;
m_nextBookmark - > setText ( i18n ( " Next Bookmark " ) ) ;
2007-12-03 06:27:42 +00:00
m_nextBookmark - > setIcon ( KIcon ( " go-down-search " ) ) ;
2007-01-13 00:33:50 +00:00
m_nextBookmark - > setWhatsThis ( i18n ( " Go to the next bookmarked page " ) ) ;
connect ( m_nextBookmark , SIGNAL ( triggered ( ) ) , this , SLOT ( slotNextBookmark ( ) ) ) ;
m_copy = KStandardAction : : create ( KStandardAction : : Copy , m_pageView , SLOT ( copyTextSelection ( ) ) , ac ) ;
2007-09-03 21:35:05 +00:00
m_selectAll = KStandardAction : : selectAll ( m_pageView , SLOT ( selectAll ( ) ) , ac ) ;
2007-01-13 00:33:50 +00:00
// Find and other actions
2007-03-17 22:58:41 +00:00
m_find = KStandardAction : : find ( this , SLOT ( slotShowFindBar ( ) ) , ac ) ;
QList < QKeySequence > s = m_find - > shortcuts ( ) ;
s . append ( QKeySequence ( Qt : : Key_Slash ) ) ;
m_find - > setShortcuts ( s ) ;
2007-01-13 00:33:50 +00:00
m_find - > setEnabled ( false ) ;
m_findNext = KStandardAction : : findNext ( this , SLOT ( slotFindNext ( ) ) , ac ) ;
m_findNext - > setEnabled ( false ) ;
2009-02-14 17:11:29 +00:00
m_findPrev = KStandardAction : : findPrev ( this , SLOT ( slotFindPrev ( ) ) , ac ) ;
m_findPrev - > setEnabled ( false ) ;
2008-03-11 23:40:59 +00:00
m_saveCopyAs = KStandardAction : : saveAs ( this , SLOT ( slotSaveCopyAs ( ) ) , ac ) ;
m_saveCopyAs - > setText ( i18n ( " Save &Copy As... " ) ) ;
ac - > addAction ( " file_save_copy " , m_saveCopyAs ) ;
m_saveCopyAs - > setEnabled ( false ) ;
2007-01-13 00:33:50 +00:00
m_saveAs = KStandardAction : : saveAs ( this , SLOT ( slotSaveFileAs ( ) ) , ac ) ;
m_saveAs - > setEnabled ( false ) ;
2007-10-07 23:09:08 +00:00
2007-01-13 00:33:50 +00:00
QAction * prefs = KStandardAction : : preferences ( this , SLOT ( slotPreferences ( ) ) , ac ) ;
2009-03-22 18:38:38 +00:00
if ( m_embedMode = = NativeShellMode )
2007-01-13 00:33:50 +00:00
{
2008-01-20 15:35:19 +00:00
prefs - > setText ( i18n ( " Configure Okular... " ) ) ;
2007-01-13 00:33:50 +00:00
}
else
{
2007-05-19 10:11:04 +00:00
// TODO: improve this message
2007-01-13 00:33:50 +00:00
prefs - > setText ( i18n ( " Configure Viewer... " ) ) ;
}
2007-10-07 23:09:08 +00:00
KAction * genPrefs = new KAction ( ac ) ;
ac - > addAction ( " options_configure_generators " , genPrefs ) ;
2007-01-13 00:33:50 +00:00
genPrefs - > setText ( i18n ( " Configure Backends... " ) ) ;
2007-10-07 23:09:08 +00:00
genPrefs - > setIcon ( KIcon ( " configure " ) ) ;
2007-07-12 17:52:14 +00:00
genPrefs - > setEnabled ( m_document - > configurableGenerators ( ) > 0 ) ;
2007-10-07 23:09:08 +00:00
connect ( genPrefs , SIGNAL ( triggered ( bool ) ) , this , SLOT ( slotGeneratorPreferences ( ) ) ) ;
2007-01-13 00:33:50 +00:00
m_printPreview = KStandardAction : : printPreview ( this , SLOT ( slotPrintPreview ( ) ) , ac ) ;
m_printPreview - > setEnabled ( false ) ;
m_showLeftPanel = ac - > add < KToggleAction > ( " show_leftpanel " ) ;
m_showLeftPanel - > setText ( i18n ( " Show &Navigation Panel " ) ) ;
2007-12-03 06:27:42 +00:00
m_showLeftPanel - > setIcon ( KIcon ( " view-sidetree " ) ) ;
2007-01-13 00:33:50 +00:00
connect ( m_showLeftPanel , SIGNAL ( toggled ( bool ) ) , this , SLOT ( slotShowLeftPanel ( ) ) ) ;
2007-08-04 17:42:06 +00:00
m_showLeftPanel - > setShortcut ( Qt : : Key_F7 ) ;
2007-01-13 00:33:50 +00:00
m_showLeftPanel - > setChecked ( Okular : : Settings : : showLeftPanel ( ) ) ;
slotShowLeftPanel ( ) ;
QAction * importPS = ac - > addAction ( " import_ps " ) ;
2008-01-04 15:46:44 +00:00
importPS - > setText ( i18n ( " &Import PostScript as PDF... " ) ) ;
2007-10-02 16:23:28 +00:00
importPS - > setIcon ( KIcon ( " document-import " ) ) ;
2007-01-13 00:33:50 +00:00
connect ( importPS , SIGNAL ( triggered ( ) ) , this , SLOT ( slotImportPSFile ( ) ) ) ;
2008-01-04 01:14:54 +00:00
#if 0
2007-01-13 00:33:50 +00:00
QAction * ghns = ac - > addAction ( " get_new_stuff " ) ;
ghns - > setText ( i18n ( " &Get Books From Internet... " ) ) ;
2007-03-08 21:41:46 +00:00
ghns - > setIcon ( KIcon ( " get-hot-new-stuff " ) ) ;
2007-01-13 00:33:50 +00:00
connect ( ghns , SIGNAL ( triggered ( ) ) , this , SLOT ( slotGetNewStuff ( ) ) ) ;
2007-05-19 10:11:04 +00:00
// TEMP, REMOVE ME!
2007-01-13 00:33:50 +00:00
ghns - > setShortcut ( Qt : : Key_G ) ;
2008-01-04 01:14:54 +00:00
# endif
2007-01-13 00:33:50 +00:00
m_showProperties = ac - > addAction ( " properties " ) ;
m_showProperties - > setText ( i18n ( " &Properties " ) ) ;
2007-03-08 21:41:46 +00:00
m_showProperties - > setIcon ( KIcon ( " document-properties " ) ) ;
2007-01-13 00:33:50 +00:00
connect ( m_showProperties , SIGNAL ( triggered ( ) ) , this , SLOT ( slotShowProperties ( ) ) ) ;
m_showProperties - > setEnabled ( false ) ;
m_showEmbeddedFiles = ac - > addAction ( " embedded_files " ) ;
m_showEmbeddedFiles - > setText ( i18n ( " &Embedded Files " ) ) ;
2007-12-08 14:57:24 +00:00
m_showEmbeddedFiles - > setIcon ( KIcon ( " mail-attachment " ) ) ;
2007-01-13 00:33:50 +00:00
connect ( m_showEmbeddedFiles , SIGNAL ( triggered ( ) ) , this , SLOT ( slotShowEmbeddedFiles ( ) ) ) ;
m_showEmbeddedFiles - > setEnabled ( false ) ;
m_showPresentation = ac - > addAction ( " presentation " ) ;
m_showPresentation - > setText ( i18n ( " P&resentation " ) ) ;
2007-12-26 19:31:48 +00:00
m_showPresentation - > setIcon ( KIcon ( " view-presentation " ) ) ;
2007-01-13 00:33:50 +00:00
connect ( m_showPresentation , SIGNAL ( triggered ( ) ) , this , SLOT ( slotShowPresentation ( ) ) ) ;
m_showPresentation - > setShortcut ( QKeySequence ( Qt : : CTRL + Qt : : SHIFT + Qt : : Key_P ) ) ;
m_showPresentation - > setEnabled ( false ) ;
m_exportAs = ac - > addAction ( " file_export_as " ) ;
m_exportAs - > setText ( i18n ( " E&xport As " ) ) ;
2007-10-02 16:23:28 +00:00
m_exportAs - > setIcon ( KIcon ( " document-export " ) ) ;
2008-09-22 22:58:32 +00:00
m_exportAsMenu = new QMenu ( ) ;
connect ( m_exportAsMenu , SIGNAL ( triggered ( QAction * ) ) , this , SLOT ( slotExportAs ( QAction * ) ) ) ;
m_exportAs - > setMenu ( m_exportAsMenu ) ;
m_exportAsText = actionForExportFormat ( Okular : : ExportFormat : : standardFormat ( Okular : : ExportFormat : : PlainText ) , m_exportAsMenu ) ;
m_exportAsMenu - > addAction ( m_exportAsText ) ;
2007-09-07 09:09:39 +00:00
m_exportAs - > setEnabled ( false ) ;
2007-01-13 00:33:50 +00:00
m_exportAsText - > setEnabled ( false ) ;
2008-11-16 01:23:31 +00:00
m_exportAsDocArchive = actionForExportFormat ( Okular : : ExportFormat (
i18nc ( " A document format, Okular-specific " , " Document Archive " ) ,
KMimeType : : mimeType ( " application/vnd.kde.okular-archive " ) ) , m_exportAsMenu ) ;
m_exportAsMenu - > addAction ( m_exportAsDocArchive ) ;
m_exportAsDocArchive - > setEnabled ( false ) ;
2007-01-13 00:33:50 +00:00
2007-03-07 18:15:00 +00:00
m_aboutBackend = ac - > addAction ( " help_about_backend " ) ;
2008-01-05 13:41:54 +00:00
m_aboutBackend - > setText ( i18n ( " About Backend " ) ) ;
2007-08-29 11:24:01 +00:00
m_aboutBackend - > setEnabled ( false ) ;
2007-03-07 18:15:00 +00:00
connect ( m_aboutBackend , SIGNAL ( triggered ( ) ) , this , SLOT ( slotAboutBackend ( ) ) ) ;
2007-05-06 11:23:26 +00:00
KAction * reload = ac - > add < KAction > ( " file_reload " ) ;
reload - > setText ( i18n ( " Reloa&d " ) ) ;
reload - > setIcon ( KIcon ( " view-refresh " ) ) ;
reload - > setWhatsThis ( i18n ( " Reload the current document from disk. " ) ) ;
connect ( reload , SIGNAL ( triggered ( ) ) , this , SLOT ( slotReload ( ) ) ) ;
reload - > setShortcut ( KStandardShortcut : : reload ( ) ) ;
m_reload = reload ;
2007-03-17 22:58:41 +00:00
KAction * closeFindBar = new KAction ( i18n ( " Close &Find Bar " ) , ac ) ;
ac - > addAction ( " close_find_bar " , closeFindBar ) ;
connect ( closeFindBar , SIGNAL ( triggered ( ) ) , this , SLOT ( slotHideFindBar ( ) ) ) ;
closeFindBar - > setShortcut ( QKeySequence ( Qt : : Key_Escape ) ) ;
widget ( ) - > addAction ( closeFindBar ) ;
2008-09-11 08:40:00 +00:00
KToggleAction * blackscreenAction = new KToggleAction ( i18n ( " Switch Blackscreen Mode " ) , ac ) ;
ac - > addAction ( " switch_blackscreen_mode " , blackscreenAction ) ;
blackscreenAction - > setShortcut ( QKeySequence ( Qt : : Key_B ) ) ;
blackscreenAction - > setIcon ( KIcon ( " view-presentation " ) ) ;
2008-11-29 13:50:37 +00:00
KToggleAction * drawingAction = new KToggleAction ( i18n ( " Toggle Drawing Mode " ) , ac ) ;
ac - > addAction ( " presentation_drawing_mode " , drawingAction ) ;
drawingAction - > setIcon ( KIcon ( " draw-freehand " ) ) ;
KAction * eraseDrawingAction = new KAction ( i18n ( " Erase Drawings " ) , ac ) ;
ac - > addAction ( " presentation_erase_drawings " , eraseDrawingAction ) ;
eraseDrawingAction - > setIcon ( KIcon ( " draw-eraser " ) ) ;
2007-01-13 00:33:50 +00:00
// document watcher and reloader
m_watcher = new KDirWatch ( this ) ;
connect ( m_watcher , SIGNAL ( dirty ( const QString & ) ) , this , SLOT ( slotFileDirty ( const QString & ) ) ) ;
m_dirtyHandler = new QTimer ( this ) ;
m_dirtyHandler - > setSingleShot ( true ) ;
connect ( m_dirtyHandler , SIGNAL ( timeout ( ) ) , this , SLOT ( slotDoFileDirty ( ) ) ) ;
slotNewConfig ( ) ;
// [SPEECH] check for KTTSD presence and usability
2010-06-15 20:16:59 +00:00
KService : : List offers = KServiceTypeTrader : : self ( ) - > query ( " DBUS/Text-to-Speech " , " Name == 'Jovie' " ) ;
2007-01-13 00:33:50 +00:00
Okular : : Settings : : setUseKTTSD ( ! offers . isEmpty ( ) ) ;
2007-05-23 21:59:12 +00:00
Okular : : Settings : : self ( ) - > writeConfig ( ) ;
2007-01-13 00:33:50 +00:00
2007-01-13 17:28:54 +00:00
rebuildBookmarkMenu ( false ) ;
2007-01-13 00:33:50 +00:00
// set our XML-UI resource file
setXMLFile ( " part.rc " ) ;
2007-07-14 12:31:26 +00:00
m_pageView - > setupBaseActions ( actionCollection ( ) ) ;
// ensure history actions are in the correct state
2007-01-13 00:33:50 +00:00
updateViewActions ( ) ;
2007-06-05 20:49:00 +00:00
2007-08-06 17:24:10 +00:00
m_sidebar - > setSidebarVisibility ( false ) ;
2009-03-22 18:38:38 +00:00
if ( m_embedMode ! = PrintPreviewMode )
unsetDummyMode ( ) ;
2008-06-07 21:08:41 +00:00
2010-01-31 01:34:24 +00:00
if ( m_embedMode = = NativeShellMode )
m_sidebar - > setAutoFillBackground ( false ) ;
2008-06-07 21:08:41 +00:00
# ifdef OKULAR_KEEP_FILE_OPEN
m_keeper = new FileKeeper ( ) ;
# endif
2003-09-15 21:57:19 +00:00
}
2007-01-13 00:33:50 +00:00
2004-09-08 12:41:14 +00:00
Part : : ~ Part ( )
2003-09-15 21:09:49 +00:00
{
2010-03-17 19:37:52 +00:00
GuiUtils : : removeIconLoader ( iconLoader ( ) ) ;
2008-09-22 22:58:32 +00:00
m_document - > removeObserver ( this ) ;
2007-10-03 14:59:57 +00:00
if ( m_document - > isOpened ( ) )
Part : : closeUrl ( ) ;
2006-02-18 12:06:52 +00:00
delete m_toc ;
delete m_pageView ;
delete m_thumbnailList ;
delete m_miniBar ;
2007-09-07 10:59:28 +00:00
# ifdef OKULAR_ENABLE_MINIBAR
2006-10-15 15:59:22 +00:00
delete m_progressWidget ;
2007-09-07 10:59:28 +00:00
# endif
2006-10-15 19:37:14 +00:00
delete m_pageSizeLabel ;
2008-09-22 22:58:32 +00:00
delete m_reviewsWidget ;
delete m_bookmarkList ;
2006-02-18 12:06:52 +00:00
2004-11-09 17:20:19 +00:00
delete m_document ;
2007-01-13 21:42:39 +00:00
delete m_tempfile ;
2007-01-13 17:28:54 +00:00
qDeleteAll ( m_bookmarkActions ) ;
2008-06-07 21:08:41 +00:00
2008-09-22 22:58:32 +00:00
delete m_exportAsMenu ;
2008-06-07 21:08:41 +00:00
# ifdef OKULAR_KEEP_FILE_OPEN
delete m_keeper ;
# endif
2003-09-15 21:09:49 +00:00
}
2007-01-13 00:33:50 +00:00
2007-01-04 00:20:50 +00:00
bool Part : : openDocument ( const KUrl & url , uint page )
{
Okular : : DocumentViewport vp ( page - 1 ) ;
2007-07-31 00:04:09 +00:00
vp . rePos . enabled = true ;
vp . rePos . normalizedX = 0 ;
vp . rePos . normalizedY = 0 ;
vp . rePos . pos = Okular : : DocumentViewport : : TopLeft ;
2007-01-04 00:20:50 +00:00
if ( vp . isValid ( ) )
m_document - > setNextDocumentViewport ( vp ) ;
return openUrl ( url ) ;
}
2007-01-13 00:33:50 +00:00
2007-01-04 00:20:50 +00:00
void Part : : startPresentation ( )
{
m_cliPresentation = true ;
}
2007-01-13 00:33:50 +00:00
2007-05-24 20:39:35 +00:00
QStringList Part : : supportedMimeTypes ( ) const
{
return m_document - > supportedMimeTypes ( ) ;
}
2007-07-25 10:08:38 +00:00
KUrl Part : : realUrl ( ) const
{
if ( ! m_realUrl . isEmpty ( ) )
return m_realUrl ;
return url ( ) ;
}
2006-08-30 13:02:48 +00:00
void Part : : openUrlFromDocument ( const KUrl & url )
2005-11-04 11:59:51 +00:00
{
2009-03-22 18:38:38 +00:00
if ( m_embedMode = = PrintPreviewMode )
return ;
2007-06-05 20:49:00 +00:00
2006-08-29 21:09:55 +00:00
m_bExtension - > openUrlNotify ( ) ;
m_bExtension - > setLocationBarUrl ( url . prettyUrl ( ) ) ;
openUrl ( url ) ;
2005-11-04 11:59:51 +00:00
}
2007-01-13 17:28:54 +00:00
void Part : : openUrlFromBookmarks ( const KUrl & _url )
{
KUrl url = _url ;
Okular : : DocumentViewport vp ( _url . htmlRef ( ) ) ;
if ( vp . isValid ( ) )
m_document - > setNextDocumentViewport ( vp ) ;
url . setHTMLRef ( QString ( ) ) ;
if ( m_document - > currentDocument ( ) = = url )
{
if ( vp . isValid ( ) )
m_document - > setViewport ( vp ) ;
}
else
openUrl ( url ) ;
}
2005-11-04 11:59:51 +00:00
void Part : : setMimeTypes ( KIO : : Job * job )
{
if ( job )
{
2007-01-28 15:46:10 +00:00
QStringList supportedMimeTypes = m_document - > supportedMimeTypes ( ) ;
job - > addMetaData ( " accept " , supportedMimeTypes . join ( " , " ) + " , */*;q=0.5 " ) ;
2005-11-04 11:59:51 +00:00
}
}
2007-06-05 21:25:41 +00:00
void Part : : loadCancelled ( const QString & reason )
{
emit setWindowCaption ( QString ( ) ) ;
2008-01-14 23:03:53 +00:00
// when m_viewportDirty.pageNumber != -1 we come from slotDoFileDirty
// so we don't want to show an ugly messagebox just because the document is
// taking more than usual to be recreated
if ( m_viewportDirty . pageNumber = = - 1 )
2007-06-05 21:25:41 +00:00
{
2008-01-14 23:03:53 +00:00
if ( ! reason . isEmpty ( ) )
{
KMessageBox : : error ( widget ( ) , i18n ( " Could not open %1. Reason: %2 " , url ( ) . prettyUrl ( ) , reason ) ) ;
}
else
{
KMessageBox : : error ( widget ( ) , i18n ( " Could not open %1 " , url ( ) . prettyUrl ( ) ) ) ;
}
2007-06-05 21:25:41 +00:00
}
}
void Part : : setWindowTitleFromDocument ( )
{
2008-11-29 14:36:14 +00:00
// If 'DocumentTitle' should be used, check if the document has one. If
// either case is false, use the file name.
QString title = realUrl ( ) . fileName ( ) ;
if ( Okular : : Settings : : displayDocumentTitle ( ) )
2007-06-05 21:25:41 +00:00
{
2008-11-29 14:36:14 +00:00
const QString docTitle = m_document - > metaData ( " DocumentTitle " ) . toString ( ) ;
if ( ! docTitle . isEmpty ( ) & & ! docTitle . trimmed ( ) . isEmpty ( ) )
{
title = docTitle ;
}
2007-06-05 21:25:41 +00:00
}
2008-11-29 14:36:14 +00:00
emit setWindowCaption ( title ) ;
2007-06-05 21:25:41 +00:00
}
- Page/Link: tooltips for links backported
- Page: rotation does not switch height and width
- Document/Part/Generator:
1. Add API for attaching stuff to the interface: ActionCollection and the Navigation Panel
also add possibility to merge an XML .rc file with menu layout. Relevant functions are:
QString Generator::getXMLFile(), returns a QString with your .rc file name.
void Generator::setupGUI (KActionCollection* , QToolbox* ), add your components to the user interface
2. Supporting backend settings:
If during startup, backends which provide a configuration ([X-KDE-oKularHasInternalSettings]
set to true) are found, a menu item: configure backends is created, clicking on it results in
loading all the generators that have settings, but not those that dont. the Generator::addPages(KConfigDialog *dlg)
function should be overloaded by a generator and dlg->addPage should be used to add pages.
If a user opens a file that needs an already loaded generator, the already loaded one is used instead of loading another.
3. Error/Warning/Notice sending support, to send a notice/error/warning, add a relevant notice/error/warning(QString& txt ,int duration)
to the generator class, and sending a message to the user is as simple as emitting a signal!
4. Intercepting of events generated by the PageView is done by Generator::handleEvent(QEvent*), subclass it, do a switch on QEvent::type(), handle your
event and return true if pageview is to proceed with its handling or false if not.
5. Support configuring the KPrinter on the generator side, use Generator::canConfigurePrinter(), return true there, and you get a nonconfigured KPrinter in your
Generator::print()
6. PixmapRequest handling update:
a.) Generator::canGeneratePixmap is now Generator::canGeneratePixmap(bool async)
b.) Document::sendGeneratorRequests is a slot now
c.) Old way of sending pixmaps (Document::requestPixmaps(QValueList<PixmapRequest*> checking if we can generate pixmap if not, waiting for receiving)
is replaced with: requestPixmaps only queues the pixmap all checking if w can generate is done in sendGeneratorReqest, the sendGeneratorRequest is
run in three places:
1. in requestPixmaps when we receive a request
2. in requestDone if pixmapStack is not empty
3. sendGeneratorRequest, apart from removing invalid requests, takes the current request and if generator canGeratePixmap(request->async)
it removes the pixmap from stack and sends to generator if not, QTimer::singleshots to itself after 20ms, it ends when stack has no valid pixmap request
7. Added a commented out zoom field to PixmapGenerator, mightcome in handy sometime
- TextPage: add instructions that handle simplyfing the RegularAreaRect, no more double painted borders in selection rectangles, this rocks.
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=445196
2005-08-10 16:14:39 +00:00
void Part : : slotGeneratorPreferences ( )
{
// an instance the dialog could be already created and could be cached,
// in which case you want to display the cached dialog
if ( KConfigDialog : : showDialog ( " generator_prefs " ) )
return ;
// we didn't find an instance of this dialog, so lets create it
2006-09-21 08:45:36 +00:00
KConfigDialog * dialog = new KConfigDialog ( m_pageView , " generator_prefs " , Okular : : Settings : : self ( ) ) ;
2006-06-17 11:11:48 +00:00
dialog - > setCaption ( i18n ( " Configure Backends " ) ) ;
- Page/Link: tooltips for links backported
- Page: rotation does not switch height and width
- Document/Part/Generator:
1. Add API for attaching stuff to the interface: ActionCollection and the Navigation Panel
also add possibility to merge an XML .rc file with menu layout. Relevant functions are:
QString Generator::getXMLFile(), returns a QString with your .rc file name.
void Generator::setupGUI (KActionCollection* , QToolbox* ), add your components to the user interface
2. Supporting backend settings:
If during startup, backends which provide a configuration ([X-KDE-oKularHasInternalSettings]
set to true) are found, a menu item: configure backends is created, clicking on it results in
loading all the generators that have settings, but not those that dont. the Generator::addPages(KConfigDialog *dlg)
function should be overloaded by a generator and dlg->addPage should be used to add pages.
If a user opens a file that needs an already loaded generator, the already loaded one is used instead of loading another.
3. Error/Warning/Notice sending support, to send a notice/error/warning, add a relevant notice/error/warning(QString& txt ,int duration)
to the generator class, and sending a message to the user is as simple as emitting a signal!
4. Intercepting of events generated by the PageView is done by Generator::handleEvent(QEvent*), subclass it, do a switch on QEvent::type(), handle your
event and return true if pageview is to proceed with its handling or false if not.
5. Support configuring the KPrinter on the generator side, use Generator::canConfigurePrinter(), return true there, and you get a nonconfigured KPrinter in your
Generator::print()
6. PixmapRequest handling update:
a.) Generator::canGeneratePixmap is now Generator::canGeneratePixmap(bool async)
b.) Document::sendGeneratorRequests is a slot now
c.) Old way of sending pixmaps (Document::requestPixmaps(QValueList<PixmapRequest*> checking if we can generate pixmap if not, waiting for receiving)
is replaced with: requestPixmaps only queues the pixmap all checking if w can generate is done in sendGeneratorReqest, the sendGeneratorRequest is
run in three places:
1. in requestPixmaps when we receive a request
2. in requestDone if pixmapStack is not empty
3. sendGeneratorRequest, apart from removing invalid requests, takes the current request and if generator canGeratePixmap(request->async)
it removes the pixmap from stack and sends to generator if not, QTimer::singleshots to itself after 20ms, it ends when stack has no valid pixmap request
7. Added a commented out zoom field to PixmapGenerator, mightcome in handy sometime
- TextPage: add instructions that handle simplyfing the RegularAreaRect, no more double painted borders in selection rectangles, this rocks.
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=445196
2005-08-10 16:14:39 +00:00
2007-01-28 15:46:10 +00:00
m_document - > fillConfigDialog ( dialog ) ;
- Page/Link: tooltips for links backported
- Page: rotation does not switch height and width
- Document/Part/Generator:
1. Add API for attaching stuff to the interface: ActionCollection and the Navigation Panel
also add possibility to merge an XML .rc file with menu layout. Relevant functions are:
QString Generator::getXMLFile(), returns a QString with your .rc file name.
void Generator::setupGUI (KActionCollection* , QToolbox* ), add your components to the user interface
2. Supporting backend settings:
If during startup, backends which provide a configuration ([X-KDE-oKularHasInternalSettings]
set to true) are found, a menu item: configure backends is created, clicking on it results in
loading all the generators that have settings, but not those that dont. the Generator::addPages(KConfigDialog *dlg)
function should be overloaded by a generator and dlg->addPage should be used to add pages.
If a user opens a file that needs an already loaded generator, the already loaded one is used instead of loading another.
3. Error/Warning/Notice sending support, to send a notice/error/warning, add a relevant notice/error/warning(QString& txt ,int duration)
to the generator class, and sending a message to the user is as simple as emitting a signal!
4. Intercepting of events generated by the PageView is done by Generator::handleEvent(QEvent*), subclass it, do a switch on QEvent::type(), handle your
event and return true if pageview is to proceed with its handling or false if not.
5. Support configuring the KPrinter on the generator side, use Generator::canConfigurePrinter(), return true there, and you get a nonconfigured KPrinter in your
Generator::print()
6. PixmapRequest handling update:
a.) Generator::canGeneratePixmap is now Generator::canGeneratePixmap(bool async)
b.) Document::sendGeneratorRequests is a slot now
c.) Old way of sending pixmaps (Document::requestPixmaps(QValueList<PixmapRequest*> checking if we can generate pixmap if not, waiting for receiving)
is replaced with: requestPixmaps only queues the pixmap all checking if w can generate is done in sendGeneratorReqest, the sendGeneratorRequest is
run in three places:
1. in requestPixmaps when we receive a request
2. in requestDone if pixmapStack is not empty
3. sendGeneratorRequest, apart from removing invalid requests, takes the current request and if generator canGeratePixmap(request->async)
it removes the pixmap from stack and sends to generator if not, QTimer::singleshots to itself after 20ms, it ends when stack has no valid pixmap request
7. Added a commented out zoom field to PixmapGenerator, mightcome in handy sometime
- TextPage: add instructions that handle simplyfing the RegularAreaRect, no more double painted borders in selection rectangles, this rocks.
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=445196
2005-08-10 16:14:39 +00:00
2007-07-12 20:04:56 +00:00
// keep us informed when the user changes settings
connect ( dialog , SIGNAL ( settingsChanged ( const QString & ) ) , this , SLOT ( slotNewGeneratorConfig ( ) ) ) ;
- Page/Link: tooltips for links backported
- Page: rotation does not switch height and width
- Document/Part/Generator:
1. Add API for attaching stuff to the interface: ActionCollection and the Navigation Panel
also add possibility to merge an XML .rc file with menu layout. Relevant functions are:
QString Generator::getXMLFile(), returns a QString with your .rc file name.
void Generator::setupGUI (KActionCollection* , QToolbox* ), add your components to the user interface
2. Supporting backend settings:
If during startup, backends which provide a configuration ([X-KDE-oKularHasInternalSettings]
set to true) are found, a menu item: configure backends is created, clicking on it results in
loading all the generators that have settings, but not those that dont. the Generator::addPages(KConfigDialog *dlg)
function should be overloaded by a generator and dlg->addPage should be used to add pages.
If a user opens a file that needs an already loaded generator, the already loaded one is used instead of loading another.
3. Error/Warning/Notice sending support, to send a notice/error/warning, add a relevant notice/error/warning(QString& txt ,int duration)
to the generator class, and sending a message to the user is as simple as emitting a signal!
4. Intercepting of events generated by the PageView is done by Generator::handleEvent(QEvent*), subclass it, do a switch on QEvent::type(), handle your
event and return true if pageview is to proceed with its handling or false if not.
5. Support configuring the KPrinter on the generator side, use Generator::canConfigurePrinter(), return true there, and you get a nonconfigured KPrinter in your
Generator::print()
6. PixmapRequest handling update:
a.) Generator::canGeneratePixmap is now Generator::canGeneratePixmap(bool async)
b.) Document::sendGeneratorRequests is a slot now
c.) Old way of sending pixmaps (Document::requestPixmaps(QValueList<PixmapRequest*> checking if we can generate pixmap if not, waiting for receiving)
is replaced with: requestPixmaps only queues the pixmap all checking if w can generate is done in sendGeneratorReqest, the sendGeneratorRequest is
run in three places:
1. in requestPixmaps when we receive a request
2. in requestDone if pixmapStack is not empty
3. sendGeneratorRequest, apart from removing invalid requests, takes the current request and if generator canGeratePixmap(request->async)
it removes the pixmap from stack and sends to generator if not, QTimer::singleshots to itself after 20ms, it ends when stack has no valid pixmap request
7. Added a commented out zoom field to PixmapGenerator, mightcome in handy sometime
- TextPage: add instructions that handle simplyfing the RegularAreaRect, no more double painted borders in selection rectangles, this rocks.
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=445196
2005-08-10 16:14:39 +00:00
dialog - > show ( ) ;
}
2007-01-13 00:33:50 +00:00
2007-09-09 10:50:36 +00:00
void Part : : notifySetup ( const QVector < Okular : : Page * > & /*pages*/ , int setupFlags )
2007-01-13 17:28:54 +00:00
{
2007-09-09 10:50:36 +00:00
if ( ! ( setupFlags & Okular : : DocumentObserver : : DocumentChanged ) )
2007-01-13 17:28:54 +00:00
return ;
rebuildBookmarkMenu ( ) ;
2007-03-07 18:15:00 +00:00
updateAboutBackendAction ( ) ;
2007-04-29 22:50:32 +00:00
m_searchWidget - > setEnabled ( m_document - > supportsSearching ( ) ) ;
2007-01-13 17:28:54 +00:00
}
2005-02-01 18:23:55 +00:00
void Part : : notifyViewportChanged ( bool /*smoothMove*/ )
2004-11-09 17:20:19 +00:00
{
2005-01-09 23:37:07 +00:00
// update actions if the page is changed
static int lastPage = - 1 ;
int viewportPage = m_document - > viewport ( ) . pageNumber ;
if ( viewportPage ! = lastPage )
{
2005-02-02 18:18:26 +00:00
updateViewActions ( ) ;
2005-01-09 23:37:07 +00:00
lastPage = viewportPage ;
}
2004-11-09 17:20:19 +00:00
}
2007-05-01 14:43:30 +00:00
void Part : : notifyPageChanged ( int page , int flags )
2007-01-13 17:28:54 +00:00
{
if ( ! ( flags & Okular : : DocumentObserver : : Bookmark ) )
return ;
rebuildBookmarkMenu ( ) ;
2007-05-01 14:43:30 +00:00
if ( page = = m_document - > viewport ( ) . pageNumber )
updateBookmarksActions ( ) ;
2007-01-13 17:28:54 +00:00
}
2007-01-13 00:33:50 +00:00
2004-10-12 11:08:09 +00:00
void Part : : goToPage ( uint i )
{
2004-11-09 17:20:19 +00:00
if ( i < = m_document - > pages ( ) )
2005-01-09 23:37:07 +00:00
m_document - > setViewportPage ( i - 1 ) ;
2004-10-12 11:08:09 +00:00
}
2007-01-13 00:33:50 +00:00
2007-07-29 14:36:49 +00:00
void Part : : openDocument ( const QString & doc )
2004-10-12 11:08:09 +00:00
{
2007-07-29 14:36:49 +00:00
openUrl ( KUrl ( doc ) ) ;
2004-10-12 11:08:09 +00:00
}
2007-01-13 00:33:50 +00:00
2004-10-12 11:08:09 +00:00
uint Part : : pages ( )
{
2005-06-13 17:39:58 +00:00
return m_document - > pages ( ) ;
}
2007-01-13 00:33:50 +00:00
2005-06-13 17:39:58 +00:00
uint Part : : currentPage ( )
{
return m_document - > pages ( ) ? m_document - > currentPage ( ) + 1 : 0 ;
}
2007-01-13 00:33:50 +00:00
2007-07-29 14:36:49 +00:00
QString Part : : currentDocument ( )
2005-06-13 17:39:58 +00:00
{
2007-07-29 14:36:49 +00:00
return m_document - > currentDocument ( ) . pathOrUrl ( ) ;
2004-10-12 11:08:09 +00:00
}
2007-01-13 00:33:50 +00:00
2009-05-30 17:00:16 +00:00
QString Part : : documentMetaData ( const QString & metaData ) const
{
const Okular : : DocumentInfo * info = m_document - > documentInfo ( ) ;
if ( info )
{
QDomElement docElement = info - > documentElement ( ) ;
for ( QDomNode node = docElement . firstChild ( ) ; ! node . isNull ( ) ; node = node . nextSibling ( ) )
{
const QDomElement element = node . toElement ( ) ;
if ( metaData . compare ( element . tagName ( ) , Qt : : CaseInsensitive ) = = 0 )
return element . attribute ( " value " ) ;
}
}
return QString ( ) ;
}
2005-07-15 18:20:57 +00:00
bool Part : : slotImportPSFile ( )
{
2007-01-13 00:33:50 +00:00
QString app = KStandardDirs : : findExe ( " ps2pdf " ) ;
if ( app . isEmpty ( ) )
{
// TODO point the user to their distro packages?
2008-01-20 15:35:19 +00:00
KMessageBox : : error ( widget ( ) , i18n ( " The program \" ps2pdf \" was not found, so Okular can not import PS files using it. " ) , i18n ( " ps2pdf not found " ) ) ;
2007-01-13 00:33:50 +00:00
return false ;
}
2006-04-13 11:57:16 +00:00
2006-07-04 23:09:39 +00:00
KUrl url = KFileDialog : : getOpenUrl ( KUrl ( ) , " application/postscript " , this - > widget ( ) ) ;
2006-10-16 17:57:44 +00:00
if ( url . isLocalFile ( ) )
2005-07-15 18:20:57 +00:00
{
2006-10-16 17:57:44 +00:00
KTemporaryFile tf ;
tf . setSuffix ( " .pdf " ) ;
tf . setAutoRemove ( false ) ;
if ( ! tf . open ( ) )
return false ;
m_temporaryLocalFile = tf . fileName ( ) ;
2005-07-15 18:20:57 +00:00
tf . close ( ) ;
2006-10-16 17:57:44 +00:00
2010-01-08 15:29:38 +00:00
setLocalFilePath ( url . toLocalFile ( ) ) ;
2007-03-27 00:00:41 +00:00
QStringList args ;
QProcess * p = new QProcess ( ) ;
args < < url . toLocalFile ( ) < < m_temporaryLocalFile ;
2005-07-15 18:20:57 +00:00
m_pageView - > displayMessage ( i18n ( " Importing PS file as PDF (this may take a while)... " ) ) ;
2007-03-27 00:00:41 +00:00
connect ( p , SIGNAL ( finished ( int , QProcess : : ExitStatus ) ) , this , SLOT ( psTransformEnded ( int , QProcess : : ExitStatus ) ) ) ;
p - > start ( app , args ) ;
2005-07-15 18:20:57 +00:00
return true ;
}
- Page/Link: tooltips for links backported
- Page: rotation does not switch height and width
- Document/Part/Generator:
1. Add API for attaching stuff to the interface: ActionCollection and the Navigation Panel
also add possibility to merge an XML .rc file with menu layout. Relevant functions are:
QString Generator::getXMLFile(), returns a QString with your .rc file name.
void Generator::setupGUI (KActionCollection* , QToolbox* ), add your components to the user interface
2. Supporting backend settings:
If during startup, backends which provide a configuration ([X-KDE-oKularHasInternalSettings]
set to true) are found, a menu item: configure backends is created, clicking on it results in
loading all the generators that have settings, but not those that dont. the Generator::addPages(KConfigDialog *dlg)
function should be overloaded by a generator and dlg->addPage should be used to add pages.
If a user opens a file that needs an already loaded generator, the already loaded one is used instead of loading another.
3. Error/Warning/Notice sending support, to send a notice/error/warning, add a relevant notice/error/warning(QString& txt ,int duration)
to the generator class, and sending a message to the user is as simple as emitting a signal!
4. Intercepting of events generated by the PageView is done by Generator::handleEvent(QEvent*), subclass it, do a switch on QEvent::type(), handle your
event and return true if pageview is to proceed with its handling or false if not.
5. Support configuring the KPrinter on the generator side, use Generator::canConfigurePrinter(), return true there, and you get a nonconfigured KPrinter in your
Generator::print()
6. PixmapRequest handling update:
a.) Generator::canGeneratePixmap is now Generator::canGeneratePixmap(bool async)
b.) Document::sendGeneratorRequests is a slot now
c.) Old way of sending pixmaps (Document::requestPixmaps(QValueList<PixmapRequest*> checking if we can generate pixmap if not, waiting for receiving)
is replaced with: requestPixmaps only queues the pixmap all checking if w can generate is done in sendGeneratorReqest, the sendGeneratorRequest is
run in three places:
1. in requestPixmaps when we receive a request
2. in requestDone if pixmapStack is not empty
3. sendGeneratorRequest, apart from removing invalid requests, takes the current request and if generator canGeratePixmap(request->async)
it removes the pixmap from stack and sends to generator if not, QTimer::singleshots to itself after 20ms, it ends when stack has no valid pixmap request
7. Added a commented out zoom field to PixmapGenerator, mightcome in handy sometime
- TextPage: add instructions that handle simplyfing the RegularAreaRect, no more double painted borders in selection rectangles, this rocks.
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=445196
2005-08-10 16:14:39 +00:00
2006-11-18 21:36:56 +00:00
m_temporaryLocalFile . clear ( ) ;
- Page/Link: tooltips for links backported
- Page: rotation does not switch height and width
- Document/Part/Generator:
1. Add API for attaching stuff to the interface: ActionCollection and the Navigation Panel
also add possibility to merge an XML .rc file with menu layout. Relevant functions are:
QString Generator::getXMLFile(), returns a QString with your .rc file name.
void Generator::setupGUI (KActionCollection* , QToolbox* ), add your components to the user interface
2. Supporting backend settings:
If during startup, backends which provide a configuration ([X-KDE-oKularHasInternalSettings]
set to true) are found, a menu item: configure backends is created, clicking on it results in
loading all the generators that have settings, but not those that dont. the Generator::addPages(KConfigDialog *dlg)
function should be overloaded by a generator and dlg->addPage should be used to add pages.
If a user opens a file that needs an already loaded generator, the already loaded one is used instead of loading another.
3. Error/Warning/Notice sending support, to send a notice/error/warning, add a relevant notice/error/warning(QString& txt ,int duration)
to the generator class, and sending a message to the user is as simple as emitting a signal!
4. Intercepting of events generated by the PageView is done by Generator::handleEvent(QEvent*), subclass it, do a switch on QEvent::type(), handle your
event and return true if pageview is to proceed with its handling or false if not.
5. Support configuring the KPrinter on the generator side, use Generator::canConfigurePrinter(), return true there, and you get a nonconfigured KPrinter in your
Generator::print()
6. PixmapRequest handling update:
a.) Generator::canGeneratePixmap is now Generator::canGeneratePixmap(bool async)
b.) Document::sendGeneratorRequests is a slot now
c.) Old way of sending pixmaps (Document::requestPixmaps(QValueList<PixmapRequest*> checking if we can generate pixmap if not, waiting for receiving)
is replaced with: requestPixmaps only queues the pixmap all checking if w can generate is done in sendGeneratorReqest, the sendGeneratorRequest is
run in three places:
1. in requestPixmaps when we receive a request
2. in requestDone if pixmapStack is not empty
3. sendGeneratorRequest, apart from removing invalid requests, takes the current request and if generator canGeratePixmap(request->async)
it removes the pixmap from stack and sends to generator if not, QTimer::singleshots to itself after 20ms, it ends when stack has no valid pixmap request
7. Added a commented out zoom field to PixmapGenerator, mightcome in handy sometime
- TextPage: add instructions that handle simplyfing the RegularAreaRect, no more double painted borders in selection rectangles, this rocks.
svn path=/trunk/playground/graphics/oKular/kpdf/; revision=445196
2005-08-10 16:14:39 +00:00
return false ;
2005-07-15 18:20:57 +00:00
}
2005-11-04 11:59:51 +00:00
2007-01-13 00:33:50 +00:00
2004-09-09 13:25:40 +00:00
bool Part : : openFile ( )
2003-09-15 09:35:55 +00:00
{
2005-11-04 11:59:51 +00:00
KMimeType : : Ptr mime ;
2007-09-15 14:14:33 +00:00
if ( ! arguments ( ) . mimeType ( ) . isEmpty ( ) )
2005-11-04 11:59:51 +00:00
{
2007-08-10 18:10:44 +00:00
mime = KMimeType : : mimeType ( arguments ( ) . mimeType ( ) ) ;
2005-11-04 11:59:51 +00:00
}
2007-08-10 18:10:44 +00:00
if ( ! mime )
2005-11-04 11:59:51 +00:00
{
2007-08-10 18:10:44 +00:00
mime = KMimeType : : findByPath ( localFilePath ( ) ) ;
2005-11-04 11:59:51 +00:00
}
2007-07-29 00:55:17 +00:00
bool isCompressedFile = false ;
bool uncompressOk = true ;
QString fileNameToOpen = localFilePath ( ) ;
QString compressedMime = compressedMimeFor ( mime - > name ( ) ) ;
if ( compressedMime . isEmpty ( ) )
compressedMime = compressedMimeFor ( mime - > parentMimeType ( ) ) ;
if ( ! compressedMime . isEmpty ( ) )
{
isCompressedFile = true ;
uncompressOk = handleCompressed ( fileNameToOpen , localFilePath ( ) , compressedMime ) ;
mime = KMimeType : : findByPath ( fileNameToOpen ) ;
}
bool ok = false ;
if ( uncompressOk )
{
2008-11-16 01:23:31 +00:00
if ( mime - > is ( " application/vnd.kde.okular-archive " ) )
ok = m_document - > openDocumentArchive ( fileNameToOpen , url ( ) ) ;
else
ok = m_document - > openDocument ( fileNameToOpen , url ( ) , mime ) ;
2007-07-29 00:55:17 +00:00
}
2005-06-24 16:45:25 +00:00
bool canSearch = m_document - > supportsSearching ( ) ;
2005-01-27 17:31:07 +00:00
// update one-time actions
2005-06-24 16:45:25 +00:00
m_find - > setEnabled ( ok & & canSearch ) ;
m_findNext - > setEnabled ( ok & & canSearch ) ;
2009-02-14 17:11:29 +00:00
m_findPrev - > setEnabled ( ok & & canSearch ) ;
2008-03-11 23:40:59 +00:00
m_saveAs - > setEnabled ( ok & & m_document - > canSaveChanges ( ) ) ;
m_saveCopyAs - > setEnabled ( ok ) ;
2008-03-31 20:51:05 +00:00
emit enablePrintAction ( ok & & m_document - > printingSupport ( ) ! = Okular : : Document : : NoPrinting ) ;
2007-11-26 21:43:54 +00:00
m_printPreview - > setEnabled ( ok & & m_document - > printingSupport ( ) ! = Okular : : Document : : NoPrinting ) ;
2005-02-02 18:18:26 +00:00
m_showProperties - > setEnabled ( ok ) ;
2006-10-03 10:11:16 +00:00
bool hasEmbeddedFiles = ok & & m_document - > embeddedFiles ( ) & & m_document - > embeddedFiles ( ) - > count ( ) > 0 ;
m_showEmbeddedFiles - > setEnabled ( hasEmbeddedFiles ) ;
2007-02-23 10:54:30 +00:00
m_topMessage - > setVisible ( hasEmbeddedFiles ) ;
2007-06-05 20:49:00 +00:00
// m_pageView->toggleFormsAction() may be null on dummy mode
m_formsMessage - > setVisible ( ok & & m_pageView - > toggleFormsAction ( ) & & m_pageView - > toggleFormsAction ( ) - > isEnabled ( ) ) ;
2005-02-02 18:18:26 +00:00
m_showPresentation - > setEnabled ( ok ) ;
2006-07-01 22:17:53 +00:00
if ( ok )
{
2006-10-25 15:35:53 +00:00
m_exportFormats = m_document - > exportFormats ( ) ;
QList < Okular : : ExportFormat > : : ConstIterator it = m_exportFormats . constBegin ( ) ;
QList < Okular : : ExportFormat > : : ConstIterator itEnd = m_exportFormats . constEnd ( ) ;
2006-07-01 22:17:53 +00:00
QMenu * menu = m_exportAs - > menu ( ) ;
for ( ; it ! = itEnd ; + + it )
{
2007-03-10 21:32:09 +00:00
menu - > addAction ( actionForExportFormat ( * it ) ) ;
2006-07-01 22:17:53 +00:00
}
2007-07-29 00:55:17 +00:00
if ( isCompressedFile )
{
m_realUrl = url ( ) ;
}
2008-06-07 21:08:41 +00:00
# ifdef OKULAR_KEEP_FILE_OPEN
if ( keepFileOpen ( ) )
m_keeper - > open ( fileNameToOpen ) ;
# endif
2006-07-01 22:17:53 +00:00
}
m_exportAsText - > setEnabled ( ok & & m_document - > canExportToText ( ) ) ;
2008-11-16 01:23:31 +00:00
m_exportAsDocArchive - > setEnabled ( ok ) ;
2007-09-07 09:09:39 +00:00
m_exportAs - > setEnabled ( ok ) ;
2005-01-27 17:31:07 +00:00
// update viewing actions
2005-02-02 18:18:26 +00:00
updateViewActions ( ) ;
2008-11-21 10:50:16 +00:00
2008-03-17 23:02:33 +00:00
m_fileWasRemoved = false ;
2005-01-01 15:44:44 +00:00
2005-01-27 17:31:07 +00:00
if ( ! ok )
{
// if can't open document, update windows so they display blank contents
2009-06-29 20:55:50 +00:00
m_pageView - > viewport ( ) - > update ( ) ;
2006-05-05 21:12:04 +00:00
m_thumbnailList - > update ( ) ;
2005-01-27 17:31:07 +00:00
return false ;
}
// set the file to the fileWatcher
2008-03-17 23:02:33 +00:00
if ( url ( ) . isLocalFile ( ) )
{
if ( ! m_watcher - > contains ( localFilePath ( ) ) ) m_watcher - > addFile ( localFilePath ( ) ) ;
QFileInfo fi ( localFilePath ( ) ) ;
if ( ! m_watcher - > contains ( fi . absolutePath ( ) ) ) m_watcher - > addDir ( fi . absolutePath ( ) ) ;
}
2005-01-27 17:31:07 +00:00
2007-04-15 20:00:43 +00:00
// if the 'OpenTOC' flag is set, open the TOC
2007-08-06 17:24:10 +00:00
if ( m_document - > metaData ( " OpenTOC " ) . toBool ( ) & & m_sidebar - > isItemEnabled ( 0 ) )
2006-10-28 18:21:55 +00:00
{
2007-08-06 17:24:10 +00:00
m_sidebar - > setCurrentIndex ( 0 ) ;
2006-10-28 18:21:55 +00:00
}
2007-01-04 00:20:50 +00:00
// if the 'StartFullScreen' flag is set, or the command line flag was
// specified, start presentation
if ( m_document - > metaData ( " StartFullScreen " ) . toBool ( ) | | m_cliPresentation )
2005-06-13 16:55:57 +00:00
{
2008-03-13 11:42:15 +00:00
bool goAheadWithPresentationMode = true ;
2007-01-04 00:20:50 +00:00
if ( ! m_cliPresentation )
2008-03-13 11:42:15 +00:00
{
2008-04-11 21:16:43 +00:00
const QString text = i18n ( " The document requested to be launched in presentation mode. \n "
2008-03-13 11:42:15 +00:00
" Do you want to allow it? " ) ;
const QString caption = i18n ( " Presentation Mode " ) ;
const KGuiItem yesItem = KGuiItem ( i18n ( " Allow " ) , " dialog-ok " , i18n ( " Allow the presentation mode " ) ) ;
const KGuiItem noItem = KGuiItem ( i18n ( " Do Not Allow " ) , " process-stop " , i18n ( " Do not allow the presentation mode " ) ) ;
const int result = KMessageBox : : questionYesNo ( widget ( ) , text , caption , yesItem , noItem ) ;
if ( result = = KMessageBox : : No )
goAheadWithPresentationMode = false ;
}
2007-01-04 00:20:50 +00:00
m_cliPresentation = false ;
2008-03-13 11:42:15 +00:00
if ( goAheadWithPresentationMode )
QMetaObject : : invokeMethod ( this , " slotShowPresentation " , Qt : : QueuedConnection ) ;
2005-06-13 16:55:57 +00:00
}
2007-08-28 23:17:00 +00:00
m_generatorGuiClient = factory ( ) ? m_document - > guiClient ( ) : 0 ;
if ( m_generatorGuiClient )
factory ( ) - > addClient ( m_generatorGuiClient ) ;
2005-01-27 17:31:07 +00:00
return true ;
2003-09-15 09:35:55 +00:00
}
2009-05-17 18:08:43 +00:00
bool Part : : openUrl ( const KUrl & _url )
2004-09-18 16:41:23 +00:00
{
2009-05-17 18:08:43 +00:00
KUrl url ( _url ) ;
if ( url . hasHTMLRef ( ) )
{
const QString dest = url . htmlRef ( ) ;
bool ok = true ;
const int page = dest . toInt ( & ok ) ;
if ( ok )
{
Okular : : DocumentViewport vp ( page - 1 ) ;
vp . rePos . enabled = true ;
vp . rePos . normalizedX = 0 ;
vp . rePos . normalizedY = 0 ;
vp . rePos . pos = Okular : : DocumentViewport : : TopLeft ;
m_document - > setNextDocumentViewport ( vp ) ;
}
else
{
m_document - > setNextDocumentDestination ( dest ) ;
}
url . setHTMLRef ( QString ( ) ) ;
}
2006-08-30 13:02:48 +00:00
// this calls in sequence the 'closeUrl' and 'openFile' methods
2007-07-29 00:55:17 +00:00
bool openOk = KParts : : ReadOnlyPart : : openUrl ( url ) ;
2005-07-15 18:20:57 +00:00
2005-06-24 16:39:57 +00:00
if ( openOk )
2006-07-30 23:37:50 +00:00
{
2006-10-15 12:26:16 +00:00
m_viewportDirty . pageNumber = - 1 ;
2006-07-30 23:37:50 +00:00
2007-06-05 21:25:41 +00:00
setWindowTitleFromDocument ( ) ;
2006-07-30 23:37:50 +00:00
}
2007-01-26 18:35:28 +00:00
2005-06-24 16:39:57 +00:00
return openOk ;
2004-09-18 16:41:23 +00:00
}
2007-01-13 00:33:50 +00:00
2006-08-30 13:02:48 +00:00
bool Part : : closeUrl ( )
2005-02-02 18:18:26 +00:00
{
2007-03-28 22:01:38 +00:00
if ( ! m_temporaryLocalFile . isNull ( ) & & m_temporaryLocalFile ! = localFilePath ( ) )
2005-07-15 18:20:57 +00:00
{
QFile : : remove ( m_temporaryLocalFile ) ;
2006-11-18 21:36:56 +00:00
m_temporaryLocalFile . clear ( ) ;
2005-07-15 18:20:57 +00:00
}
2005-11-04 11:59:51 +00:00
slotHidePresentation ( ) ;
2005-02-02 18:18:26 +00:00
m_find - > setEnabled ( false ) ;
m_findNext - > setEnabled ( false ) ;
2009-02-14 17:11:29 +00:00
m_findPrev - > setEnabled ( false ) ;
2005-02-02 18:18:26 +00:00
m_saveAs - > setEnabled ( false ) ;
2008-03-11 23:40:59 +00:00
m_saveCopyAs - > setEnabled ( false ) ;
2005-02-02 18:18:26 +00:00
m_printPreview - > setEnabled ( false ) ;
m_showProperties - > setEnabled ( false ) ;
2006-05-28 16:54:54 +00:00
m_showEmbeddedFiles - > setEnabled ( false ) ;
2007-09-07 09:09:39 +00:00
m_exportAs - > setEnabled ( false ) ;
2006-07-01 22:17:53 +00:00
m_exportAsText - > setEnabled ( false ) ;
2008-11-16 01:23:31 +00:00
m_exportAsDocArchive - > setEnabled ( false ) ;
2006-10-25 15:35:53 +00:00
m_exportFormats . clear ( ) ;
2006-07-01 22:17:53 +00:00
QMenu * menu = m_exportAs - > menu ( ) ;
QList < QAction * > acts = menu - > actions ( ) ;
int num = acts . count ( ) ;
2008-11-16 01:23:31 +00:00
for ( int i = 2 ; i < num ; + + i )
2006-07-01 22:17:53 +00:00
{
menu - > removeAction ( acts . at ( i ) ) ;
delete acts . at ( i ) ;
}
2005-02-02 18:18:26 +00:00
m_showPresentation - > setEnabled ( false ) ;
2005-11-04 11:59:51 +00:00
emit setWindowCaption ( " " ) ;
emit enablePrintAction ( false ) ;
2007-07-25 10:08:38 +00:00
m_realUrl = KUrl ( ) ;
2008-01-01 15:59:18 +00:00
if ( url ( ) . isLocalFile ( ) )
2008-03-17 23:02:33 +00:00
{
2008-01-01 15:59:18 +00:00
m_watcher - > removeFile ( localFilePath ( ) ) ;
2008-03-17 23:02:33 +00:00
QFileInfo fi ( localFilePath ( ) ) ;
m_watcher - > removeDir ( fi . absolutePath ( ) ) ;
}
m_fileWasRemoved = false ;
2007-08-28 23:17:00 +00:00
if ( m_generatorGuiClient )
factory ( ) - > removeClient ( m_generatorGuiClient ) ;
m_generatorGuiClient = 0 ;
2005-02-02 18:18:26 +00:00
m_document - > closeDocument ( ) ;
2005-11-04 11:59:51 +00:00
updateViewActions ( ) ;
2007-07-29 10:38:48 +00:00
delete m_tempfile ;
m_tempfile = 0 ;
2008-09-22 22:58:32 +00:00
if ( widget ( ) )
{
m_searchWidget - > clearText ( ) ;
m_topMessage - > setVisible ( false ) ;
m_formsMessage - > setVisible ( false ) ;
}
2008-06-07 21:08:41 +00:00
# ifdef OKULAR_KEEP_FILE_OPEN
m_keeper - > close ( ) ;
# endif
2006-08-29 21:09:55 +00:00
return KParts : : ReadOnlyPart : : closeUrl ( ) ;
2005-02-02 18:18:26 +00:00
}
2007-01-13 00:33:50 +00:00
2005-11-04 11:59:51 +00:00
void Part : : close ( )
{
2009-03-22 18:38:38 +00:00
if ( m_embedMode = = NativeShellMode )
2007-01-13 00:33:50 +00:00
{
closeUrl ( ) ;
}
2007-04-15 19:11:10 +00:00
else KMessageBox : : information ( widget ( ) , i18n ( " This link points to a close document action that does not work when using the embedded viewer. " ) , QString ( ) , " warnNoCloseIfNotInOkular " ) ;
2005-11-04 11:59:51 +00:00
}
2007-01-13 00:33:50 +00:00
2005-11-04 11:59:51 +00:00
void Part : : cannotQuit ( )
{
2007-04-15 19:11:10 +00:00
KMessageBox : : information ( widget ( ) , i18n ( " This link points to a quit application action that does not work when using the embedded viewer. " ) , QString ( ) , " warnNoQuitIfNotInOkular " ) ;
2005-11-04 11:59:51 +00:00
}
2007-01-13 00:33:50 +00:00
2005-03-12 15:39:04 +00:00
void Part : : slotShowLeftPanel ( )
2004-12-01 22:18:27 +00:00
{
2005-03-12 15:39:04 +00:00
bool showLeft = m_showLeftPanel - > isChecked ( ) ;
2006-09-21 08:45:36 +00:00
Okular : : Settings : : setShowLeftPanel ( showLeft ) ;
2007-05-23 21:59:12 +00:00
Okular : : Settings : : self ( ) - > writeConfig ( ) ;
2005-03-13 13:14:44 +00:00
// show/hide left panel
2007-08-06 17:24:10 +00:00
m_sidebar - > setSidebarVisibility ( showLeft ) ;
2005-11-04 11:59:51 +00:00
}
2007-01-13 00:33:50 +00:00
2008-03-17 23:02:33 +00:00
void Part : : slotFileDirty ( const QString & path )
2004-12-01 22:18:27 +00:00
{
2007-01-13 00:33:50 +00:00
// The beauty of this is that each start cancels the previous one.
// This means that timeout() is only fired when there have
// no changes to the file for the last 750 milisecs.
// This ensures that we don't update on every other byte that gets
// written to the file.
2008-03-17 23:02:33 +00:00
if ( path = = localFilePath ( ) )
2007-01-13 00:33:50 +00:00
{
m_dirtyHandler - > start ( 750 ) ;
}
2008-03-17 23:02:33 +00:00
else
{
QFileInfo fi ( localFilePath ( ) ) ;
if ( fi . absolutePath ( ) = = path )
{
// Our parent has been dirtified
if ( ! QFile : : exists ( localFilePath ( ) ) )
{
m_fileWasRemoved = true ;
}
else if ( m_fileWasRemoved & & QFile : : exists ( localFilePath ( ) ) )
{
// we need to watch the new file
m_watcher - > removeFile ( localFilePath ( ) ) ;
m_watcher - > addFile ( localFilePath ( ) ) ;
m_dirtyHandler - > start ( 750 ) ;
}
}
}
2004-12-01 22:18:27 +00:00
}
2007-01-13 00:33:50 +00:00
2005-01-27 17:31:07 +00:00
void Part : : slotDoFileDirty ( )
2004-12-01 22:18:27 +00:00
{
2005-06-24 16:39:57 +00:00
// do the following the first time the file is reloaded
2005-07-15 18:20:57 +00:00
if ( m_viewportDirty . pageNumber = = - 1 )
2005-06-24 16:39:57 +00:00
{
// store the current viewport
2006-10-15 12:26:16 +00:00
m_viewportDirty = m_document - > viewport ( ) ;
2007-04-20 23:22:56 +00:00
// store the current toolbox pane
2007-08-06 17:24:10 +00:00
m_dirtyToolboxIndex = m_sidebar - > currentIndex ( ) ;
2007-11-01 17:52:47 +00:00
m_wasSidebarVisible = m_sidebar - > isSidebarVisible ( ) ;
2007-04-20 23:22:56 +00:00
2006-10-15 12:26:16 +00:00
// store if presentation view was open
m_wasPresentationOpen = ( ( PresentationWidget * ) m_presentationWidget ! = 0 ) ;
2005-06-24 16:39:57 +00:00
// inform the user about the operation in progress
m_pageView - > displayMessage ( i18n ( " Reloading the document... " ) ) ;
}
// close and (try to) reopen the document
2007-03-13 20:01:56 +00:00
if ( KParts : : ReadOnlyPart : : openUrl ( url ( ) ) )
2005-06-24 16:39:57 +00:00
{
2006-12-28 16:58:56 +00:00
// on successful opening, restore the previous viewport
2007-01-13 00:33:50 +00:00
if ( m_viewportDirty . pageNumber > = ( int ) m_document - > pages ( ) )
2005-07-15 18:20:57 +00:00
m_viewportDirty . pageNumber = ( int ) m_document - > pages ( ) - 1 ;
m_document - > setViewport ( m_viewportDirty ) ;
m_viewportDirty . pageNumber = - 1 ;
2007-08-06 17:24:10 +00:00
if ( m_sidebar - > currentIndex ( ) ! = m_dirtyToolboxIndex & & m_sidebar - > isItemEnabled ( m_dirtyToolboxIndex ) )
2007-04-20 23:22:56 +00:00
{
2007-08-06 17:24:10 +00:00
m_sidebar - > setCurrentIndex ( m_dirtyToolboxIndex ) ;
2007-04-20 23:22:56 +00:00
}
2007-11-01 17:52:47 +00:00
if ( m_sidebar - > isSidebarVisible ( ) ! = m_wasSidebarVisible )
{
m_sidebar - > setCurrentIndex ( m_sidebar - > currentIndex ( ) ) ;
}
2006-10-15 12:26:16 +00:00
if ( m_wasPresentationOpen ) slotShowPresentation ( ) ;
2007-11-26 21:43:54 +00:00
emit enablePrintAction ( true & & m_document - > printingSupport ( ) ! = Okular : : Document : : NoPrinting ) ;
2005-06-24 16:39:57 +00:00
}
else
{
// start watching the file again (since we dropped it on close)
2007-03-13 20:01:56 +00:00
m_watcher - > addFile ( localFilePath ( ) ) ;
2006-05-13 11:33:36 +00:00
m_dirtyHandler - > start ( 750 ) ;
2005-06-24 16:39:57 +00:00
}
2004-12-01 22:18:27 +00:00
}
2007-01-13 00:33:50 +00:00
2005-02-02 18:18:26 +00:00
void Part : : updateViewActions ( )
2003-09-14 21:49:26 +00:00
{
2005-02-02 18:18:26 +00:00
bool opened = m_document - > pages ( ) > 0 ;
if ( opened )
2004-11-09 17:20:19 +00:00
{
bool atBegin = m_document - > currentPage ( ) < 1 ;
bool atEnd = m_document - > currentPage ( ) > = ( m_document - > pages ( ) - 1 ) ;
m_gotoPage - > setEnabled ( m_document - > pages ( ) > 1 ) ;
m_firstPage - > setEnabled ( ! atBegin ) ;
m_prevPage - > setEnabled ( ! atBegin ) ;
m_lastPage - > setEnabled ( ! atEnd ) ;
m_nextPage - > setEnabled ( ! atEnd ) ;
2007-06-17 09:45:59 +00:00
if ( m_historyBack ) m_historyBack - > setEnabled ( ! m_document - > historyAtBegin ( ) ) ;
if ( m_historyNext ) m_historyNext - > setEnabled ( ! m_document - > historyAtEnd ( ) ) ;
2007-05-06 11:23:26 +00:00
m_reload - > setEnabled ( true ) ;
2007-11-14 00:04:07 +00:00
m_copy - > setEnabled ( true ) ;
m_selectAll - > setEnabled ( true ) ;
2004-11-09 17:20:19 +00:00
}
else
{
m_gotoPage - > setEnabled ( false ) ;
m_firstPage - > setEnabled ( false ) ;
m_lastPage - > setEnabled ( false ) ;
m_prevPage - > setEnabled ( false ) ;
m_nextPage - > setEnabled ( false ) ;
2007-06-17 09:45:59 +00:00
if ( m_historyBack ) m_historyBack - > setEnabled ( false ) ;
if ( m_historyNext ) m_historyNext - > setEnabled ( false ) ;
2007-05-06 11:23:26 +00:00
m_reload - > setEnabled ( false ) ;
2007-11-14 00:04:07 +00:00
m_copy - > setEnabled ( false ) ;
m_selectAll - > setEnabled ( false ) ;
2004-11-09 17:20:19 +00:00
}
2007-05-01 14:43:30 +00:00
updateBookmarksActions ( ) ;
}
void Part : : updateBookmarksActions ( )
{
bool opened = m_document - > pages ( ) > 0 ;
if ( opened )
{
m_addBookmark - > setEnabled ( true ) ;
2007-10-28 18:31:33 +00:00
if ( m_document - > bookmarkManager ( ) - > isBookmarked ( m_document - > currentPage ( ) ) )
2007-05-01 14:43:30 +00:00
{
m_addBookmark - > setText ( i18n ( " Remove Bookmark " ) ) ;
2008-01-03 19:55:37 +00:00
m_addBookmark - > setIcon ( KIcon ( " edit-delete-bookmark " ) ) ;
2007-05-01 14:43:30 +00:00
}
else
{
m_addBookmark - > setText ( m_addBookmarkText ) ;
2007-05-01 16:38:35 +00:00
m_addBookmark - > setIcon ( m_addBookmarkIcon ) ;
2007-05-01 14:43:30 +00:00
}
}
else
{
m_addBookmark - > setEnabled ( false ) ;
m_addBookmark - > setText ( m_addBookmarkText ) ;
2007-05-01 16:38:35 +00:00
m_addBookmark - > setIcon ( m_addBookmarkIcon ) ;
2007-05-01 14:43:30 +00:00
}
2003-09-14 21:49:26 +00:00
}
2003-09-14 20:46:38 +00:00
2007-01-13 00:33:50 +00:00
2004-09-23 21:49:00 +00:00
void Part : : enableTOC ( bool enable )
{
2007-08-06 17:24:10 +00:00
m_sidebar - > setItemEnabled ( 0 , enable ) ;
2004-09-23 21:49:00 +00:00
}
2008-02-05 17:36:04 +00:00
void Part : : slotRebuildBookmarkMenu ( )
{
rebuildBookmarkMenu ( ) ;
}
2007-01-13 00:33:50 +00:00
2007-03-17 22:58:41 +00:00
void Part : : slotShowFindBar ( )
{
m_findBar - > show ( ) ;
m_findBar - > focusAndSetCursor ( ) ;
}
void Part : : slotHideFindBar ( )
{
2009-05-08 23:19:37 +00:00
if ( m_findBar - > maybeHide ( ) )
{
m_pageView - > setFocus ( ) ;
}
2007-03-17 22:58:41 +00:00
}
2004-09-18 16:41:23 +00:00
//BEGIN go to page dialog
2006-09-21 08:45:36 +00:00
class GotoPageDialog : public KDialog
2003-09-14 20:46:38 +00:00
{
2007-01-13 00:33:50 +00:00
public :
GotoPageDialog ( QWidget * p , int current , int max ) : KDialog ( p )
{
setCaption ( i18n ( " Go to Page " ) ) ;
setButtons ( Ok | Cancel ) ;
setDefaultButton ( Ok ) ;
QWidget * w = new QWidget ( this ) ;
setMainWidget ( w ) ;
QVBoxLayout * topLayout = new QVBoxLayout ( w ) ;
topLayout - > setMargin ( 0 ) ;
topLayout - > setSpacing ( spacingHint ( ) ) ;
e1 = new KIntNumInput ( current , w ) ;
e1 - > setRange ( 1 , max ) ;
e1 - > setEditFocus ( true ) ;
2008-03-04 23:32:58 +00:00
e1 - > setSliderEnabled ( true ) ;
2007-01-13 00:33:50 +00:00
QLabel * label = new QLabel ( i18n ( " &Page: " ) , w ) ;
label - > setBuddy ( e1 ) ;
topLayout - > addWidget ( label ) ;
topLayout - > addWidget ( e1 ) ;
// A little bit extra space
topLayout - > addSpacing ( spacingHint ( ) ) ;
topLayout - > addStretch ( 10 ) ;
e1 - > setFocus ( ) ;
}
int getPage ( ) const
{
return e1 - > value ( ) ;
}
protected :
KIntNumInput * e1 ;
2004-09-09 13:25:40 +00:00
} ;
2004-09-18 16:41:23 +00:00
//END go to page dialog
2004-09-09 13:25:40 +00:00
void Part : : slotGoToPage ( )
{
2006-09-21 08:45:36 +00:00
GotoPageDialog pageDialog ( m_pageView , m_document - > currentPage ( ) + 1 , m_document - > pages ( ) ) ;
2004-11-09 17:20:19 +00:00
if ( pageDialog . exec ( ) = = QDialog : : Accepted )
2005-01-09 23:37:07 +00:00
m_document - > setViewportPage ( pageDialog . getPage ( ) - 1 ) ;
2002-08-30 09:14:01 +00:00
}
2007-01-13 00:33:50 +00:00
2004-09-09 13:25:40 +00:00
void Part : : slotPreviousPage ( )
2003-09-14 20:23:01 +00:00
{
2006-05-14 16:28:53 +00:00
if ( m_document - > isOpened ( ) & & ! ( m_document - > currentPage ( ) < 1 ) )
2005-01-09 23:37:07 +00:00
m_document - > setViewportPage ( m_document - > currentPage ( ) - 1 ) ;
2003-09-14 20:23:01 +00:00
}
2007-01-13 00:33:50 +00:00
2004-09-09 13:25:40 +00:00
void Part : : slotNextPage ( )
2003-09-14 20:23:01 +00:00
{
2005-11-04 11:59:51 +00:00
if ( m_document - > isOpened ( ) & & m_document - > currentPage ( ) < ( m_document - > pages ( ) - 1 ) )
2005-01-09 23:37:07 +00:00
m_document - > setViewportPage ( m_document - > currentPage ( ) + 1 ) ;
2004-09-09 13:25:40 +00:00
}
2007-01-13 00:33:50 +00:00
2004-09-11 15:59:32 +00:00
void Part : : slotGotoFirst ( )
2004-09-09 13:25:40 +00:00
{
2005-11-04 11:59:51 +00:00
if ( m_document - > isOpened ( ) )
m_document - > setViewportPage ( 0 ) ;
2003-09-14 20:23:01 +00:00
}
2007-01-13 00:33:50 +00:00
2004-09-11 15:59:32 +00:00
void Part : : slotGotoLast ( )
2003-09-14 14:54:16 +00:00
{
2005-11-04 11:59:51 +00:00
if ( m_document - > isOpened ( ) )
m_document - > setViewportPage ( m_document - > pages ( ) - 1 ) ;
2003-09-14 14:54:16 +00:00
}
2007-01-13 00:33:50 +00:00
2005-01-27 17:31:07 +00:00
void Part : : slotHistoryBack ( )
{
m_document - > setPrevViewport ( ) ;
}
2007-01-13 00:33:50 +00:00
2005-01-27 17:31:07 +00:00
void Part : : slotHistoryNext ( )
{
m_document - > setNextViewport ( ) ;
}
2007-01-13 00:33:50 +00:00
2007-05-01 14:43:30 +00:00
void Part : : slotAddBookmark ( )
{
uint current = m_document - > currentPage ( ) ;
2007-10-28 18:31:33 +00:00
if ( m_document - > bookmarkManager ( ) - > isBookmarked ( current ) )
2007-05-01 14:43:30 +00:00
{
2007-10-28 18:31:33 +00:00
m_document - > bookmarkManager ( ) - > removeBookmark ( current ) ;
2007-05-01 14:43:30 +00:00
}
else
{
2007-10-28 18:31:33 +00:00
m_document - > bookmarkManager ( ) - > addBookmark ( current ) ;
2007-05-01 14:43:30 +00:00
}
}
2006-06-24 10:56:06 +00:00
void Part : : slotPreviousBookmark ( )
{
uint current = m_document - > currentPage ( ) ;
// we are at the first page
if ( current = = 0 )
return ;
for ( int i = current - 1 ; i > = 0 ; - - i )
{
2007-10-28 18:31:33 +00:00
if ( m_document - > bookmarkManager ( ) - > isBookmarked ( i ) )
2006-06-24 10:56:06 +00:00
{
m_document - > setViewportPage ( i ) ;
break ;
}
}
}
2007-01-13 00:33:50 +00:00
2006-06-24 10:56:06 +00:00
void Part : : slotNextBookmark ( )
{
uint current = m_document - > currentPage ( ) ;
uint pages = m_document - > pages ( ) ;
// we are at the last page
if ( current = = pages )
return ;
for ( uint i = current + 1 ; i < pages ; + + i )
{
2007-10-28 18:31:33 +00:00
if ( m_document - > bookmarkManager ( ) - > isBookmarked ( i ) )
2006-06-24 10:56:06 +00:00
{
m_document - > setViewportPage ( i ) ;
break ;
}
}
}
2007-01-13 00:33:50 +00:00
2004-09-09 13:25:40 +00:00
void Part : : slotFind ( )
2003-09-14 14:54:16 +00:00
{
2007-03-17 22:58:41 +00:00
// when in presentation mode, there's already a search bar, taking care of
// the 'find' requests
if ( ( PresentationWidget * ) m_presentationWidget ! = 0 )
2007-04-20 19:45:33 +00:00
{
m_presentationWidget - > slotFind ( ) ;
}
else
{
slotShowFindBar ( ) ;
}
2003-09-14 21:53:40 +00:00
}
2007-01-13 00:33:50 +00:00
2004-09-09 13:25:40 +00:00
void Part : : slotFindNext ( )
2003-09-14 21:53:40 +00:00
{
2007-03-17 22:58:41 +00:00
if ( m_findBar - > isHidden ( ) )
slotShowFindBar ( ) ;
else
m_findBar - > findNext ( ) ;
2003-09-14 14:22:37 +00:00
}
2007-01-13 00:33:50 +00:00
2009-02-14 17:11:29 +00:00
void Part : : slotFindPrev ( )
{
if ( m_findBar - > isHidden ( ) )
slotShowFindBar ( ) ;
else
m_findBar - > findPrev ( ) ;
}
2004-09-08 12:41:14 +00:00
void Part : : slotSaveFileAs ( )
2004-08-28 17:59:17 +00:00
{
2009-03-22 18:38:38 +00:00
if ( m_embedMode = = PrintPreviewMode )
return ;
2007-06-05 20:49:00 +00:00
2009-12-26 18:48:42 +00:00
KUrl saveUrl = KFileDialog : : getSaveUrl ( KUrl ( " kfiledialog:///okular/ " + url ( ) . fileName ( ) ) ,
QString ( ) , widget ( ) , QString ( ) ,
KFileDialog : : ConfirmOverwrite ) ;
2008-03-11 23:40:59 +00:00
if ( ! saveUrl . isValid ( ) | | saveUrl . isEmpty ( ) )
return ;
2009-09-13 21:11:37 +00:00
KTemporaryFile tf ;
QString fileName ;
if ( ! tf . open ( ) )
{
KMessageBox : : information ( widget ( ) , i18n ( " Could not open the temporary file for saving. " ) ) ;
2008-03-11 23:40:59 +00:00
return ;
2009-09-13 21:11:37 +00:00
}
fileName = tf . fileName ( ) ;
tf . close ( ) ;
2008-03-11 23:40:59 +00:00
2009-10-19 23:00:52 +00:00
QString errorText ;
if ( ! m_document - > saveChanges ( fileName , & errorText ) )
2009-09-13 21:11:37 +00:00
{
2009-10-19 23:00:52 +00:00
if ( errorText . isEmpty ( ) )
{
KMessageBox : : information ( widget ( ) , i18n ( " File could not be saved in '%1'. Try to save it to another location. " , fileName ) ) ;
}
else
{
KMessageBox : : information ( widget ( ) , i18n ( " File could not be saved in '%1'. %2 " , fileName , errorText ) ) ;
}
2009-09-13 21:11:37 +00:00
return ;
2008-03-11 23:40:59 +00:00
}
2009-09-13 21:11:37 +00:00
KIO : : Job * copyJob = KIO : : file_copy ( fileName , saveUrl , - 1 , KIO : : Overwrite ) ;
if ( ! KIO : : NetAccess : : synchronousRun ( copyJob , widget ( ) ) )
KMessageBox : : information ( widget ( ) , i18n ( " File could not be saved in '%1'. Try to save it to another location. " , saveUrl . prettyUrl ( ) ) ) ;
2008-03-11 23:40:59 +00:00
}
void Part : : slotSaveCopyAs ( )
{
2009-03-22 18:38:38 +00:00
if ( m_embedMode = = PrintPreviewMode )
return ;
2008-03-11 23:40:59 +00:00
2009-12-26 18:48:42 +00:00
KUrl saveUrl = KFileDialog : : getSaveUrl ( KUrl ( " kfiledialog:///okular/ " + url ( ) . fileName ( ) ) ,
QString ( ) , widget ( ) , QString ( ) ,
KFileDialog : : ConfirmOverwrite ) ;
2006-08-30 13:02:48 +00:00
if ( saveUrl . isValid ( ) & & ! saveUrl . isEmpty ( ) )
2004-11-05 01:52:48 +00:00
{
2008-06-07 21:08:41 +00:00
// make use of the already downloaded (in case of remote URLs) file,
// no point in downloading that again
KUrl srcUrl = KUrl : : fromPath ( localFilePath ( ) ) ;
KTemporaryFile * tempFile = 0 ;
// duh, our local file disappeared...
if ( ! QFile : : exists ( localFilePath ( ) ) )
{
if ( url ( ) . isLocalFile ( ) )
{
# ifdef OKULAR_KEEP_FILE_OPEN
// local file: try to get it back from the open handle on it
if ( ( tempFile = m_keeper - > copyToTemporary ( ) ) )
srcUrl = KUrl : : fromPath ( tempFile - > fileName ( ) ) ;
2008-06-21 10:54:27 +00:00
# else
2008-06-22 15:35:12 +00:00
const QString msg = i18n ( " Okular cannot copy %1 to the specified location. \n \n The document does not exist anymore. " , localFilePath ( ) ) ;
2008-06-21 10:54:27 +00:00
KMessageBox : : sorry ( widget ( ) , msg ) ;
return ;
2008-06-07 21:08:41 +00:00
# endif
}
else
{
// we still have the original remote URL of the document,
// so copy the document from there
srcUrl = url ( ) ;
}
}
KIO : : Job * copyJob = KIO : : file_copy ( srcUrl , saveUrl , - 1 , KIO : : Overwrite ) ;
2007-07-04 09:35:08 +00:00
if ( ! KIO : : NetAccess : : synchronousRun ( copyJob , widget ( ) ) )
2006-08-30 13:02:48 +00:00
KMessageBox : : information ( widget ( ) , i18n ( " File could not be saved in '%1'. Try to save it to another location. " , saveUrl . prettyUrl ( ) ) ) ;
2008-06-07 21:08:41 +00:00
delete tempFile ;
2004-11-05 01:52:48 +00:00
}
2004-04-15 18:36:43 +00:00
}
2007-01-13 00:33:50 +00:00
2005-04-16 00:25:26 +00:00
void Part : : slotGetNewStuff ( )
{
2009-12-26 16:23:36 +00:00
#if 0
2007-11-09 16:16:05 +00:00
KNS : : Engine engine ( widget ( ) ) ;
2007-07-19 22:27:45 +00:00
engine . init ( " okular.knsrc " ) ;
2005-04-16 00:25:26 +00:00
// show the modal dialog over pageview and execute it
2007-07-19 22:27:45 +00:00
KNS : : Entry : : List entries = engine . downloadDialogModal ( m_pageView ) ;
Q_UNUSED ( entries )
2009-12-26 16:23:36 +00:00
# endif
2005-04-16 00:25:26 +00:00
}
2007-01-13 00:33:50 +00:00
2004-10-27 14:15:27 +00:00
void Part : : slotPreferences ( )
2002-08-30 09:14:01 +00:00
{
2004-10-27 14:15:27 +00:00
// an instance the dialog could be already created and could be cached,
// in which case you want to display the cached dialog
if ( PreferencesDialog : : showDialog ( " preferences " ) )
return ;
// we didn't find an instance of this dialog, so lets create it
2006-09-21 08:45:36 +00:00
PreferencesDialog * dialog = new PreferencesDialog ( m_pageView , Okular : : Settings : : self ( ) ) ;
2004-10-27 14:15:27 +00:00
// keep us informed when the user changes settings
2006-03-30 13:23:38 +00:00
connect ( dialog , SIGNAL ( settingsChanged ( const QString & ) ) , this , SLOT ( slotNewConfig ( ) ) ) ;
2004-10-27 14:15:27 +00:00
dialog - > show ( ) ;
}
2007-01-13 00:33:50 +00:00
2004-10-27 14:15:27 +00:00
void Part : : slotNewConfig ( )
{
2008-04-13 13:15:15 +00:00
// Apply settings here. A good policy is to check whether the setting has
2004-10-29 13:33:51 +00:00
// changed before applying changes.
2005-03-12 15:39:04 +00:00
// Watch File
2006-09-21 08:45:36 +00:00
bool watchFile = Okular : : Settings : : watchFile ( ) ;
2005-03-12 15:39:04 +00:00
if ( watchFile & & m_watcher - > isStopped ( ) )
m_watcher - > startScan ( ) ;
if ( ! watchFile & & ! m_watcher - > isStopped ( ) )
2004-10-29 13:33:51 +00:00
{
2005-03-12 15:39:04 +00:00
m_dirtyHandler - > stop ( ) ;
m_watcher - > stopScan ( ) ;
2004-10-29 13:33:51 +00:00
}
2005-03-12 15:39:04 +00:00
2004-11-05 18:14:20 +00:00
// Main View (pageView)
2006-10-28 22:58:05 +00:00
m_pageView - > reparseConfig ( ) ;
2004-11-06 01:48:52 +00:00
2004-11-09 17:20:19 +00:00
// update document settings
m_document - > reparseConfig ( ) ;
2006-12-22 20:42:36 +00:00
// update TOC settings
2007-08-06 17:24:10 +00:00
if ( m_sidebar - > isItemEnabled ( 0 ) )
2006-12-22 20:42:36 +00:00
m_toc - > reparseConfig ( ) ;
2006-10-28 22:58:05 +00:00
// update ThumbnailList contents
2006-09-21 08:45:36 +00:00
if ( Okular : : Settings : : showLeftPanel ( ) & & ! m_thumbnailList - > isHidden ( ) )
2004-11-07 11:20:27 +00:00
m_thumbnailList - > updateWidgets ( ) ;
2009-11-19 17:26:41 +00:00
// update Reviews settings
if ( m_sidebar - > isItemEnabled ( 2 ) )
m_reviewsWidget - > reparseConfig ( ) ;
2004-10-09 08:10:56 +00:00
}
2002-08-30 09:14:01 +00:00
2007-01-13 00:33:50 +00:00
2007-07-12 20:04:56 +00:00
void Part : : slotNewGeneratorConfig ( )
{
2008-04-13 13:15:15 +00:00
// Apply settings here. A good policy is to check whether the setting has
2007-07-12 20:04:56 +00:00
// changed before applying changes.
// NOTE: it's not needed to reload the configuration of the Document,
// the Document itself will take care of that
// Main View (pageView)
m_pageView - > reparseConfig ( ) ;
// update TOC settings
2007-08-06 17:24:10 +00:00
if ( m_sidebar - > isItemEnabled ( 0 ) )
2007-07-12 20:04:56 +00:00
m_toc - > reparseConfig ( ) ;
// update ThumbnailList contents
if ( Okular : : Settings : : showLeftPanel ( ) & & ! m_thumbnailList - > isHidden ( ) )
m_thumbnailList - > updateWidgets ( ) ;
2009-11-19 17:26:41 +00:00
// update Reviews settings
if ( m_sidebar - > isItemEnabled ( 2 ) )
m_reviewsWidget - > reparseConfig ( ) ;
2007-07-12 20:04:56 +00:00
}
2004-10-09 08:10:56 +00:00
void Part : : slotPrintPreview ( )
2002-09-02 21:56:00 +00:00
{
2004-11-09 17:20:19 +00:00
if ( m_document - > pages ( ) = = 0 ) return ;
2002-09-02 21:56:00 +00:00
2007-10-18 20:25:33 +00:00
QPrinter printer ;
2004-09-18 16:41:23 +00:00
2007-11-26 21:43:54 +00:00
// Native printing supports KPrintPreview, Postscript needs to use FilePrinterPreview
if ( m_document - > printingSupport ( ) = = Okular : : Document : : NativePrinting )
2004-10-09 08:10:56 +00:00
{
2007-11-26 21:43:54 +00:00
KPrintPreview previewdlg ( & printer , widget ( ) ) ;
setupPrint ( printer ) ;
doPrint ( printer ) ;
previewdlg . exec ( ) ;
2004-11-03 21:37:21 +00:00
}
2007-11-26 21:43:54 +00:00
else
2006-11-01 22:24:57 +00:00
{
2007-11-26 21:43:54 +00:00
// Generate a temp filename for Print to File, then release the file so generator can write to it
KTemporaryFile tf ;
tf . setAutoRemove ( true ) ;
tf . setSuffix ( " .ps " ) ;
tf . open ( ) ;
printer . setOutputFileName ( tf . fileName ( ) ) ;
tf . close ( ) ;
setupPrint ( printer ) ;
doPrint ( printer ) ;
if ( QFile : : exists ( printer . outputFileName ( ) ) )
{
Okular : : FilePrinterPreview previewdlg ( printer . outputFileName ( ) , widget ( ) ) ;
previewdlg . exec ( ) ;
}
2006-11-01 22:24:57 +00:00
}
2002-09-02 21:56:00 +00:00
}
2007-01-13 00:33:50 +00:00
2006-09-21 08:45:36 +00:00
void Part : : slotShowMenu ( const Okular : : Page * page , const QPoint & point )
2004-12-04 23:23:18 +00:00
{
2009-03-22 18:38:38 +00:00
if ( m_embedMode = = PrintPreviewMode )
return ;
2007-06-05 20:49:00 +00:00
2007-01-13 00:33:50 +00:00
bool reallyShow = false ;
if ( ! m_actionsSearched )
{
// the quest for options_show_menubar
KActionCollection * ac ;
QAction * act ;
if ( factory ( ) )
{
QList < KXMLGUIClient * > clients ( factory ( ) - > clients ( ) ) ;
for ( int i = 0 ; ( ! m_showMenuBarAction | | ! m_showFullScreenAction ) & & i < clients . size ( ) ; + + i )
{
ac = clients . at ( i ) - > actionCollection ( ) ;
// show_menubar
act = ac - > action ( " options_show_menubar " ) ;
if ( act & & qobject_cast < KToggleAction * > ( act ) )
m_showMenuBarAction = qobject_cast < KToggleAction * > ( act ) ;
// fullscreen
act = ac - > action ( " fullscreen " ) ;
if ( act & & qobject_cast < KToggleFullScreenAction * > ( act ) )
m_showFullScreenAction = qobject_cast < KToggleFullScreenAction * > ( act ) ;
}
2006-03-24 22:57:41 +00:00
}
2007-01-13 00:33:50 +00:00
m_actionsSearched = true ;
}
KMenu * popup = new KMenu ( widget ( ) ) ;
2007-01-13 14:45:51 +00:00
QAction * addBookmark = 0 ;
QAction * removeBookmark = 0 ;
QAction * fitPageWidth = 0 ;
2007-01-13 00:33:50 +00:00
if ( page )
{
popup - > addTitle ( i18n ( " Page %1 " , page - > number ( ) + 1 ) ) ;
2007-10-28 18:31:33 +00:00
if ( m_document - > bookmarkManager ( ) - > isBookmarked ( page - > number ( ) ) )
2008-01-03 19:55:37 +00:00
removeBookmark = popup - > addAction ( KIcon ( " edit-delete-bookmark " ) , i18n ( " Remove Bookmark " ) ) ;
2007-01-13 14:45:51 +00:00
else
2007-03-08 21:41:46 +00:00
addBookmark = popup - > addAction ( KIcon ( " bookmark-new " ) , i18n ( " Add Bookmark " ) ) ;
2007-01-13 00:33:50 +00:00
if ( m_pageView - > canFitPageWidth ( ) )
2008-01-03 19:55:37 +00:00
fitPageWidth = popup - > addAction ( KIcon ( " zoom-fit-best " ) , i18n ( " Fit Width " ) ) ;
2007-01-13 00:33:50 +00:00
popup - > addAction ( m_prevBookmark ) ;
popup - > addAction ( m_nextBookmark ) ;
reallyShow = true ;
}
/*
//Albert says: I have not ported this as i don't see it does anything
if ( d - > mouseOnRect ) // and rect->objectType() == ObjectRect::Image ...
{
2007-03-08 21:41:46 +00:00
m_popup - > insertItem ( SmallIcon ( " document-save " ) , i18n ( " Save Image... " ) , 4 ) ;
2007-01-13 00:33:50 +00:00
m_popup - > setItemEnabled ( 4 , false ) ;
} */
if ( ( m_showMenuBarAction & & ! m_showMenuBarAction - > isChecked ( ) ) | | ( m_showFullScreenAction & & m_showFullScreenAction - > isChecked ( ) ) )
{
popup - > addTitle ( i18n ( " Tools " ) ) ;
if ( m_showMenuBarAction & & ! m_showMenuBarAction - > isChecked ( ) ) popup - > addAction ( m_showMenuBarAction ) ;
if ( m_showFullScreenAction & & m_showFullScreenAction - > isChecked ( ) ) popup - > addAction ( m_showFullScreenAction ) ;
reallyShow = true ;
}
if ( reallyShow )
{
QAction * res = popup - > exec ( point ) ;
if ( res )
{
2007-10-28 18:31:33 +00:00
if ( res = = addBookmark ) m_document - > bookmarkManager ( ) - > addBookmark ( page - > number ( ) ) ;
else if ( res = = removeBookmark ) m_document - > bookmarkManager ( ) - > removeBookmark ( page - > number ( ) ) ;
2007-01-13 00:33:50 +00:00
else if ( res = = fitPageWidth ) m_pageView - > fitPageWidth ( page - > number ( ) ) ;
}
}
delete popup ;
2004-12-04 23:23:18 +00:00
}
2007-01-13 00:33:50 +00:00
2004-12-05 22:47:32 +00:00
void Part : : slotShowProperties ( )
{
2007-01-13 00:33:50 +00:00
PropertiesDialog * d = new PropertiesDialog ( widget ( ) , m_document ) ;
d - > exec ( ) ;
delete d ;
2004-12-05 22:47:32 +00:00
}
2007-01-13 00:33:50 +00:00
2006-05-28 16:54:54 +00:00
void Part : : slotShowEmbeddedFiles ( )
{
2007-01-13 00:33:50 +00:00
EmbeddedFilesDialog * d = new EmbeddedFilesDialog ( widget ( ) , m_document ) ;
d - > exec ( ) ;
delete d ;
2006-05-28 16:54:54 +00:00
}
2007-01-13 00:33:50 +00:00
2004-12-17 17:14:46 +00:00
void Part : : slotShowPresentation ( )
{
2005-06-13 16:55:57 +00:00
if ( ! m_presentationWidget )
2006-06-25 16:34:11 +00:00
{
2008-11-29 13:50:37 +00:00
m_presentationWidget = new PresentationWidget ( widget ( ) , m_document , actionCollection ( ) ) ;
2006-06-25 16:34:11 +00:00
}
2004-12-17 17:14:46 +00:00
}
2007-01-13 00:33:50 +00:00
2005-04-07 09:53:15 +00:00
void Part : : slotHidePresentation ( )
{
if ( m_presentationWidget )
delete ( PresentationWidget * ) m_presentationWidget ;
}
2007-01-13 00:33:50 +00:00
2007-08-26 14:40:29 +00:00
void Part : : slotTogglePresentation ( )
{
if ( m_document - > isOpened ( ) )
{
if ( ! m_presentationWidget )
2008-11-29 13:50:37 +00:00
m_presentationWidget = new PresentationWidget ( widget ( ) , m_document , actionCollection ( ) ) ;
2007-08-26 14:40:29 +00:00
else delete ( PresentationWidget * ) m_presentationWidget ;
}
}
2008-09-22 22:18:07 +00:00
void Part : : reload ( )
{
if ( m_document - > isOpened ( ) )
{
slotReload ( ) ;
}
}
2007-03-07 18:15:00 +00:00
void Part : : slotAboutBackend ( )
{
const KComponentData * data = m_document - > componentData ( ) ;
if ( ! data )
return ;
2009-03-23 22:57:50 +00:00
KAboutData aboutData ( * data - > aboutData ( ) ) ;
if ( aboutData . programIconName ( ) . isEmpty ( ) | | aboutData . programIconName ( ) = = aboutData . appName ( ) )
{
if ( const Okular : : DocumentInfo * documentInfo = m_document - > documentInfo ( ) )
{
const QString mimeTypeName = documentInfo - > get ( " mimeType " ) ;
if ( ! mimeTypeName . isEmpty ( ) )
{
if ( KMimeType : : Ptr type = KMimeType : : mimeType ( mimeTypeName ) )
aboutData . setProgramIconName ( type - > iconName ( ) ) ;
}
}
}
KAboutApplicationDialog dlg ( & aboutData , widget ( ) ) ;
2007-03-07 18:15:00 +00:00
dlg . exec ( ) ;
}
2006-07-01 22:17:53 +00:00
void Part : : slotExportAs ( QAction * act )
{
QList < QAction * > acts = m_exportAs - > menu ( ) ? m_exportAs - > menu ( ) - > actions ( ) : QList < QAction * > ( ) ;
int id = acts . indexOf ( act ) ;
if ( ( id < 0 ) | | ( id > = acts . count ( ) ) )
return ;
2008-11-16 01:23:31 +00:00
QString filter ;
switch ( id )
{
case 0 :
filter = " text/plain " ;
break ;
case 1 :
filter = " application/vnd.kde.okular-archive " ;
break ;
default :
filter = m_exportFormats . at ( id - 2 ) . mimeType ( ) - > name ( ) ;
break ;
}
2009-12-26 18:48:42 +00:00
QString fileName = KFileDialog : : getSaveFileName ( url ( ) . isLocalFile ( ) ? url ( ) . directory ( ) : QString ( ) ,
filter , widget ( ) , QString ( ) ,
KFileDialog : : ConfirmOverwrite ) ;
2006-07-01 22:17:53 +00:00
if ( ! fileName . isEmpty ( ) )
{
2008-11-16 01:23:31 +00:00
bool saved = false ;
switch ( id )
{
case 0 :
saved = m_document - > exportToText ( fileName ) ;
break ;
case 1 :
saved = m_document - > saveDocumentArchive ( fileName ) ;
break ;
default :
saved = m_document - > exportTo ( fileName , m_exportFormats . at ( id - 2 ) ) ;
break ;
}
2006-07-01 22:17:53 +00:00
if ( ! saved )
KMessageBox : : information ( widget ( ) , i18n ( " File could not be saved in '%1'. Try to save it to another location. " , fileName ) ) ;
}
}
2007-01-13 00:33:50 +00:00
2007-05-06 11:23:26 +00:00
void Part : : slotReload ( )
{
// stop the dirty handler timer, otherwise we may conflict with the
// auto-refresh system
m_dirtyHandler - > stop ( ) ;
slotDoFileDirty ( ) ;
}
2004-10-09 08:10:56 +00:00
void Part : : slotPrint ( )
2004-01-02 17:46:06 +00:00
{
2004-11-09 17:20:19 +00:00
if ( m_document - > pages ( ) = = 0 ) return ;
2004-11-03 21:37:21 +00:00
2007-10-15 23:01:27 +00:00
QPrinter printer ;
2007-11-26 21:43:54 +00:00
QPrintDialog * printDialog = 0 ;
QWidget * printConfigWidget = 0 ;
2004-11-03 21:37:21 +00:00
2007-11-26 21:43:54 +00:00
// Must do certain QPrinter setup before creating QPrintDialog
setupPrint ( printer ) ;
2007-10-15 23:01:27 +00:00
2007-11-26 21:43:54 +00:00
// Create the Print Dialog with extra config widgets if required
if ( m_document - > canConfigurePrinter ( ) )
{
printConfigWidget = m_document - > printConfigurationWidget ( ) ;
}
if ( printConfigWidget )
{
printDialog = KdePrint : : createPrintDialog ( & printer , QList < QWidget * > ( ) < < printConfigWidget , widget ( ) ) ;
}
else
{
printDialog = KdePrint : : createPrintDialog ( & printer , widget ( ) ) ;
}
if ( printDialog )
{
// Set the available Print Range
printDialog - > setMinMax ( 1 , m_document - > pages ( ) ) ;
printDialog - > setFromTo ( 1 , m_document - > pages ( ) ) ;
// If the user has bookmarked pages for printing, then enable Selection
if ( ! m_document - > bookmarkedPageRange ( ) . isEmpty ( ) )
{
printDialog - > addEnabledOption ( QAbstractPrintDialog : : PrintSelection ) ;
}
2004-11-03 21:37:21 +00:00
2007-11-26 21:43:54 +00:00
// If the Document type doesn't support print to both PS & PDF then disable the Print Dialog option
if ( printDialog - > isOptionEnabled ( QAbstractPrintDialog : : PrintToFile ) & &
! m_document - > supportsPrintToFile ( ) )
{
printDialog - > setEnabledOptions ( printDialog - > enabledOptions ( ) ^ QAbstractPrintDialog : : PrintToFile ) ;
}
2010-06-04 08:25:25 +00:00
# if QT_VERSION >= KDE_MAKE_VERSION(4,7,0)
// Enable the Current Page option in the dialog.
if ( m_document - > pages ( ) > 1 & & currentPage ( ) > 0 )
{
printDialog - > setOption ( QAbstractPrintDialog : : PrintCurrentPage ) ;
}
# endif
2007-11-26 21:43:54 +00:00
if ( printDialog - > exec ( ) )
doPrint ( printer ) ;
2008-07-13 09:51:04 +00:00
delete printDialog ;
2007-11-26 21:43:54 +00:00
}
}
void Part : : setupPrint ( QPrinter & printer )
{
double width , height ;
int landscape , portrait ;
const Okular : : Page * page ;
// if some pages are landscape and others are not the most common win as QPrinter does
2004-11-03 21:37:21 +00:00
// not accept a per page setting
landscape = 0 ;
portrait = 0 ;
2004-11-09 17:20:19 +00:00
for ( uint i = 0 ; i < m_document - > pages ( ) ; i + + )
2004-11-03 21:37:21 +00:00
{
2004-11-09 17:20:19 +00:00
page = m_document - > page ( i ) ;
2004-11-03 21:37:21 +00:00
width = page - > width ( ) ;
height = page - > height ( ) ;
2008-01-27 21:58:46 +00:00
if ( page - > orientation ( ) = = Okular : : Rotation90 | | page - > orientation ( ) = = Okular : : Rotation270 ) qSwap ( width , height ) ;
2004-11-03 21:37:21 +00:00
if ( width > height ) landscape + + ;
else portrait + + ;
}
2007-10-15 23:01:27 +00:00
if ( landscape > portrait ) printer . setOrientation ( QPrinter : : Landscape ) ;
2004-11-03 21:37:21 +00:00
2007-03-04 23:19:43 +00:00
// title
QString title = m_document - > metaData ( " DocumentTitle " ) . toString ( ) ;
if ( title . isEmpty ( ) )
{
title = m_document - > currentDocument ( ) . fileName ( ) ;
}
if ( ! title . isEmpty ( ) )
{
printer . setDocName ( title ) ;
}
2004-01-02 17:46:06 +00:00
}
2007-01-13 00:33:50 +00:00
2007-10-15 23:01:27 +00:00
void Part : : doPrint ( QPrinter & printer )
2004-01-02 17:46:06 +00:00
{
2007-01-02 22:37:55 +00:00
if ( ! m_document - > isAllowed ( Okular : : AllowPrint ) )
2004-11-03 21:37:21 +00:00
{
KMessageBox : : error ( widget ( ) , i18n ( " Printing this document is not allowed. " ) ) ;
return ;
}
2004-11-09 17:20:19 +00:00
if ( ! m_document - > print ( printer ) )
2004-11-03 21:37:21 +00:00
{
2010-04-14 23:07:27 +00:00
const QString error = m_document - > printError ( ) ;
if ( error . isEmpty ( ) )
{
KMessageBox : : error ( widget ( ) , i18n ( " Could not print the document. Unknown error. Please report to bugs.kde.org " ) ) ;
}
else
{
2010-04-16 21:21:40 +00:00
KMessageBox : : error ( widget ( ) , i18n ( " Could not print the document. Detailed error is \" %1 \" . Please report to bugs.kde.org " , error ) ) ;
2010-04-14 23:07:27 +00:00
}
2004-11-03 21:37:21 +00:00
}
2004-01-02 17:46:06 +00:00
}
2007-01-13 00:33:50 +00:00
2007-02-21 15:12:57 +00:00
void Part : : restoreDocument ( const KConfigGroup & group )
2004-11-01 21:56:08 +00:00
{
2007-10-22 18:21:51 +00:00
KUrl url ( group . readPathEntry ( " URL " , QString ( ) ) ) ;
2007-01-13 00:33:50 +00:00
if ( url . isValid ( ) )
{
2007-02-20 15:48:18 +00:00
QString viewport = group . readEntry ( " Viewport " ) ;
2007-01-13 00:33:50 +00:00
if ( ! viewport . isEmpty ( ) ) m_document - > setNextDocumentViewport ( Okular : : DocumentViewport ( viewport ) ) ;
openUrl ( url ) ;
}
2004-11-01 21:56:08 +00:00
}
2007-01-13 00:33:50 +00:00
2007-02-20 15:48:18 +00:00
void Part : : saveDocumentRestoreInfo ( KConfigGroup & group )
2004-11-01 21:56:08 +00:00
{
2007-02-20 15:48:18 +00:00
group . writePathEntry ( " URL " , url ( ) . url ( ) ) ;
group . writeEntry ( " Viewport " , m_document - > viewport ( ) . toString ( ) ) ;
2004-11-01 21:56:08 +00:00
}
2007-01-13 00:33:50 +00:00
2007-03-27 00:00:41 +00:00
void Part : : psTransformEnded ( int exit , QProcess : : ExitStatus status )
2005-07-15 18:20:57 +00:00
{
2007-03-27 00:00:41 +00:00
Q_UNUSED ( exit )
if ( status ! = QProcess : : NormalExit )
return ;
QProcess * senderobj = sender ( ) ? qobject_cast < QProcess * > ( sender ( ) ) : 0 ;
if ( senderobj )
{
senderobj - > close ( ) ;
senderobj - > deleteLater ( ) ;
}
2007-03-28 22:01:38 +00:00
setLocalFilePath ( m_temporaryLocalFile ) ;
openUrl ( m_temporaryLocalFile ) ;
m_temporaryLocalFile . clear ( ) ;
2005-07-15 18:20:57 +00:00
}
2007-01-13 00:33:50 +00:00
2007-06-05 20:49:00 +00:00
void Part : : unsetDummyMode ( )
{
2009-03-22 18:38:38 +00:00
if ( m_embedMode = = PrintPreviewMode )
return ;
2007-06-05 20:49:00 +00:00
2007-09-03 17:25:52 +00:00
m_sidebar - > setItemEnabled ( 2 , true ) ;
m_sidebar - > setItemEnabled ( 3 , true ) ;
2007-08-06 17:24:10 +00:00
m_sidebar - > setSidebarVisibility ( Okular : : Settings : : showLeftPanel ( ) ) ;
2007-06-05 20:49:00 +00:00
2007-06-17 09:45:59 +00:00
// add back and next in history
2007-12-24 13:11:19 +00:00
m_historyBack = KStandardAction : : documentBack ( this , SLOT ( slotHistoryBack ( ) ) , actionCollection ( ) ) ;
2007-06-17 09:45:59 +00:00
m_historyBack - > setWhatsThis ( i18n ( " Go to the place you were before " ) ) ;
2007-12-24 13:11:19 +00:00
m_historyNext = KStandardAction : : documentForward ( this , SLOT ( slotHistoryNext ( ) ) , actionCollection ( ) ) ;
2007-06-17 09:45:59 +00:00
m_historyNext - > setWhatsThis ( i18n ( " Go to the place you were after " ) ) ;
2007-06-05 20:49:00 +00:00
m_pageView - > setupActions ( actionCollection ( ) ) ;
// attach the actions of the children widgets too
m_formsMessage - > setActionButton ( m_pageView - > toggleFormsAction ( ) ) ;
2007-06-17 09:45:59 +00:00
// ensure history actions are in the correct state
updateViewActions ( ) ;
2007-06-05 20:49:00 +00:00
}
2007-07-29 00:55:17 +00:00
bool Part : : handleCompressed ( QString & destpath , const QString & path , const QString & compressedMimetype )
2007-01-12 23:54:26 +00:00
{
2007-10-01 17:06:42 +00:00
m_tempfile = 0 ;
2007-01-12 23:54:26 +00:00
// we are working with a compressed file, decompressing
// temporary file for decompressing
2007-10-01 17:06:42 +00:00
KTemporaryFile * newtempfile = new KTemporaryFile ( ) ;
newtempfile - > setAutoRemove ( true ) ;
2007-01-12 23:54:26 +00:00
2007-10-01 17:06:42 +00:00
if ( ! newtempfile - > open ( ) )
2007-01-12 23:54:26 +00:00
{
2007-03-30 17:46:50 +00:00
KMessageBox : : error ( widget ( ) ,
2007-01-12 23:54:26 +00:00
i18n ( " <qt><strong>File Error!</strong> Could not create temporary file "
2007-01-13 00:33:50 +00:00
" <nobr><strong>%1</strong></nobr>.</qt> " ,
2007-10-01 17:06:42 +00:00
strerror ( newtempfile - > error ( ) ) ) ) ;
delete newtempfile ;
2007-01-13 00:33:50 +00:00
return false ;
2007-01-12 23:54:26 +00:00
}
// decompression filer
2007-07-29 00:55:17 +00:00
QIODevice * filterDev = KFilterDev : : deviceForFile ( path , compressedMimetype ) ;
2007-01-12 23:54:26 +00:00
if ( ! filterDev )
{
2007-10-01 17:06:42 +00:00
delete newtempfile ;
2007-01-12 23:54:26 +00:00
return false ;
}
if ( ! filterDev - > open ( QIODevice : : ReadOnly ) )
{
2007-03-30 17:46:50 +00:00
KMessageBox : : detailedError ( widget ( ) ,
2007-01-12 23:54:26 +00:00
i18n ( " <qt><strong>File Error!</strong> Could not open the file "
" <nobr><strong>%1</strong></nobr> for uncompression. "
" The file will not be loaded.</qt> " , path ) ,
i18n ( " <qt>This error typically occurs if you do "
2007-01-13 00:33:50 +00:00
" not have enough permissions to read the file. "
2007-01-12 23:54:26 +00:00
" You can check ownership and permissions if you "
2008-04-11 22:09:50 +00:00
" right-click on the file in the Dolphin "
" file manager and then choose the 'Properties' tab.</qt> " ) ) ;
2007-01-12 23:54:26 +00:00
2007-01-13 00:33:50 +00:00
delete filterDev ;
2007-10-01 17:06:42 +00:00
delete newtempfile ;
2007-01-13 00:33:50 +00:00
return false ;
2007-01-12 23:54:26 +00:00
}
QByteArray buf ( 1024 , ' \0 ' ) ;
int read = 0 , wrtn = 0 ;
while ( ( read = filterDev - > read ( buf . data ( ) , buf . size ( ) ) ) > 0 )
{
2007-10-01 17:06:42 +00:00
wrtn = newtempfile - > write ( buf . data ( ) , read ) ;
2007-01-12 23:54:26 +00:00
if ( read ! = wrtn )
break ;
}
delete filterDev ;
2007-10-01 17:06:42 +00:00
if ( ( read ! = 0 ) | | ( newtempfile - > size ( ) = = 0 ) )
2007-01-12 23:54:26 +00:00
{
2007-03-30 17:46:50 +00:00
KMessageBox : : detailedError ( widget ( ) ,
2007-01-12 23:54:26 +00:00
i18n ( " <qt><strong>File Error!</strong> Could not uncompress "
" the file <nobr><strong>%1</strong></nobr>. "
" The file will not be loaded.</qt> " , path ) ,
i18n ( " <qt>This error typically occurs if the file is corrupt. "
" If you want to be sure, try to decompress the file manually "
" using command-line tools.</qt> " ) ) ;
2007-10-01 17:06:42 +00:00
delete newtempfile ;
2007-01-12 23:54:26 +00:00
return false ;
}
2007-10-01 17:06:42 +00:00
m_tempfile = newtempfile ;
2007-07-29 00:55:17 +00:00
destpath = m_tempfile - > fileName ( ) ;
2007-01-12 23:54:26 +00:00
return true ;
}
2007-01-13 17:28:54 +00:00
void Part : : rebuildBookmarkMenu ( bool unplugActions )
{
if ( unplugActions )
{
unplugActionList ( " bookmarks_currentdocument " ) ;
qDeleteAll ( m_bookmarkActions ) ;
m_bookmarkActions . clear ( ) ;
}
KUrl u = m_document - > currentDocument ( ) ;
if ( u . isValid ( ) )
{
m_bookmarkActions = m_document - > bookmarkManager ( ) - > actionsForUrl ( u ) ;
}
2007-01-28 16:37:13 +00:00
bool havebookmarks = true ;
2007-01-13 17:28:54 +00:00
if ( m_bookmarkActions . isEmpty ( ) )
{
2007-01-28 16:37:13 +00:00
havebookmarks = false ;
2007-01-13 17:28:54 +00:00
QAction * a = new QAction ( 0 ) ;
a - > setText ( i18n ( " No Bookmarks " ) ) ;
a - > setEnabled ( false ) ;
m_bookmarkActions . append ( a ) ;
}
plugActionList ( " bookmarks_currentdocument " , m_bookmarkActions ) ;
2007-01-28 16:37:13 +00:00
m_prevBookmark - > setEnabled ( havebookmarks ) ;
m_nextBookmark - > setEnabled ( havebookmarks ) ;
2007-01-13 17:28:54 +00:00
}
2007-03-07 18:15:00 +00:00
void Part : : updateAboutBackendAction ( )
{
const KComponentData * data = m_document - > componentData ( ) ;
if ( data )
{
m_aboutBackend - > setEnabled ( true ) ;
}
else
{
m_aboutBackend - > setEnabled ( false ) ;
}
}
2009-10-26 20:59:24 +00:00
} // namespace Okular
2007-01-12 23:54:26 +00:00
2005-01-02 14:29:37 +00:00
# include "part.moc"
2008-03-17 23:02:33 +00:00
/* kate: replace-tabs on; indent-width 4; */