summaryrefslogtreecommitdiff
path: root/src/gui/chatwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/chatwindow.h')
-rw-r--r--src/gui/chatwindow.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/chatwindow.h b/src/gui/chatwindow.h
index d22aea64c..d68fa7671 100644
--- a/src/gui/chatwindow.h
+++ b/src/gui/chatwindow.h
@@ -248,6 +248,13 @@ class ChatWindow : public Window,
void adjustTabSize();
+ void addToAwayLog(std::string line);
+
+ void displayAwayLog();
+
+ void clearAwayLog()
+ { mAwayLog.clear(); }
+
protected:
friend class ChatTab;
friend class WhisperTab;
@@ -316,6 +323,7 @@ class ChatWindow : public Window,
ColorListModel *mColorListModel;
int mChatColor;
unsigned int mChatHistoryIndex;
+ std::list<std::string> mAwayLog;
};
extern ChatWindow *chatWindow;