summaryrefslogtreecommitdiffstats
path: root/src/kile/kileeventfilter.h
blob: 180f07a90b16bce649f58587089f2fd1d7880d4a (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
//
// C++ Interface: kileeventfilter
//
// Description: 
//
//
// Author: Jeroen Wijnhout <Jeroen.Wijnhout@kdemail.net>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KILEEVENTFILTER_H
#define KILEEVENTFILTER_H

#include <tqobject.h>
#include <tqregexp.h>

class TQEvent;

namespace Kate {class View; }
namespace KileDocument { class EditorExtension; };

/**
 * This class is capable of intercepting key-strokes from the editor. It can complete a \begin{env}
 * with a \end{env} when enter is pressed.
 **/
class KileEventFilter : public TQObject
{
	Q_OBJECT
  

public:
	KileEventFilter(KileDocument::EditorExtension *edit);

public slots:
	void readConfig();

protected:
	bool eventFilter(TQObject *o, TQEvent *e);

private:
	bool    m_bCompleteEnvironment;
	KileDocument::EditorExtension *m_edit;

};

#endif