1 #ifndef _NOTIFIERMESSAGE_H_
2 #define _NOTIFIERMESSAGE_H_
29 #include <QHBoxLayout>
NotifierMessage(QPixmap *pPixmap, const QString &szText)
Constructs the NotifierMessage object.
Definition: NotifierMessage.cpp:35
QPixmap * m_pPixmap
The message icon (can be null)
Definition: NotifierMessage.h:64
QHBoxLayout * m_pHBox
Layout for the labels.
Definition: NotifierMessage.h:66
~NotifierMessage()
Destroys the NotifierMessage object.
Definition: NotifierMessage.cpp:54
QPixmap * pixmap() const
Returns the message icon.
Definition: NotifierMessage.h:82
QString text() const
Returns the original irc message.
Definition: NotifierMessage.h:77
QLabel * m_pLabel0
Label for the message icon.
Definition: NotifierMessage.h:68
void updateGui()
Updates the aspect of this message.
Definition: NotifierMessage.cpp:64
QString m_szText
The message text.
Definition: NotifierMessage.h:62
QLabel * m_pLabel1
Label for the message text.
Definition: NotifierMessage.h:70
Definition: NotifierWindow.h:57
A single message in a notifier window.
Definition: NotifierMessage.h:43