repo.or.cz
/
makneto-zunavac1.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move current 'KDE' gui to separate directory ui-kde
[makneto-zunavac1.git]
/
src
/
ui-kde
/
chatinput.h
blob
599ea838244854c9366c7aa64923107ea05207b6
1
/*
2
* chatinput.h
3
*
4
* Copyright (C) 2009 Jaroslav Reznik <jreznik@redhat.com>
5
*/
6
7
#ifndef CHATINPUT_H
8
#define CHATINPUT_H
9
10
#include <QtGui/QTextEdit>
11
12
class
ChatInput
:
public
QTextEdit
13
{
14
Q_OBJECT
15
16
public
:
17
ChatInput
(
QWidget
*
parent
=
0
);
18
~
ChatInput
() {};
19
20
protected
:
21
void
keyPressEvent
(
QKeyEvent
*
event
);
22
23
signals
:
24
void
send
();
25
};
26
27
#endif
// CHATINPUT_H