diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:06:46 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:06:46 -0600 |
commit | ef2264e9790ae7e700ad3cf5fb3dbad05efd98d8 (patch) | |
tree | ac4650a642d502c458d0b654c8b731739ce601dc /tdefilereplace/report.h | |
parent | a32b928478b59d4fa8b8495bbad6864476c129b1 (diff) | |
download | tdewebdev-ef2264e9790ae7e700ad3cf5fb3dbad05efd98d8.tar.gz tdewebdev-ef2264e9790ae7e700ad3cf5fb3dbad05efd98d8.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tdefilereplace/report.h')
-rw-r--r-- | tdefilereplace/report.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/tdefilereplace/report.h b/tdefilereplace/report.h new file mode 100644 index 00000000..13856334 --- /dev/null +++ b/tdefilereplace/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 : emi_barbarossa@yahoo.it + ***************************************************************************/ + +/*************************************************************************** + * * + * 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 TQString; + +// 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; + TQString 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 TQString& docPath); +}; + +#endif // REPORT_H |