summaryrefslogtreecommitdiffstats
path: root/konversation/src/linkaddressbook/nictdelisttooltip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/linkaddressbook/nictdelisttooltip.cpp')
-rw-r--r--konversation/src/linkaddressbook/nictdelisttooltip.cpp68
1 files changed, 68 insertions, 0 deletions
diff --git a/konversation/src/linkaddressbook/nictdelisttooltip.cpp b/konversation/src/linkaddressbook/nictdelisttooltip.cpp
new file mode 100644
index 0000000..732b32e
--- /dev/null
+++ b/konversation/src/linkaddressbook/nictdelisttooltip.cpp
@@ -0,0 +1,68 @@
+/*
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+*/
+
+/*
+ The class that controls what the tooltip looks like when you hover over a person in the nicklistview. This is used to show contact information about the person from the addressbook.
+ begin: Sun 25 July 2004
+ copyright: (C) 2004 by John Tapsell
+ email: john@geola.co.uk
+*/
+
+#include "nicklisttooltip.h"
+#include "../nick.h"
+#include "../nicklistview.h"
+#include "../nickinfo.h"
+#include "../common.h"
+
+#include <klocale.h>
+#include <tqtooltip.h>
+#include <tqlistview.h>
+
+
+class NickListView;
+
+namespace Konversation
+{
+ KonversationNickListViewToolTip::KonversationNickListViewToolTip(TQWidget *parent, NickListView *lv) : TQToolTip(parent)
+ {
+ m_listView = lv;
+ }
+
+ KonversationNickListViewToolTip::~KonversationNickListViewToolTip()
+ {
+ }
+
+ void KonversationNickListViewToolTip::maybeTip( const TQPoint &pos )
+ {
+ if( !parentWidget() || !m_listView )
+ return;
+
+ TQListViewItem *item = m_listView->itemAt( pos );
+
+ if( !item )
+ return;
+
+ Nick *nick = dynamic_cast<Nick*>( item );
+
+ if(! nick )
+ return;
+
+ TQString toolTip;
+ TQRect itemRect = m_listView->itemRect( item );
+
+ uint leftMargin = m_listView->treeStepSize() *
+ ( item->depth() + ( m_listView->rootIsDecorated() ? 1 : 0 ) ) +
+ m_listView->itemMargin();
+ uint xAdjust = itemRect.left() + leftMargin;
+ uint yAdjust = itemRect.top();
+ TQPoint relativePos( pos.x() - xAdjust, pos.y() - yAdjust );
+ toolTip = Konversation::removeIrcMarkup(nick->getChannelNick()->tooltip());
+ if(!toolTip.isEmpty())
+ tip(itemRect, toolTip);
+ }
+
+} // namespace Konversation