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 TableStatistics(ScriptingEnv *env, ApplicationWindow *parent, Table *base, Type, QList<int> targets); 00049 Type type() const { return d_type; } 00051 Table *base() const { return d_base; } 00052 // saving 00053 virtual void save(const QString&, const QString &geometry, bool = false); 00054 00055 public slots: 00057 void update(Table*, const QString& colName); 00059 void renameCol(const QString&, const QString&); 00061 void removeCol(const QString&); 00062 00063 private slots: 00064 void closedBase(); 00065 00066 private: 00067 Table *d_base; 00068 Type d_type; 00069 QList<int> d_targets; 00070 }; 00071 00072 #endif