diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /kpdf/shell/shell.h | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpdf/shell/shell.h')
-rw-r--r-- | kpdf/shell/shell.h | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/kpdf/shell/shell.h b/kpdf/shell/shell.h new file mode 100644 index 00000000..f92df5ce --- /dev/null +++ b/kpdf/shell/shell.h @@ -0,0 +1,112 @@ +/*************************************************************************** + * Copyright (C) 2002 by Wilco Greven <greven@kde.org> * + * Copyright (C) 2003 by Benjamin Meyer <benjamin@csh.rit.edu> * + * Copyright (C) 2003 by Laurent Montel <montel@kde.org> * + * Copyright (C) 2003 by Luboš Luňák <l.lunak@kde.org> * + * Copyright (C) 2004 by Christophe Devriese * + * <Christophe.Devriese@student.kuleuven.ac.be> * + * Copyright (C) 2004 by Albert Astals Cid <tsdgeos@terra.es> * + * * + * 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. * + ***************************************************************************/ + +#ifndef _KPDF_SHELL_H_ +#define _KPDF_SHELL_H_ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <kparts/mainwindow.h> + +namespace KPDF +{ + class Part; + /** + * This is the application "Shell". It has a menubar and a toolbar + * but relies on the "Part" to do all the real work. + * + * @short Application Shell + * @author Wilco Greven <greven@kde.org> + * @version 0.1 + */ + class Shell : public KParts::MainWindow + { + Q_OBJECT + + public: + /** + * Default Constructor + */ + Shell(); + + /** + * Open an url + */ + Shell(const KURL &url); + + /** + * Default Destructor + */ + virtual ~Shell(); + + protected: + /** + * This method is called when it is time for the app to save its + * properties for session management purposes. + */ + void saveProperties(KConfig*); + + /** + * This method is called when this app is restored. The KConfig + * object points to the session management config file that was saved + * with @ref saveProperties + */ + void readProperties(KConfig*); + void readSettings(); + void writeSettings(); + void setFullScreen( bool ); + + public slots: + void slotQuit(); + + private slots: + void fileOpen(); + + void optionsConfigureToolbars(); + void applyNewToolbarConfig(); + void slotUpdateFullScreen(); + void slotShowMenubar(); + + void openURL( const KURL & url ); + void delayedOpen(); + + signals: + void restoreDocument(KConfig* config); + void saveDocumentRestoreInfo(KConfig* config); + + + private: + void setupAccel(); + void setupActions(); + void init(); + + private: + KParts::ReadOnlyPart* m_part; + KRecentFilesAction* m_recent; + KAction* m_printAction; + KToggleAction* m_fullScreenAction; + KToggleAction* m_showMenuBarAction; + KToggleAction* m_showToolBarAction; + bool m_menuBarWasShown, m_toolBarWasShown; + KURL m_openUrl; + }; + +} + +#endif + +// vim:ts=2:sw=2:tw=78:et |