diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | e9ae80694875f869892f13f4fcaf1170a00dea41 (patch) | |
tree | aa2f8d8a217e2d376224c8d46b7397b68d35de2d /kfilereplace/report.h | |
download | tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.tar.gz tdewebdev-e9ae80694875f869892f13f4fcaf1170a00dea41.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfilereplace/report.h')
-rw-r--r-- | kfilereplace/report.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/kfilereplace/report.h b/kfilereplace/report.h new file mode 100644 index 00000000..98996f92 --- /dev/null +++ b/kfilereplace/report.h @@ -0,0 +1,58 @@ +/*************************************************************************** + report.h - Report document class + ------------------- + begin : fri aug 13 15:29:46 CEST 2004 + + copyright : (C) 2004 Emiliano Gulmini + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 REPORT_H +#define REPORT_H + +// QT +class QString; + +// KDE +#include <klocale.h> +#include "configurationclasses.h" +class KListView; + +/** Report class is used to create a pair of files (a xml and a css file) which are + * a short statistical report of the operations. + */ + +class Report +{ + private: + KListView* m_stringsView, + * m_resultsView; + QString m_docPath; + bool m_isSearchFlag; + RCOptions* m_option; + + public: + Report(RCOptions* info, KListView* rv, KListView* sv) { m_option = info; + m_resultsView = rv; + m_stringsView = sv; + m_isSearchFlag = m_option->m_searchingOnlyMode; + } + ~Report() { m_option = 0; } + private: + void createReportFile(); + void createStyleSheet(); + + public: + void createDocument(const QString& docPath); +}; + +#endif // REPORT_H |