summaryrefslogtreecommitdiffstats
path: root/kchart/kchartPageLayout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kchart/kchartPageLayout.cpp')
-rw-r--r--kchart/kchartPageLayout.cpp120
1 files changed, 120 insertions, 0 deletions
diff --git a/kchart/kchartPageLayout.cpp b/kchart/kchartPageLayout.cpp
new file mode 100644
index 000000000..e2587b9ff
--- /dev/null
+++ b/kchart/kchartPageLayout.cpp
@@ -0,0 +1,120 @@
+/* This file is part of the KDE project
+ Copyright (C) 2002 Montel Laurent <lmontel@mandrakesoft.com>
+ 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 "kchartPageLayout.h"
+#include "kchartPageLayout.moc"
+#include "kchart_params.h"
+#include <knumvalidator.h>
+#include <tqlineedit.h>
+#include <tqlayout.h>
+#include <tdelocale.h>
+#include <tqlabel.h>
+#include <tqgroupbox.h>
+
+namespace KChart
+{
+
+KChartPageLayout::KChartPageLayout( KChartParams* _params, TQWidget* parent, const char* name )
+ : KDialogBase( parent, name, TRUE,i18n("Page Layout"),KDialogBase::Ok | KDialogBase::Cancel | KDialogBase::User1 | KDialogBase::Apply , KDialogBase::Ok,true )
+{
+ params=_params;
+#if 0
+ TQWidget *page = new TQWidget( this );
+#else
+ TQGroupBox* page = new TQGroupBox( 2, Qt::Horizontal, i18n("Margins"),
+ this );
+#endif
+ setMainWidget(page);
+
+ // FIXME: The following code is strange, since it is written to
+ // use a grid layout with a standard TQWidget. However, with the
+ // TQGroupBox, it looks better, and since it actually works, there
+ // is no immediate need for rewriting. In the sake of clarity, it
+ // should be done though, and we should use the layout
+ // capabilities of the groupbox instead..
+
+ setButtonText( KDialogBase::User1, i18n("&Reset") );
+
+ TQGridLayout *grid = new TQGridLayout(page, 4, 2, KDialog::marginHint(), KDialog::spacingHint());
+
+ TQLabel *lab=new TQLabel(i18n("Left:"),page);
+ grid->addWidget(lab,0,0);
+
+ leftBorder=new TQLineEdit(page);
+ leftBorder->setValidator( new KIntValidator( 0,9999,leftBorder ) );
+ grid->addWidget(leftBorder,1,0);
+
+ lab=new TQLabel(i18n("Right:"),page);
+ grid->addWidget(lab,0,1);
+
+ rightBorder=new TQLineEdit(page);
+ rightBorder->setValidator( new KIntValidator( 0,9999,rightBorder ) );
+ grid->addWidget(rightBorder,1,1);
+
+ lab=new TQLabel(i18n("Top:"),page);
+ grid->addWidget(lab,2,0);
+
+ topBorder=new TQLineEdit(page);
+ topBorder->setValidator( new KIntValidator( 0,9999,topBorder ) );
+ grid->addWidget(topBorder,3,0);
+
+ lab=new TQLabel(i18n("Bottom:"),page);
+ grid->addWidget(lab,2,1);
+
+ bottomBorder=new TQLineEdit(page);
+ bottomBorder->setValidator( new KIntValidator( 0,9999,bottomBorder ) );
+ grid->addWidget(bottomBorder,3,1);
+
+ init();
+ connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( slotOk() ) );
+ connect( this, TQT_SIGNAL( applyClicked() ), this, TQT_SLOT( slotApply() ) );
+ connect( this, TQT_SIGNAL( user1Clicked() ), this ,TQT_SLOT( slotReset() ));
+
+}
+
+void KChartPageLayout::init()
+{
+ oldGlobalLeadingRight = params->globalLeadingRight();
+ oldGlobalLeadingLeft = params->globalLeadingLeft();
+ oldGlobalLeadingTop = params->globalLeadingTop();
+ oldGlobalLeadingBottom = params->globalLeadingBottom();
+ slotReset();
+}
+
+void KChartPageLayout::slotOk()
+{
+ slotApply();
+ accept();
+}
+
+void KChartPageLayout::slotApply()
+{
+ params->setGlobalLeading( leftBorder->text().toInt(),topBorder->text().toInt() , rightBorder->text().toInt(), bottomBorder->text().toInt() );
+ emit dataChanged();
+}
+
+void KChartPageLayout::slotReset()
+{
+ rightBorder->setText(TQString::number(oldGlobalLeadingRight));
+ leftBorder->setText(TQString::number(oldGlobalLeadingLeft));
+ topBorder->setText(TQString::number(oldGlobalLeadingTop));
+ bottomBorder->setText(TQString::number(oldGlobalLeadingBottom));
+}
+
+} //KChart namespace