diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-01-20 01:29:50 +0000 |
commit | 8362bf63dea22bbf6736609b0f49c152f975eb63 (patch) | |
tree | 0eea3928e39e50fae91d4e68b21b1e6cbae25604 /kexi/plugins/reports/reportwidgets.cpp | |
download | koffice-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 'kexi/plugins/reports/reportwidgets.cpp')
-rw-r--r-- | kexi/plugins/reports/reportwidgets.cpp | 181 |
1 files changed, 181 insertions, 0 deletions
diff --git a/kexi/plugins/reports/reportwidgets.cpp b/kexi/plugins/reports/reportwidgets.cpp new file mode 100644 index 00000000..5437325a --- /dev/null +++ b/kexi/plugins/reports/reportwidgets.cpp @@ -0,0 +1,181 @@ +/* This file is part of the KDE project + Copyright (C) 2004 Cedric Pasteur <cedric.pasteur@free.fr> + + 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 <qpainter.h> + +#include <form.h> +#include <formIO.h> +#include <formmanager.h> +#include <kexidb/utils.h> +#include <kexidb/connection.h> +#include <kexipart.h> + +#include "kexireportview.h" +#include "reportwidgets.h" + +Label::Label(const QString &text, QWidget *parent, const char *name) +: QLabel(text, parent, name) +{ + setPaletteBackgroundColor(white); +} + +//////////////////////////////////////////////////////////////////// + +ReportLine::ReportLine(QWidget *parent, const char *name) +: QWidget(parent, name) +{ + m_lineStyle = (ReportLineStyle)Qt::SolidLine; + m_lineWidth = 1; + m_capStyle = (CapStyle)Qt::FlatCap; + m_color = paletteForegroundColor(); + setPaletteBackgroundColor(white); +} + +ReportLine::ReportLineStyle +ReportLine::lineStyle() const +{ + return m_lineStyle; +} + +void +ReportLine::setLineStyle(ReportLineStyle style) +{ + m_lineStyle = style; + update(); +} + +int +ReportLine::lineWidth() const +{ + return m_lineWidth; +} + +void +ReportLine::setLineWidth(int width) +{ + m_lineWidth = width; + update(); +} + +QColor +ReportLine::color() const +{ + return m_color; +} + +void +ReportLine::setColor(const QColor &color) +{ + m_color = color; + update(); +} + +ReportLine::CapStyle +ReportLine::capStyle() const +{ + return m_capStyle; +} + +void +ReportLine::setCapStyle(CapStyle capStyle) +{ + m_capStyle = capStyle; + update(); +} + +void +ReportLine::paintEvent (QPaintEvent *ev) +{ + QPainter p(this); + if(!ev->erased()) + p.eraseRect(0, 0, width(), height()); + QPen pen(m_color, m_lineWidth, (Qt::PenStyle)m_lineStyle); + pen.setCapStyle((Qt::PenCapStyle)m_capStyle); + p.setPen(pen); + p.drawLine(0, 0, width() -1, height() - 1); +} + +//////////////////////////////////////////////////////////////////// + + +PicLabel::PicLabel(const QPixmap &pix, QWidget *parent, const char *name) + : QLabel(parent, name) +{ + setPixmap(pix); + setScaledContents(false); + setPaletteBackgroundColor(white); +} + +bool +PicLabel::setProperty(const char *name, const QVariant &value) +{ + if(QString(name) == "pixmap") + resize(value.toPixmap().height(), value.toPixmap().width()); + return QLabel::setProperty(name, value); +} + +//////////////////////////////////////////////////////////////////// + +KexiSubReport::KexiSubReport(QWidget *parent, const char *name) +: QScrollView(parent, name), m_form(0), m_widget(0) +{ + setFrameStyle(QFrame::Plain | QFrame::Box); + viewport()->setPaletteBackgroundColor(white); +} + +void +KexiSubReport::setReportName(const QString &name) +{ + if(name.isEmpty()) + return; + + // we need a KexiReportView* + QWidget *w = parentWidget(); + while(w && !w->isA("KexiReportView")) + w = w->parentWidget(); + KexiReportView *view = (KexiReportView*)w; + if(!view) + return; + + // we check if there is a form with this name + int id = KexiDB::idForObjectName(*(view->connection()), name, KexiPart::ReportObjectType); + if((id == 0) || (id == view->parentDialog()->id())) // == our form + return; // because of recursion when loading + + // we create the container widget + delete m_widget; + m_widget = new QWidget(viewport(), "kexisubreport_widget"); + m_widget->show(); + addChild(m_widget); + m_form = new Form(KexiReportPart::library(), this->name()); + m_form->createToplevel(m_widget); + + // and load the sub form + QString data; + tristate res = view->connection()->loadDataBlock(id, data , QString::null); + if(res != true) + return; + + KFormDesigner::FormIO::loadFormFromString(m_form, m_widget, data); + m_form->setDesignMode(false); + + m_reportName = name; +} + +#include "reportwidgets.moc" + |