lib/widgets/doclineedit.cpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
#include "doclineedit.h"
00020
00021 void DocLineEdit::keyReleaseEvent(
QKeyEvent * e )
00022 {
00023
if (e->key() == Qt::Key_Up)
00024 {
00025 emit
upPressed();
00026 }
00027
else if (e->key() == Qt::Key_Down)
00028 {
00029 emit
downPressed();
00030 }
00031
else if (e->key() == Qt::Key_PageUp)
00032 {
00033 emit
pgupPressed();
00034 }
00035
else if (e->key() == Qt::Key_PageDown)
00036 {
00037 emit
pgdownPressed();
00038 }
00039
else if (e->key() == Qt::Key_Home)
00040 {
00041 emit
homePressed();
00042 }
00043
else if (e->key() == Qt::Key_End)
00044 {
00045 emit
endPressed();
00046 }
00047
else
00048 KLineEdit::keyReleaseEvent(e);
00049 }
00050
00051
#include "doclineedit.moc"
This file is part of the documentation for KDevelop Version 3.0.4.