QtiPlot 0.9.7.3

TableStatistics.h

Go to the documentation of this file.
00001 /***************************************************************************
00002     File                 : TableStatistics.h
00003     Project              : QtiPlot
00004 --------------------------------------------------------------------
00005     Copyright            : (C) 2006 by Knut Franke
00006     Email (use @ for *)  : knut.franke*gmx.de
00007     Description          : Table subclass that displays statistics on
00008                            columns or rows of another table
00009 
00010  ***************************************************************************/
00011 
00012 /***************************************************************************
00013  *                                                                         *
00014  *  This program is free software; you can redistribute it and/or modify   *
00015  *  it under the terms of the GNU General Public License as published by   *
00016  *  the Free Software Foundation; either version 2 of the License, or      *
00017  *  (at your option) any later version.                                    *
00018  *                                                                         *
00019  *  This program is distributed in the hope that it will be useful,        *
00020  *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
00021  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
00022  *  GNU General Public License for more details.                           *
00023  *                                                                         *
00024  *   You should have received a copy of the GNU General Public License     *
00025  *   along with this program; if not, write to the Free Software           *
00026  *   Foundation, Inc., 51 Franklin Street, Fifth Floor,                    *
00027  *   Boston, MA  02110-1301  USA                                           *
00028  *                                                                         *
00029  ***************************************************************************/
00030 #ifndef TABLE_STATISTICS_H
00031 #define TABLE_STATISTICS_H
00032 
00033 #include "Table.h"
00034 
00040 class TableStatistics : public Table
00041 {
00042     Q_OBJECT
00043 
00044     public:
00046         enum Type { row, column };
00047         enum StatisticsColType {NoStats, Row, Col, Rows, Cols, Mean, StandardDev, StandardError, Variance, Sum, iMax, Max, iMin, Min, N, Median};
00048         TableStatistics(ScriptingEnv *env, ApplicationWindow *parent, Table *base, Type, QList<int> targets);
00050         Type type() const { return d_type; }
00052         Table *base() const { return d_base; }
00053         // saving
00054         virtual void save(const QString&, const QString &geometry, bool = false);
00055         void setColumnStatsTypes(const QList<int>& colStatTypes);
00056 
00057     public slots:
00059         void update();
00061         void update(Table*, const QString& colName);
00063         void renameCol(const QString&, const QString&);
00065         void removeCol(const QString&);
00066 
00067     private slots:
00068         void closedBase();
00069         void removeStatsCol(int);
00070         void moveColumn(int, int, int);
00071         void changeColIndex(int, int);
00072         void insertCols(int start, int count);
00073         void addCol(PlotDesignation pd = Y);
00074     
00075     private:
00076         Table *d_base;
00077         Type d_type;
00078         QList<int> d_targets;
00079         QList<int> d_stats_col_type;
00080 };
00081 
00082 #endif