mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
444bde03b9
svn path=/trunk/kdegraphics/kdvi/; revision=377217
99 lines
2.7 KiB
C++
99 lines
2.7 KiB
C++
#ifndef __KDVIMULTIPAGE_H
|
|
#define __KDVIMULTIPAGE_H
|
|
|
|
#include <qstringlist.h>
|
|
|
|
class KPrinter;
|
|
|
|
#include "../kviewshell/kmultipage.h"
|
|
#include "dviwin.h"
|
|
|
|
class KDVIMultiPage : public KMultiPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
KDVIMultiPage(QWidget *parentWidget, const char *widgetName, QObject *parent,
|
|
const char *name, const QStringList& args = QStringList());
|
|
virtual ~KDVIMultiPage();
|
|
|
|
// Interface definition start ------------------------------------------------
|
|
|
|
/// returns the list of supported file formats
|
|
virtual QStringList fileFormats();
|
|
|
|
/// opens a file
|
|
virtual bool openFile();
|
|
|
|
virtual bool print(const QStringList &pages, int current);
|
|
|
|
/// KDVI offers read- and write functionality must re-implement this
|
|
/// method and return true here.
|
|
virtual bool isReadWrite() {return true;};
|
|
|
|
/// multipage implementations that offer read- and write
|
|
/// functionality should re-implement this method.
|
|
virtual bool isModified();
|
|
|
|
virtual void addConfigDialogs(KConfigDialog* configDialog);
|
|
|
|
static KAboutData* createAboutData();
|
|
|
|
private:
|
|
virtual documentWidget* createDocumentWidget();
|
|
|
|
/** Used to enable the export menu when a file is successfully
|
|
loaded. */
|
|
virtual void enableActions(bool);
|
|
|
|
public slots:
|
|
/** Opens a file requestor and saves. This really saves the content
|
|
of the DVI-file, and does not just start a copy job */
|
|
virtual void slotSave();
|
|
|
|
/** Similar to slotSave, but does not ask for a filename. */
|
|
virtual void slotSave_defaultFilename();
|
|
|
|
void setEmbedPostScriptAction(void);
|
|
|
|
void slotEmbedPostScript(void);
|
|
|
|
protected:
|
|
/// For internal use only. See the comments in kdvi_multipage.cpp, right
|
|
//before the timerEvent function.
|
|
int timer_id;
|
|
/// For internal use only. See the comments in kdvi_multipage.cpp, right
|
|
//before the timerEvent function.
|
|
void timerEvent( QTimerEvent *e );
|
|
|
|
virtual void reload();
|
|
|
|
protected slots:
|
|
void doExportText();
|
|
void doEnableWarnings();
|
|
void preferencesChanged();
|
|
|
|
void showTip(void);
|
|
void showTipOnStart(void);
|
|
|
|
private:
|
|
// Points to the same object as renderer to avoid downcasting.
|
|
// FIXME: Remove when the API of the Renderer-class is finished.
|
|
dviRenderer DVIRenderer;
|
|
KPrinter *printer;
|
|
|
|
/*************************************************************
|
|
* Methods and classes concerned with the find functionality *
|
|
*************************************************************/
|
|
|
|
/** Pointers to several actions which are disabled if no file is
|
|
loaded. */
|
|
KAction *docInfoAction;
|
|
KAction *embedPSAction;
|
|
KAction *exportPDFAction;
|
|
KAction *exportTextAction;
|
|
KAction *exportPSAction;
|
|
};
|
|
|
|
|
|
#endif
|