From d63c9d696eb6e2539528b99afc21f4086c9defe3 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 23 May 2021 20:48:35 +0900 Subject: Renaming of files in preparation for code style tools. Signed-off-by: Michele Calgaro (cherry picked from commit 8b78a8791bc539bcffe7159f9d9714d577cb3d7d) --- kspread/dialogs/kspread_dlg_show.cpp | 112 +++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100644 kspread/dialogs/kspread_dlg_show.cpp (limited to 'kspread/dialogs/kspread_dlg_show.cpp') diff --git a/kspread/dialogs/kspread_dlg_show.cpp b/kspread/dialogs/kspread_dlg_show.cpp new file mode 100644 index 00000000..11f55e6d --- /dev/null +++ b/kspread/dialogs/kspread_dlg_show.cpp @@ -0,0 +1,112 @@ +/* This file is part of the KDE project + Copyright (C) 1999-2004 Laurent Montel + (C) 2002-2004 Ariya Hidayat + (C) 2003 Norbert Andres + (C) 2002 John Dailey + (C) 2001-2002 Philipp Mueller + (C) 1998-1999 Torben Weis + + 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 +#include +#include +#include + +#include + +#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" -- cgit v1.2.1