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.
96 lines
3.1 KiB
96 lines
3.1 KiB
/***************************************************************************
|
|
kreportchartview.h
|
|
-------------------
|
|
begin : Sat May 22 2004
|
|
copyright : (C) 2004-2005 by Ace Jones
|
|
email : <ace.j@hotpop.com>
|
|
Thomas Baumgart <ipwizard@users.sourceforge.net>
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef KREPORTCHARTVIEW_H
|
|
#define KREPORTCHARTVIEW_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "../../config.h"
|
|
#endif
|
|
#ifdef HAVE_KDCHART
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// QT Includes
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// KDE Includes
|
|
// Some STL headers in GCC4.3 contain operator new. Memory checker mangles these
|
|
#ifdef _CHECK_MEMORY
|
|
#undef new
|
|
#endif
|
|
|
|
#include <tqlabel.h>
|
|
#include <KDChartWidget.h>
|
|
#include <KDChartTable.h>
|
|
#include <KDChartParams.h>
|
|
#include <KDChartAxisParams.h>
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// Project Includes
|
|
#ifdef _CHECK_MEMORY
|
|
#include <kmymoney/mymoneyutils.h>
|
|
#endif
|
|
|
|
namespace reports {
|
|
|
|
class KReportChartView: public KDChartWidget
|
|
{
|
|
public:
|
|
KReportChartView( TQWidget* parent, const char* name );
|
|
~KReportChartView() {}
|
|
static bool implemented(void) { return true; }
|
|
void setNewData( const KDChartTableData& newdata ) { this->setData(new KDChartTableData(newdata)); }
|
|
TQStringList& abscissaNames(void) { return m_abscissaNames; }
|
|
void refreshLabels(void) { this->params()->setAxisLabelStringParams( KDChartAxisParams::AxisPosBottom,&m_abscissaNames,0); }
|
|
void setProperty(int row, int col, int id);
|
|
// void setCircularLabels(void) { this->params()->setAxisLabelStringParams( KDChartAxisParams::AxisPosCircular,&m_abscissaNames,0); }
|
|
|
|
void setAccountSeries(bool accountSeries) {_accountSeries = accountSeries; }
|
|
bool getAccountSeries(void) {return _accountSeries; }
|
|
|
|
protected:
|
|
virtual void mouseMoveEvent( TQMouseEvent* event );
|
|
|
|
private:
|
|
TQStringList m_abscissaNames;
|
|
bool _accountSeries;
|
|
|
|
// label to display when hovering on a data region
|
|
TQLabel *label;
|
|
};
|
|
|
|
} // end namespace reports
|
|
|
|
#else
|
|
|
|
namespace reports {
|
|
|
|
class KReportChartView : public TQWidget
|
|
{
|
|
public:
|
|
KReportChartView( TQWidget* parent, const char* name ): TQWidget(parent,name) {}
|
|
~KReportChartView() {}
|
|
static bool implemented(void) { return false; }
|
|
};
|
|
|
|
} // end namespace reports
|
|
|
|
#endif
|
|
|
|
#endif // KREPORTCHARTVIEW_H
|