nick-autocompletition, scrollable chat-history

This commit is contained in:
doitux
2007-10-09 07:50:56 +00:00
parent 9ba000d7f9
commit 8e8ee03325
8 changed files with 143 additions and 27 deletions
@@ -0,0 +1,32 @@
//
// C++ Implementation: mycardspixmaplabel
//
// Description:
//
//
// Author: FThauer FHammer <f.thauer@web.de>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include "mychatinputlineedit.h"
using namespace std;
MyChatInputLineEdit::MyChatInputLineEdit(QGroupBox* parent)
: QLineEdit(parent)
{
}
MyChatInputLineEdit::~MyChatInputLineEdit()
{
}
void MyChatInputLineEdit::keyPressEvent( QKeyEvent * event ) {
if (event->key() == Qt::Key_Tab && this->hasSelectedText()) { }
QLineEdit::event(event);
}