summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrGotoPage.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kpresenter/KPrGotoPage.cpp
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kpresenter/KPrGotoPage.cpp')
-rw-r--r--kpresenter/KPrGotoPage.cpp91
1 files changed, 91 insertions, 0 deletions
diff --git a/kpresenter/KPrGotoPage.cpp b/kpresenter/KPrGotoPage.cpp
new file mode 100644
index 000000000..44f372d1a
--- /dev/null
+++ b/kpresenter/KPrGotoPage.cpp
@@ -0,0 +1,91 @@
+// -*- Mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4; -*-
+/* This file is part of the KDE project
+ Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public License
+ along with this library; see the file COPYING.LIB. If not, write to
+ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+*/
+
+#include "KPrGotoPage.h"
+
+#include <qlabel.h>
+#include <qlistbox.h>
+#include <qlayout.h>
+#include <qpushbutton.h>
+
+#include <klocale.h>
+#include <kdialog.h>
+
+#include "KPrDocument.h"
+#include "KPrPage.h"
+
+KPrGotoPage::KPrGotoPage( const KPrDocument *doc,
+ const QValueList<int> &slides, int start,
+ QWidget *parent, const char *name )
+ : KDialogBase( parent, name, true, i18n("Goto Slide..."), Ok|Cancel),
+ oldPage(start)
+{
+
+ QWidget *page = new QWidget( this );
+ setMainWidget(page);
+ QVBoxLayout *ml = new QVBoxLayout( page, KDialog::marginHint(),
+ KDialog::spacingHint());
+ QLabel *label = new QLabel( i18n( "Go to slide:" ), page );
+ ml->addWidget( label );
+ spinbox = new QListBox( page );
+ connect( spinbox, SIGNAL(doubleClicked( QListBoxItem* )),
+ this, SLOT(accept()) );
+ connect( spinbox, SIGNAL(returnPressed( QListBoxItem* )),
+ this, SLOT(accept()) );
+ ml->addWidget( spinbox );
+
+ QPtrList<KPrPage> pageList = doc->getPageList(); // because of const doc, we can't do doc->pageList()->at()
+ QValueList<int>::ConstIterator it = slides.begin();
+ for ( ; it != slides.end(); ++it ) {
+ QString t( pageList.at( (*it) - 1 )->pageTitle() );
+ // cut ultra long titles...
+ if(t.length() > 30) {
+ t.truncate(30);
+ t+="...";
+ }
+ spinbox->insertItem( QString( "%1 - %2" ).arg( *it ).arg( t ), -1 );
+ if ( *it == start )
+ spinbox->setCurrentItem( spinbox->count()-1 );
+ }
+
+ if ( parent )
+ parent->setCursor( Qt::forbiddenCursor );
+}
+
+int KPrGotoPage::gotoPage( const KPrDocument *doc,
+ const QValueList<int> &slides, int start,
+ QWidget *parent)
+{
+ KPrGotoPage dia( doc, slides, start,parent, 0L );
+ dia.exec();
+ dia.resetCursor();
+ return dia.page();
+}
+
+int KPrGotoPage::page() const {
+ if(result()==QDialog::Accepted)
+ return spinbox->currentText().left( spinbox->currentText().find( "-" ) - 1 ).toInt();
+ return oldPage;
+}
+
+void KPrGotoPage::resetCursor() {
+ if ( parentWidget() )
+ parentWidget()->setCursor( Qt::blankCursor );
+}