summaryrefslogtreecommitdiffstats
path: root/kpresenter/KPrGotoPage.cpp
blob: bcf4677551b09573fcac9435b40ca03d977a25d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* 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 <tqlabel.h>
#include <tqlistbox.h>
#include <tqlayout.h>
#include <tqpushbutton.h>

#include <tdelocale.h>
#include <kdialog.h>

#include "KPrDocument.h"
#include "KPrPage.h"

KPrGotoPage::KPrGotoPage( const KPrDocument *doc,
                        const TQValueList<int> &slides, int start,
                        TQWidget *parent, const char *name )
    : KDialogBase( parent, name, true, i18n("Goto Slide..."), Ok|Cancel),
      oldPage(start)
{

    TQWidget *page = new TQWidget( this );
    setMainWidget(page);
    TQVBoxLayout *ml = new TQVBoxLayout( page, KDialog::marginHint(),
                                       KDialog::spacingHint());
    TQLabel *label = new TQLabel( i18n( "Go to slide:" ), page );
    ml->addWidget( label );
    spinbox = new TQListBox( page );
    connect( spinbox, TQ_SIGNAL(doubleClicked( TQListBoxItem* )),
             this, TQ_SLOT(accept()) );
    connect( spinbox, TQ_SIGNAL(returnPressed( TQListBoxItem* )),
             this, TQ_SLOT(accept()) );
    ml->addWidget( spinbox );

    TQPtrList<KPrPage> pageList = doc->getPageList(); // because of const doc, we can't do doc->pageList()->at()
    TQValueList<int>::ConstIterator it = slides.begin();
    for ( ; it != slides.end(); ++it ) {
        TQString t( pageList.at( (*it) - 1 )->pageTitle() );
        // cut ultra long titles...
        if(t.length() > 30) {
            t.truncate(30);
            t+="...";
        }
        spinbox->insertItem( TQString( "%1 - %2" ).arg( *it ).arg( t ), -1 );
        if ( *it == start )
            spinbox->setCurrentItem( spinbox->count()-1 );
    }

    if ( parent )
        parent->setCursor( TQt::forbiddenCursor );
}

int KPrGotoPage::gotoPage( const KPrDocument *doc,
                          const TQValueList<int> &slides, int start,
                          TQWidget *parent)
{
    KPrGotoPage dia( doc, slides, start,parent, 0L );
    dia.exec();
    dia.resetCursor();
    return dia.page();
}

int KPrGotoPage::page() const {
    if(result()==TQDialog::Accepted)
        return spinbox->currentText().left( spinbox->currentText().find( "-" ) - 1 ).toInt();
    return oldPage;
}

void KPrGotoPage::resetCursor() {
    if ( parentWidget() )
        parentWidget()->setCursor( TQt::blankCursor );
}