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.
91 lines
3.4 KiB
91 lines
3.4 KiB
/* 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 <tdelocale.h>
|
|
#include <tqlabel.h>
|
|
#include <tqlayout.h>
|
|
|
|
KWDeleteDia::KWDeleteDia( KWView *parent, KWTableFrameSet *table, DeleteType type, TQValueList<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"), "edit-delete", type == deleteRow ?
|
|
i18n("Delete the row from the table.") :
|
|
i18n("Delete the column from the table.")) );
|
|
}
|
|
|
|
void KWDeleteDia::setupTab1() {
|
|
TQWidget *tab1 = plainPage();
|
|
TQGridLayout *grid1 = new TQGridLayout( tab1, 4, 1, 0, spacingHint() );
|
|
unsigned int count = m_toRemove.count();
|
|
Q_ASSERT(count > 0);
|
|
|
|
TQString 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 ?" );
|
|
|
|
TQValueListIterator<uint> items = m_toRemove.begin();
|
|
TQString rows;
|
|
for(;items != m_toRemove.end(); ++items) {
|
|
if(! rows.isEmpty())
|
|
rows += ", ";
|
|
rows += TQString().setNum((*items) +1);
|
|
}
|
|
message = message.arg( rows );
|
|
}
|
|
|
|
TQLabel *rc = new TQLabel( 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"
|