summaryrefslogtreecommitdiffstats
path: root/kword/KWSplitCellDia.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-01-20 01:29:50 +0000
commit8362bf63dea22bbf6736609b0f49c152f975eb63 (patch)
tree0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kword/KWSplitCellDia.cpp
downloadkoffice-8362bf63dea22bbf6736609b0f49c152f975eb63.tar.gz
koffice-8362bf63dea22bbf6736609b0f49c152f975eb63.zip
Added old abandoned KDE3 version of koffice
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1077364 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kword/KWSplitCellDia.cpp')
-rw-r--r--kword/KWSplitCellDia.cpp97
1 files changed, 97 insertions, 0 deletions
diff --git a/kword/KWSplitCellDia.cpp b/kword/KWSplitCellDia.cpp
new file mode 100644
index 00000000..0a29d438
--- /dev/null
+++ b/kword/KWSplitCellDia.cpp
@@ -0,0 +1,97 @@
+/* This file is part of the KDE project
+ Copyright (C) 2001 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 "KWSplitCellDia.h"
+#include "KWSplitCellDia.moc"
+#include "KWTableDia.h"
+
+#include <qlayout.h>
+#include <qlabel.h>
+#include <qspinbox.h>
+
+#include <klocale.h>
+
+KWSplitCellDia::KWSplitCellDia( QWidget* parent, const char* name, unsigned int columns, unsigned int rows)
+ : KDialogBase( Plain, i18n("Split Cell"), Ok | Cancel, Ok, parent, name, true)
+{
+ m_cols = columns;
+ m_rows = rows;
+
+ setInitialSize( QSize(400, 300) );
+
+ QWidget *page = plainPage();
+ QGridLayout *grid = new QGridLayout( page, 4, 2, KDialog::marginHint(), KDialog::spacingHint() );
+
+ QLabel *lRows = new QLabel( i18n( "Number of rows:" ), page );
+ grid->addWidget( lRows, 0, 0 );
+
+ nRows = new QSpinBox( 1, 128, 1, page );
+ nRows->setValue( m_rows );
+ grid->addWidget( nRows, 1, 0 );
+
+ QLabel *lCols = new QLabel( i18n( "Number of columns:" ), page );
+ grid->addWidget( lCols, 2, 0 );
+
+ nCols = new QSpinBox( 1, 128, 1, page );
+ nCols->setValue( m_cols );
+ grid->addWidget( nCols, 3, 0 );
+
+ preview = new KWTablePreview( page, m_rows, m_cols );
+ preview->setBackgroundColor( white );
+ grid->addMultiCellWidget( preview, 0, 4, 1, 1 );
+
+ grid->addRowSpacing( 0, lRows->height() );
+ grid->addRowSpacing( 1, nRows->height() );
+ grid->addRowSpacing( 2, lCols->height() );
+ grid->addRowSpacing( 3, nCols->height() );
+ grid->addRowSpacing( 4, 150 - ( lRows->height() + nRows->height() + lCols->height() + nCols->height() ) );
+ grid->setRowStretch( 0, 0 );
+ grid->setRowStretch( 1, 0 );
+ grid->setRowStretch( 2, 0 );
+ grid->setRowStretch( 3, 0 );
+ grid->setRowStretch( 4, 1 );
+
+ grid->addColSpacing( 0, lRows->width() );
+ grid->addColSpacing( 0, nRows->width() );
+ grid->addColSpacing( 0, lCols->width() );
+ grid->addColSpacing( 0, nCols->width() );
+ grid->addColSpacing( 1, 150 );
+ grid->setColStretch( 0, 0 );
+ grid->setColStretch( 1, 1 );
+
+ grid->activate();
+ enableButtonOK( !(m_rows==1 && m_cols==1) );
+
+ connect( nRows, SIGNAL( valueChanged( int ) ), this, SLOT( rowsChanged( int ) ) );
+ connect( nCols, SIGNAL( valueChanged( int ) ), this, SLOT( colsChanged( int ) ) );
+ setFocus();
+}
+
+void KWSplitCellDia::rowsChanged( int rows ) {
+ m_rows=rows;
+ preview->setRows( m_rows );
+ enableButtonOK( !(m_rows==1 && m_cols==1) );
+}
+
+void KWSplitCellDia::colsChanged( int cols ) {
+ m_cols=cols;
+ preview->setCols( m_cols );
+ enableButtonOK( !(m_rows==1 && m_cols==1) );
+}
+