File: structureview_t.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 (26 lines) | stat: -rw-r--r-- 559 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
#ifndef STRUCTUREVIEW_T_H
#define STRUCTUREVIEW_T_H
#ifndef QT_NO_DEBUG
#include "mostQtHeaders.h"
#include "latexdocument.h"

class scriptengine;
class QEditor;
class StructureViewTest: public QObject{
	Q_OBJECT
	public:
		StructureViewTest(QEditor* editor,LatexDocument *doc, bool all);
		QStringList unrollStructure(StructureEntry *baseStructure);
	private:
		QEditor *ed;
		LatexDocument *document;
		bool all;
	private slots:
		void script_data();
		void script();
		void benchmark_data();
		void benchmark();
};

#endif
#endif