SVN_SILENT made messages (.desktop file)
[kdeaccessibility.git] / kmouth / phraseedit.h
blob827c393c87c841c92140aecf86e4e4e634d05796
1 /***************************************************************************
2 phraseedit.h - description
3 -------------------
4 begin : Don Sep 26 2002
5 copyright : (C) 2002 by Gunnar Schmi Dt
6 email : kmouth@schmi-dt.de
7 ***************************************************************************/
9 /***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
18 #ifndef PHRASEEDIT_H
19 #define PHRASEEDIT_H
21 #include <klineedit.h>
23 #include <QtGui/QKeyEvent>
25 /**
26 * This class extends a KLineEdit by consuming fewer unused key presses.
27 *@author Gunnar Schmi Dt
30 class PhraseEdit : public KLineEdit {
31 public:
32 PhraseEdit(const QString &string, QWidget *parent);
33 virtual ~PhraseEdit();
35 void keyPressEvent (QKeyEvent *e);
38 #endif