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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/* This file is part of the KDE project
Copyright (C) 1999-2004 Laurent Montel <montel@kde.org>
(C) 2002-2004 Ariya Hidayat <ariya@kde.org>
(C) 2003 Norbert Andres <nandres@web.de>
(C) 2002 John Dailey <dailey@vt.edu>
(C) 2001-2002 Philipp Mueller <philipp.mueller@gmx.de>
(C) 1998-1999 Torben Weis <weis@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 <tqlayout.h>
#include <klocale.h>
#include <tqlistbox.h>
#include <tqlabel.h>
#include <kcommand.h>
#include "kspread_view.h"
#include "kspread_doc.h"
#include "kspread_map.h"
#include "commands.h"
#include "kspread_dlg_show.h"
using namespace KSpread;
ShowDialog::ShowDialog( View* parent, const char* name )
: KDialogBase( parent, name,TRUE,i18n("Show Sheet"),Ok|Cancel )
{
m_pView = parent;
TQWidget *page = new TQWidget( this );
setMainWidget(page);
TQVBoxLayout *lay1 = new TQVBoxLayout( page, 0, spacingHint() );
TQLabel *label = new TQLabel( i18n("Select hidden sheets to show:"), page );
lay1->addWidget( label );
list=new TQListBox(page);
lay1->addWidget( list );
list->setSelectionMode(TQListBox::Multi);
TQString text;
TQStringList::Iterator it;
TQStringList tabsList=m_pView->doc()->map()->hiddenSheets();
for ( it = tabsList.begin(); it != tabsList.end(); ++it )
{
text=*it;
list->insertItem(text);
}
if(!list->count())
enableButtonOK(false);
connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( slotOk() ) );
connect( list, TQT_SIGNAL(doubleClicked(TQListBoxItem *)),this,TQT_SLOT(slotDoubleClicked(TQListBoxItem *)));
resize( 200, 150 );
setFocus();
}
void ShowDialog::slotDoubleClicked(TQListBoxItem *)
{
slotOk();
}
void ShowDialog::slotOk()
{
m_pView->doc()->emitBeginOperation( false );
TQStringList listSheet;
for (int i=0; i < list->numRows(); i++)
{
if (list->isSelected(i))
{
listSheet.append( list->text(i));
}
}
//m_pView->tabBar()->showSheet(listSheet);
if ( listSheet.count()==0 )
return;
Sheet *sheet;
KMacroCommand *macroUndo=new KMacroCommand( i18n("Show Sheet") );
for ( TQStringList::Iterator it = listSheet.begin(); it != listSheet.end(); ++it )
{
sheet=m_pView->doc()->map()->findSheet( *it );
KCommand* command = new ShowSheetCommand( sheet );
macroUndo->addCommand( command );
}
m_pView->doc()->addCommand( macroUndo );
macroUndo->execute();
m_pView->slotUpdateView( m_pView->activeSheet() );
accept();
}
#include "kspread_dlg_show.moc"
|