You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
3.1 KiB
92 lines
3.1 KiB
// -*- 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 );
|
|
}
|