File: latexeditorview_bm.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 (25 lines) | stat: -rw-r--r-- 537 bytes parent folder | download | duplicates (2)
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
#ifndef LATEXEDITORVIEW_BM_H
#define LATEXEDITORVIEW_BM_H
#ifndef QT_NO_DEBUG
#include "mostQtHeaders.h"
#include <QtTest/QtTest>

class LatexEditorView;
class LatexEditorViewBenchmark: public QObject{
	Q_OBJECT
	public:
		LatexEditorViewBenchmark(LatexEditorView* view, bool all);
	private:
		LatexEditorView *edView;
		bool all;
	private slots:
		void documentChange_data();
		void documentChange();
		void linePaint_data();
		void linePaint();
		void paintEvent_data();
		void paintEvent();
};

#endif
#endif