/*************************************************************************** show document statistics ----------------------------------------------------------------------- begin : Sun Sep 19 20:50:53 MET 1999 copyright : (C) 1999-2001 Ewald Arnold (C) 2005-2007 Peter Hedlund Copyright 2008 Frederik Gladhorn ----------------------------------------------------------------------- *************************************************************************** *************************************************************************** * * * 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 STATISTICSDIALOG_H #define STATISTICSDIALOG_H #include class KEduVocDocument; class StatisticsDialog : public KDialog { Q_OBJECT public: StatisticsDialog(KEduVocDocument* doc, QWidget *parent, bool showPracticeButtons); ~StatisticsDialog(); private slots: void configurePractice(); private: KEduVocDocument *m_doc; }; #endif