vlp-28 Moving editor to use QtDesigner files.
[vlp.git] / src / edit / my_edit.h
1 #ifndef VLP_EDITOR_AREA_H
2 #define VLP_EDITOR_AREA_H
3
4 #include <QtGui/QTextEdit>
5
6 class My_Edit : public QTextEdit {
7         Q_OBJECT
8 public:
9         My_Edit(QWidget *parent = 0, const char *name = 0);
10 signals:
11         void cursorMove();
12 protected:
13         virtual void keyPressEvent(QKeyEvent*);
14 };
15
16 #endif /* VLP_EDITOR_AREA */