File: textanalysis.h

package info (click to toggle)
texstudio 2.11.2%2Bdebian-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 41,292 kB
  • ctags: 12,405
  • sloc: cpp: 93,072; xml: 10,217; ansic: 4,153; sh: 145; makefile: 56
file content (88 lines) | stat: -rw-r--r-- 2,092 bytes parent folder | download | duplicates (3)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#ifndef TEXTANALYSIS_H
#define TEXTANALYSIS_H

#include "mostQtHeaders.h"

#include "ui_textanalysis.h"

#include "qdocumentcursor.h"

class QEditor;
class QDocument;
struct StructureEntry;

class ClsWord
{
public:
	QString word;
	int count;
	ClsWord(): count(0) {}
	ClsWord(QString nw, int nc);
	bool operator<(const ClsWord &cmpTo) const;
};


class TextAnalysisModel : public QAbstractTableModel
{
	Q_OBJECT

public:
	QVector<ClsWord> words;
	int wordCount, characterInWords;
	float relativeProzentMultipler;

	int rowCount(const QModelIndex &parent = QModelIndex()) const;
	QVariant data(const QModelIndex &index, int role) const;
	QVariant headerData(int section, Qt::Orientation orientation,
	                    int role = Qt::DisplayRole) const;
	int columnCount(const QModelIndex &parent = QModelIndex()) const;
	void updateAll();

	bool hasChildren(const QModelIndex &parent = QModelIndex()) const;
};


class TextAnalysisDialog : public QDialog
{
	Q_OBJECT

	QVector<QPair<QString, int> > chapters;
	QVector<QMap<QString, int> > maps[3]; //texts, commands, comments
	QVector<int> lineCount[3]; //total line count, text lines, comment lines

	TextAnalysisModel displayed;
	const QDocument *document;
	QEditor *editor;
	QDocumentCursor cursor;
	bool alreadyCount;
	int lastSentenceLength, lastMinSentenceLength, lastParsedMinWordLength;
	QString lastEndCharacters;
	void needCount();
	void insertDisplayData(const QMap<QString, int> &map);

public:
	TextAnalysisDialog(QWidget *parent = 0, QString name = "");
	~TextAnalysisDialog();
	Ui::TextAnalysisDialog ui;

	//void setData(const QDocument* doc, const QDocumentCursor &cur);
	void setEditor(QEditor *aeditor);
	void interpretStructureTree(StructureEntry *item);

private:
	void interpretStructureTreeRec(StructureEntry *item, int targetLevel);

private slots:
	void slotCount();
	void slotClose();
	void slotSelectionButton();
	void slotExportButton();
	void editorDestroyed();

public slots:
	void init();
};

#endif // USERMENUDIALOG_H