diff options
Diffstat (limited to 'kword/KWDeleteDia.cpp')
-rw-r--r-- | kword/KWDeleteDia.cpp | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/kword/KWDeleteDia.cpp b/kword/KWDeleteDia.cpp new file mode 100644 index 00000000..ab447cc6 --- /dev/null +++ b/kword/KWDeleteDia.cpp @@ -0,0 +1,90 @@ +/* This file is part of the KDE project + Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org> + Copyright (C) 2005 Thomas Zander <zander@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 "KWTableFrameSet.h" +#include "KWDeleteDia.h" +#include "KWView.h" + +#include <klocale.h> +#include <qlabel.h> +#include <qlayout.h> + +KWDeleteDia::KWDeleteDia( KWView *parent, KWTableFrameSet *table, DeleteType type, QValueList<uint> remove) + : KDialogBase( Plain, (type==deleteRow?i18n("Delete Row") : i18n("Delete Column")), Ok | Cancel, Ok, parent, "Delete Table items dialog", true ) +{ + Q_ASSERT(type == deleteRow || type == deleteColumn); + m_type = type; + m_table = table; + m_toRemove = remove; + m_view = parent; + + setupTab1(); + setButtonOK( KGuiItem( + i18n("&Delete"), "editdelete", type == deleteRow ? + i18n("Delete the row from the table.") : + i18n("Delete the column from the table.")) ); +} + +void KWDeleteDia::setupTab1() { + QWidget *tab1 = plainPage(); + QGridLayout *grid1 = new QGridLayout( tab1, 4, 1, 0, spacingHint() ); + unsigned int count = m_toRemove.count(); + Q_ASSERT(count > 0); + + QString message; + if ( count == ( (m_type == deleteRow) ? m_table->getRows() : m_table->getColumns() ) ) + // all the columns are selected and the user asked to remove columns or the same with rows + // => we want to delete the whole table + message = i18n("Delete the whole table?"); + else if ( count > 10 ) + // do not display hugely long dialogs if many rows/cells are selected + message = m_type == deleteRow ? i18n("Delete all selected rows?") : i18n("Delete all selected cells?"); + else if ( count == 1 ) { + message = m_type == deleteRow ? i18n( "Delete row number %1?" ) : i18n( "Delete column number %1?" ); + message = message.arg( m_toRemove.first() + 1 ); // +1 because humans count from 1 + } + else { + message = m_type == deleteRow ? i18n( "Delete rows: %1 ?" ) : i18n( "Delete columns: %1 ?" ); + + QValueListIterator<uint> items = m_toRemove.begin(); + QString rows; + for(;items != m_toRemove.end(); ++items) { + if(! rows.isEmpty()) + rows += ", "; + rows += QString().setNum((*items) +1); + } + message = message.arg( rows ); + } + + QLabel *rc = new QLabel( message , tab1 ); + rc->resize( rc->sizeHint() ); + rc->setAlignment( AlignLeft | AlignBottom ); + grid1->addWidget( rc, 1, 0 ); +} + +void KWDeleteDia::slotOk() { + if(m_type == deleteRow) + m_view->tableDeleteRow(m_toRemove); + else + m_view->tableDeleteCol(m_toRemove); + KDialogBase::slotOk(); +} + +#include "KWDeleteDia.moc" |