summaryrefslogtreecommitdiffstats
path: root/tdefilereplace/report.h
blob: 2255f240f39ee9f292d2d1262c71b341631a7f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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 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