/** * @file fsradarlistctrl.cpp * @brief A radar-specific implementation of scrolllist * * $LicenseInfo:firstyear=2011&license=viewerlgpl$ * Phoenix Firestorm Viewer Source Code * Copyright (c) 2011 Arrehn Oberlander * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License only. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * The Phoenix Firestorm Project, Inc., 1831 Oakwood Drive, Fairmont, Minnesota 56031-3225 USA * http://www.firestormviewer.org * $/LicenseInfo$ */ #include "llviewerprecompiledheaders.h" #include "fsradarlistctrl.h" #include "lllistcontextmenu.h" #include "llscrolllistitem.h" #include "rlvhandler.h" static LLDefaultChildRegistry::Register r("radar_list"); FSRadarListCtrl::Params::Params() { name = "radar_list"; } FSRadarListCtrl::FSRadarListCtrl(const FSRadarListCtrl::Params& p) : LLScrollListCtrl(p), mContextMenu(NULL) { } BOOL FSRadarListCtrl::handleRightMouseDown(S32 x, S32 y, MASK mask) { //LL_INFOS() << "handleRightMouseDown" << LL_ENDL; BOOL handled = LLUICtrl::handleRightMouseDown(x, y, mask); // if ( mContextMenu ) // [RLVa:KB-FS] - Checked: 2011-06-11 (RLVa-1.3.1) | Added: RLVa-1.3.1 if ( (mContextMenu) && (!gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES)) ) // [/RLVa:KB-FS] { S32 uuid_column_index = getColumn("uuid")->mIndex; std::vector selected_items = getAllSelected(); if (selected_items.size() > 1) { //LL_INFOS() << "Right-click select by value: (multi-select)" << LL_ENDL; uuid_vec_t selected_uuids; for (size_t i = 0; i < selected_items.size(); i++) { //LL_INFOS() << "Right-click select by value: " << selected_items.at(i)->getColumn(uuid_column_index)->getValue().asUUID() << LL_ENDL; selected_uuids.push_back(selected_items.at(i)->getColumn(uuid_column_index)->getValue().asUUID()); } mContextMenu->show(this, selected_uuids, x, y); } else { LLScrollListItem* hit_item = hitItem(x, y); if (hit_item) { //LL_INFOS() << "Right-click select by value: " << hit_item->getValue() << LL_ENDL; selectByID(hit_item->getValue()); LLUUID av = hit_item->getValue(); uuid_vec_t selected_uuids; selected_uuids.push_back(av); mContextMenu->show(this, selected_uuids, x, y); } } } return handled; }