From: Manuel Nickschas Date: Tue, 29 Jul 2008 23:04:42 +0000 (+0200) Subject: Method stub for implementing multiline selections next X-Git-Tag: 0.3.0~147 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=65118437813c853cbcc52f0c1a061457e264ed1a;hp=ae374ec02b44f508d207d2e69d800f26b34e0d9d Method stub for implementing multiline selections next --- diff --git a/src/qtui/chatscene.cpp b/src/qtui/chatscene.cpp index e4a0bd7d..f6a5e33a 100644 --- a/src/qtui/chatscene.cpp +++ b/src/qtui/chatscene.cpp @@ -160,3 +160,9 @@ void ChatScene::setSelectingItem(ChatItem *item) { if(_selectingItem) _selectingItem->clearSelection(); _selectingItem = item; } + +void ChatScene::startGlobalSelection(ChatItem *item) { + + +} + diff --git a/src/qtui/chatscene.h b/src/qtui/chatscene.h index 8fd5bf4d..7bfd6eb0 100644 --- a/src/qtui/chatscene.h +++ b/src/qtui/chatscene.h @@ -48,6 +48,7 @@ class ChatScene : public QGraphicsScene { // these are used by the chatitems to notify the scene void setSelectingItem(ChatItem *item); ChatItem *selectingItem() const { return _selectingItem; } + void startGlobalSelection(ChatItem *item); signals: void heightChanged(qreal height);