summaryrefslogtreecommitdiffstats
path: root/lib/kofficeui/KoPageLayoutHeader.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 /lib/kofficeui/KoPageLayoutHeader.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 'lib/kofficeui/KoPageLayoutHeader.cpp')
-rw-r--r--lib/kofficeui/KoPageLayoutHeader.cpp73
1 files changed, 73 insertions, 0 deletions
diff --git a/lib/kofficeui/KoPageLayoutHeader.cpp b/lib/kofficeui/KoPageLayoutHeader.cpp
new file mode 100644
index 00000000..ad5e018c
--- /dev/null
+++ b/lib/kofficeui/KoPageLayoutHeader.cpp
@@ -0,0 +1,73 @@
+/* This file is part of the KDE project
+ * 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; version 2.
+ *
+ * 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 <KoPageLayoutHeader.h>
+#include <KoPageLayoutHeader.moc>
+#include <KoUnitWidgets.h>
+
+#include <qlayout.h>
+#include <qcheckbox.h>
+
+KoPageLayoutHeader::KoPageLayoutHeader(QWidget *parent, KoUnit::Unit unit, const KoKWHeaderFooter &kwhf)
+ : KoPageLayoutHeaderBase(parent) {
+ m_headerFooters = kwhf;
+ QHBoxLayout *lay = new QHBoxLayout(headerSpacingPane);
+ m_headerSpacing = new KoUnitDoubleSpinBox( headerSpacingPane, 0.0, 999.0, 0.5, kwhf.ptHeaderBodySpacing, unit );
+ lay->addWidget(m_headerSpacing);
+
+ lay = new QHBoxLayout(footerSpacingPane);
+ m_footerSpacing = new KoUnitDoubleSpinBox( footerSpacingPane, 0.0, 999.0, 0.5, kwhf.ptFooterBodySpacing, unit );
+ lay->addWidget(m_footerSpacing);
+
+ lay = new QHBoxLayout(footnotePane);
+ m_footnoteSpacing = new KoUnitDoubleSpinBox( footnotePane, 0.0, 999.0, 0.5, kwhf.ptFootNoteBodySpacing, unit );
+ lay->addWidget(m_footnoteSpacing);
+
+ if ( kwhf.header == HF_FIRST_DIFF || kwhf.header == HF_FIRST_EO_DIFF )
+ rhFirst->setChecked( true );
+ if ( kwhf.header == HF_EO_DIFF || kwhf.header == HF_FIRST_EO_DIFF )
+ rhEvenOdd->setChecked( true );
+ if ( kwhf.footer == HF_FIRST_DIFF || kwhf.footer == HF_FIRST_EO_DIFF )
+ rfFirst->setChecked( true );
+ if ( kwhf.footer == HF_EO_DIFF || kwhf.footer == HF_FIRST_EO_DIFF )
+ rfEvenOdd->setChecked( true );
+}
+
+const KoKWHeaderFooter& KoPageLayoutHeader::headerFooter() {
+ if ( rhFirst->isChecked() && rhEvenOdd->isChecked() )
+ m_headerFooters.header = HF_FIRST_EO_DIFF;
+ else if ( rhFirst->isChecked() )
+ m_headerFooters.header = HF_FIRST_DIFF;
+ else if ( rhEvenOdd->isChecked() )
+ m_headerFooters.header = HF_EO_DIFF;
+ else
+ m_headerFooters.header = HF_SAME;
+
+ m_headerFooters.ptHeaderBodySpacing = m_headerSpacing->value();
+ m_headerFooters.ptFooterBodySpacing = m_footerSpacing->value();
+ m_headerFooters.ptFootNoteBodySpacing = m_footnoteSpacing->value();
+ if ( rfFirst->isChecked() && rfEvenOdd->isChecked() )
+ m_headerFooters.footer = HF_FIRST_EO_DIFF;
+ else if ( rfFirst->isChecked() )
+ m_headerFooters.footer = HF_FIRST_DIFF;
+ else if ( rfEvenOdd->isChecked() )
+ m_headerFooters.footer = HF_EO_DIFF;
+ else
+ m_headerFooters.footer = HF_SAME;
+ return m_headerFooters;
+}