File: textanalysis.h

package info (click to toggle)
texstudio 2.3%2Bdebian-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 20,992 kB
  • sloc: cpp: 61,734; ansic: 4,300; xml: 726; sh: 125; makefile: 25
file content (75 lines) | stat: -rw-r--r-- 1,888 bytes parent folder | download
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
#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

	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 slots:
	void slotCount();
	void slotClose();
	void slotSelectionButton();
	void editorDestroyed();
public slots:
	void init();
};

#endif // USERMENUDIALOG_H