summaryrefslogtreecommitdiffstats
path: root/tdefilereplace/report.h
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2015-01-27 18:42:31 +0900
committerMichele Calgaro <[email protected]>2015-01-27 18:42:31 +0900
commite9638a300c509773908226ef2299f2f2b83a1f55 (patch)
tree9813d82d8ae78e005c73838a06f8a90ac6e27825 /tdefilereplace/report.h
parent92bb53cb48fb172f922e60ffccfcce3e3db26967 (diff)
downloadtdewebdev-e9638a300c509773908226ef2299f2f2b83a1f55.tar.gz
tdewebdev-e9638a300c509773908226ef2299f2f2b83a1f55.zip
Moved TDEFileReplace to tdeutils. This resolves bug 767.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'tdefilereplace/report.h')
-rw-r--r--tdefilereplace/report.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/tdefilereplace/report.h b/tdefilereplace/report.h
deleted file mode 100644
index 75c27cb3..00000000
--- a/tdefilereplace/report.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/***************************************************************************
- report.h - Report document class
- -------------------
- begin : fri aug 13 15:29:46 CEST 2004
-
- copyright : (C) 2004 Emiliano Gulmini
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * 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 <tdelocale.h>
-#include "configurationclasses.h"
-class TDEListView;
-
-/** 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:
- TDEListView* m_stringsView,
- * m_resultsView;
- TQString m_docPath;
- bool m_isSearchFlag;
- RCOptions* m_option;
-
- public:
- Report(RCOptions* info, TDEListView* rv, TDEListView* 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