/* 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. */ /* This is the class that shows the channel nick list begin: Fre Jun 7 2002 copyright: (C) 2002 by Dario Abatianni email: eisfuchs@tigress.com */ #include "nicklistview.h" #include "konversationapplication.h" #include "images.h" #include "linkaddressbook/addressbook.h" #include #include #include #include #include #include #include #include NickListView::NickListView(TQWidget* parent, Channel *chan) : TDEListView(parent) { TDEListView::setSorting(-1); setWhatsThis(); channel=chan; popup=new TDEPopupMenu(this,"nicklist_context_menu"); modes=new TDEPopupMenu(this,"nicklist_modes_context_submenu"); kickban=new TDEPopupMenu(this,"nicklist_kick_ban_context_submenu"); addressbook= new TDEPopupMenu(this,"nicklist_addressbook_context_submenu"); setAcceptDrops(true); setDropHighlighter(true); setDropVisualizer(false); if (popup) { popup->insertItem(i18n("&Whois"),Konversation::Whois); popup->insertItem(i18n("&Version"),Konversation::Version); popup->insertItem(i18n("&Ping"),Konversation::Ping); popup->insertSeparator(); if (modes) { modes->insertItem(i18n("Give Op"),Konversation::GiveOp); modes->insertItem(i18n("Take Op"),Konversation::TakeOp); modes->insertItem(i18n("Give HalfOp"),Konversation::GiveHalfOp); modes->insertItem(i18n("Take HalfOp"),Konversation::TakeHalfOp); modes->insertItem(i18n("Give Voice"),Konversation::GiveVoice); modes->insertItem(i18n("Take Voice"),Konversation::TakeVoice); popup->insertItem(i18n("Modes"),modes,Konversation::ModesSub); } if (kickban) { kickban->insertItem(i18n("Kick"),Konversation::Kick); kickban->insertItem(i18n("Kickban"),Konversation::KickBan); kickban->insertItem(i18n("Ban Nickname"),Konversation::BanNick); kickban->insertSeparator(); kickban->insertItem(i18n("Ban *!*@*.host"),Konversation::BanHost); kickban->insertItem(i18n("Ban *!*@domain"),Konversation::BanDomain); kickban->insertItem(i18n("Ban *!user@*.host"),Konversation::BanUserHost); kickban->insertItem(i18n("Ban *!user@domain"),Konversation::BanUserDomain); kickban->insertSeparator(); kickban->insertItem(i18n("Kickban *!*@*.host"),Konversation::KickBanHost); kickban->insertItem(i18n("Kickban *!*@domain"),Konversation::KickBanDomain); kickban->insertItem(i18n("Kickban *!user@*.host"),Konversation::KickBanUserHost); kickban->insertItem(i18n("Kickban *!user@domain"),Konversation::KickBanUserDomain); popup->insertItem(i18n("Kick / Ban"),kickban,Konversation::KickBanSub); } popup->insertItem(i18n("Ignore"), Konversation::IgnoreNick); popup->insertItem(i18n("Unignore"), Konversation::UnignoreNick); popup->insertSeparator(); int newitem; newitem = popup->insertItem(i18n("Open &Query"),Konversation::OpenQuery); popup->setWhatsThis(newitem, "Start a private chat between you and this person.

Technical note:
The conversation between you and this person will be sent via the server. This means that the conversation will be affected by server lag, server stability, and will be terminated when you disconnect from the server."); newitem = popup->insertItem(i18n("Open DCC &Chat"),Konversation::StartDccChat); popup->setWhatsThis(newitem, "Start a private Direct Client Connection chat between you and this person.

Technical note:
The conversation between you and this person will be sent directly. This means it is independent from the server - so if the server connection fails, or use disconnect, your DCC Chat will be unaffected. It also means that no irc server admin can view or spy on this chat."); if (kapp->authorize("allow_downloading")) { newitem = popup->insertItem(SmallIcon("2rightarrow"),i18n("Send &File..."),Konversation::DccSend); popup->setWhatsThis(newitem, "Send a file to this person. If you are having problem sending files, or they are sending slowly, see the Konversation Handbook and DCC preferences page."); } popup->insertItem(SmallIconSet("mail_generic"),i18n("&Send Email..."), Konversation::SendEmail); popup->insertSeparator(); if (addressbook) popup->insertItem(i18n("Addressbook Associations"), addressbook, Konversation::AddressbookSub); popup->insertItem(i18n("Add to Watched Nicks"), Konversation::AddNotify); connect (popup, TQT_SIGNAL(activated(int)), this, TQT_SIGNAL(popupCommand(int))); connect (modes, TQT_SIGNAL(activated(int)), this, TQT_SIGNAL(popupCommand(int))); connect (kickban, TQT_SIGNAL(activated(int)), this, TQT_SIGNAL(popupCommand(int))); connect (addressbook, TQT_SIGNAL(activated(int)), this, TQT_SIGNAL(popupCommand(int))); } else { kdWarning() << "NickListView::NickListView(): Could not create popup!" << endl; } #if KDE_IS_VERSION(3,3,90) setShadeSortColumn(false); #endif // We have our own tooltips, don't use the default TQListView ones setShowToolTips(false); m_tooltip = new Konversation::KonversationNickListViewToolTip(viewport(), this); m_resortTimer = new TQTimer(this); connect(m_resortTimer, TQT_SIGNAL(timeout()), TQT_SLOT(resort())); } NickListView::~NickListView() { delete m_tooltip; m_tooltip = 0; } void NickListView::setWhatsThis() { Images* images = KonversationApplication::instance()->images(); if(images->getNickIcon( Images::Normal, false).isNull()) { TQWhatsThis::add(this, i18n("This shows all the people in the channel. The nick for each person is shown.
Usually an icon is shown showing the status of each person, but you do not seem to have any icon theme installed. See the Konversation settings - Configure Konversation under the Settings menu. Then view the page for Themes under Appearence.
")); } else { TQMimeSourceFactory::defaultFactory()->setImage( "admin", images->getNickIcon( Images::Admin, false ).convertToImage() ); TQMimeSourceFactory::defaultFactory()->setImage( "owner", images->getNickIcon( Images::Owner, false ).convertToImage()); TQMimeSourceFactory::defaultFactory()->setImage( "op", images->getNickIcon( Images::Op, false ).convertToImage() ); TQMimeSourceFactory::defaultFactory()->setImage( "halfop", images->getNickIcon( Images::HalfOp, false ).convertToImage() ); TQMimeSourceFactory::defaultFactory()->setImage( "voice", images->getNickIcon( Images::Voice, false ).convertToImage() ); TQMimeSourceFactory::defaultFactory()->setImage( "normal", images->getNickIcon( Images::Normal, false ).convertToImage() ); TQMimeSourceFactory::defaultFactory()->setImage( "normalaway", images->getNickIcon( Images::Normal, true).convertToImage() ); TQWhatsThis::add(this, i18n("This shows all the people in the channel. The nick for each person is shown, with a picture showing their status.

" "" "" "" "" "" "" "" "" "
This person has administrator privileges.
This person is a channel owner.
This person is a channel operator.
This person is a channel half-operator.
This person has voice, and can therefore talk in a moderated channel.
This person does not have any special privileges.
This indicates that this person is currently away.

" "The meaning of admin, owner and halfop varies between different IRC servers.

" "Hovering over any nick shows their current status, as well as any information in the addressbook for this person. See the Konversation Handbook for more information." "" )); } } void NickListView::refresh() { TQListViewItemIterator it(this); while (it.current()) { static_cast(it.current())->refresh(); ++it; } setWhatsThis(); } void NickListView::startResortTimer() { if(!m_resortTimer->isActive()) m_resortTimer->start(3000, true /*single shot*/); } void NickListView::resort() { TDEListView::setSorting(m_column, m_ascending); sort(); TDEListView::setSorting(-1); } void NickListView::contextMenuEvent(TQContextMenuEvent* ce) { ce->accept(); if (selectedItems().count()) { insertAssociationSubMenu(); updateActions(); popup->popup(ce->globalPos()); } } void NickListView::updateActions() { int ignoreCounter = 0; int unignoreCounter = 0; int notifyCounter = 0; int serverGroupId = -1; if (channel->getServer()->getServerGroup()) serverGroupId = channel->getServer()->getServerGroup()->id(); ChannelNickList nickList=channel->getSelectedChannelNicks(); ChannelNickList::ConstIterator it; for (it = nickList.begin(); it != nickList.end(); ++it) { if (Preferences::isIgnored((*it)->getNickname())) ++unignoreCounter; else ++ignoreCounter; if (serverGroupId != -1 && Preferences::isNotify(serverGroupId, (*it)->getNickname())) ++notifyCounter; } if (ignoreCounter) popup->setItemVisible(Konversation::IgnoreNick, true); else popup->setItemVisible(Konversation::IgnoreNick, false); if (unignoreCounter) popup->setItemVisible(Konversation::UnignoreNick, true); else popup->setItemVisible(Konversation::UnignoreNick, false); if (notifyCounter || !Preferences::hasNotifyList(serverGroupId)) popup->setItemEnabled(Konversation::AddNotify, false); else popup->setItemEnabled(Konversation::AddNotify, true); } void NickListView::insertAssociationSubMenu() { bool existingAssociation = false; bool noAssociation = false; bool emailAddress = false; addressbook->clear(); ChannelNickList nickList=channel->getSelectedChannelNicks(); for(ChannelNickList::ConstIterator it=nickList.begin();it!=nickList.end();++it) { KABC::Addressee addr = (*it)->getNickInfo()->getAddressee(); if(addr.isEmpty()) { noAssociation=true; if(existingAssociation && emailAddress) break; } else { if(!emailAddress && !addr.preferredEmail().isEmpty()) emailAddress = true; existingAssociation=true; if(noAssociation && emailAddress) break; } } if(!noAssociation && existingAssociation) { addressbook->insertItem(SmallIcon("contents"), i18n("Edit Contact..."), Konversation::AddressbookEdit); addressbook->insertSeparator(); } if(noAssociation && existingAssociation) addressbook->insertItem(i18n("Choose/Change Associations..."), Konversation::AddressbookChange); else if(noAssociation) addressbook->insertItem(i18n("Choose Contact..."), Konversation::AddressbookChange); else addressbook->insertItem(i18n("Change Association..."), Konversation::AddressbookChange); if(noAssociation && !existingAssociation) addressbook->insertItem(i18n("Create New Contact..."), Konversation::AddressbookNew); if(existingAssociation) addressbook->insertItem(SmallIcon("editdelete"), i18n("Delete Association"), Konversation::AddressbookDelete); if(!emailAddress) popup->setItemEnabled(Konversation::SendEmail, false); else popup->setItemEnabled(Konversation::SendEmail, true); } void NickListView::setSorting(int column, bool ascending) { m_column = column; m_ascending = ascending; } bool NickListView::acceptDrag (TQDropEvent* event) const { if (event->provides("text/uri-list")) { if (event->source()) { TQStrList uris; if (TQUriDrag::decode(event,uris)) { TQString first = uris.first(); if (first.startsWith("irc://") || channel->getNickList().containsNick(first)) return false; } else return false; } return true; } else return false; } #include "nicklistview.moc"