/* * kpdf_shell.cpp * * Copyright (C) 2001 */ #include "kpdf_shell.h" #include "kpdf_shell.moc" #include "kpdf_part.h" #include "part.h" #include "kpdf_pagewidget.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace KPDF; Shell::Shell() : KParts::MainWindow(0, "KPDF::Shell") { // set the shell's ui resource file setXMLFile("kpdf_shell.rc"); // then, setup our actions setupActions(); // this routine will find and load our Part. it finds the Part by // name which is a bad idea usually.. but it's alright in this // case since our Part is made for this Shell KLibFactory *factory = KLibLoader::self()->factory("libkpdfpart"); if (factory) { // now that the Part is loaded, we cast it to a Part to get // our hands on it m_part = static_cast( factory->create(this, "kpdf_part", "KParts::ReadOnlyPart")); if (m_part) { // tell the KParts::MainWindow that this is indeed the main widget setCentralWidget(m_part->widget()); // and integrate the part's GUI with the shell's createGUI(m_part); } } else { // if we couldn't find our Part, we exit since the Shell by // itself can't do anything useful KMessageBox::error(this, i18n("Unable to find kpdf Part.")); kapp->quit(); // we return here, cause kapp->quit() only means "exit the // next time we enter the event loop... return; } PDFPartView * partView = static_cast(m_part->widget()); connect( partView->outputdev, SIGNAL( rightClick() ),SLOT( slotRMBClick() ) ); readSettings(); } Shell::~Shell() { writeSettings(); } void Shell::openURL( const KURL & url ) { m_part->openURL( url ); recent->addURL (url); } void Shell::readSettings() { recent->loadEntries( KGlobal::config() ); KGlobal::config()->setDesktopGroup(); bool fullScreen = KGlobal::config()->readBoolEntry( "FullScreen", false ); setFullScreen( fullScreen ); } void Shell::writeSettings() { saveMainWindowSettings(KGlobal::config(), "MainWindow"); recent->saveEntries( KGlobal::config() ); KGlobal::config()->setDesktopGroup(); KGlobal::config()->writeEntry( "FullScreen", m_fullScreenAction->isChecked()); KGlobal::config()->sync(); } void Shell::setupActions() { KStdAction::open(this, SLOT(fileOpen()), actionCollection()); recent = KStdAction::openRecent( this, SLOT( openURL( const KURL& ) ), actionCollection() ); KStdAction::saveAs(this, SLOT(fileSaveAs()), actionCollection()); KStdAction::quit( this, SLOT(slotQuit()), actionCollection()); //createStandardStatusBarAction(); setStandardToolBarMenuEnabled(true); KStdAction::keyBindings(this, SLOT(optionsConfigureKeys()), actionCollection()); KStdAction::configureToolbars(this, SLOT(optionsConfigureToolbars()), actionCollection()); m_showMenuBarAction = KStdAction::showMenubar( this, SLOT( slotShowMenubar() ), actionCollection(), "showmenubar" ); #if KDE_VERSION >= KDE_MAKE_VERSION(3,1,90) createStandardStatusBarAction(); #endif setAutoSaveSettings(); setStandardToolBarMenuEnabled(true); #if KDE_VERSION >= KDE_MAKE_VERSION(3,1,90) m_fullScreenAction = KStdAction::fullScreen( this, SLOT( slotUpdateFullScreen() ), actionCollection(), this ); #else m_fullScreenAction = new KToggleAction( this, SLOT( slotUpdateFullScreen() ) ); #endif m_popup = new KPopupMenu( this, "rmb popup" ); m_popup->insertTitle( i18n( "Full Screen Options" ) ); m_fullScreenAction->plug( m_popup ); } void Shell::saveProperties(KConfig* config) { // the 'config' object points to the session managed // config file. anything you write here will be available // later when this app is restored config->writePathEntry( "URL", m_part->url().prettyURL() ); } void Shell::slotShowMenubar() { if ( m_showMenuBarAction->isChecked() ) menuBar()->show(); else menuBar()->hide(); } void Shell::readProperties(KConfig* config) { // the 'config' object points to the session managed // config file. this function is automatically called whenever // the app is being restored. read in here whatever you wrote // in 'saveProperties' KURL url = config->readPathEntry( "URL" ); if ( url.isValid() ) openURL( url ); } void Shell::fileOpen() { // this slot is called whenever the File->Open menu is selected, // the Open shortcut is pressed (usually CTRL+O) or the Open toolbar // button is clicked KURL url = KFileDialog::getOpenURL();//getOpenFileName(); if (!url.isEmpty()) openURL(url); } void Shell::fileSaveAs() { KURL saveURL = KFileDialog::getSaveURL( m_part->url().isLocalFile() ? m_part->url().url() : m_part->url().fileName(), QString::null, m_part->widget(), QString::null ); if( !KIO::NetAccess::upload( m_part->url().path(), saveURL, static_cast( 0 ) ) ) ; // TODO: Proper error dialog } void Shell::optionsConfigureKeys() { KKeyDialog::configure(actionCollection()); } void Shell::optionsConfigureToolbars() { saveMainWindowSettings(KGlobal::config(), "MainWindow"); // use the standard toolbar editor KEditToolbar dlg(factory()); connect(&dlg, SIGNAL(newToolbarConfig()), this, SLOT(applyNewToolbarConfig())); dlg.exec(); } void Shell::applyNewToolbarConfig() { applyMainWindowSettings(KGlobal::config(), "MainWindow"); } void Shell::slotQuit() { kapp->closeAllWindows(); } void Shell::setFullScreen( bool useFullScreen ) { if( useFullScreen ) showFullScreen(); else showNormal(); } void Shell::slotUpdateFullScreen() { if( m_fullScreenAction->isChecked()) { menuBar()->hide(); statusBar()->hide(); toolBar()->hide(); //todo fixme //m_pdfpart->setFullScreen( true ); showFullScreen(); #if 0 kapp->installEventFilter( m_fsFilter ); if ( m_gvpart->document()->isOpen() ) slotFitToPage(); #endif } else { //kapp->removeEventFilter( m_fsFilter ); //m_pdfpart->setFullScreen( false ); menuBar()->show(); #if KDE_VERSION >= KDE_MAKE_VERSION(3,1,90) KToggleAction *statusbarAction = dynamic_cast(actionCollection()->action(KStdAction::name(KStdAction::ShowStatusbar))); Q_ASSERT( statusbarAction ); if (statusbarAction->isChecked()) statusBar()->show(); #endif toolBar()->show(); showNormal(); } } void Shell::slotRMBClick() { m_popup->exec( QCursor::pos() ); } // vim:ts=2:sw=2:tw=78:et