diff options
author | Callum Prentice <callum@lindenlab.com> | 2023-08-01 16:56:06 -0700 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2023-08-01 16:56:06 -0700 |
commit | 4ce14631678195d7256e11a02f646396e3bc2dd8 (patch) | |
tree | 91a0b0961c2b0f290581b446464fa16ed7046322 /indra/newview/llfloaterbulkythumbs.h | |
parent | 57b9500c23b7dc3b1bf1a7154885e7424d7f10bd (diff) |
SL-20109: write the name of each copied inventory item to the text editor
Diffstat (limited to 'indra/newview/llfloaterbulkythumbs.h')
-rw-r--r-- | indra/newview/llfloaterbulkythumbs.h | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/indra/newview/llfloaterbulkythumbs.h b/indra/newview/llfloaterbulkythumbs.h index 9c951211d7..6d43ff9bc6 100644 --- a/indra/newview/llfloaterbulkythumbs.h +++ b/indra/newview/llfloaterbulkythumbs.h @@ -1,4 +1,4 @@ -/** +/** * @file llfloaterbulkythumbs.h * @author Callum Prentice * @brief Helper floater for bulk processing of inventory thumbnails @@ -6,21 +6,21 @@ * $LicenseInfo:firstyear=2008&license=viewerlgpl$ * Second Life Viewer Source Code * Copyright (C) 2010, Linden Research, Inc. - * + * * 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 - * + * * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA * $/LicenseInfo$ */ @@ -29,21 +29,25 @@ #define LL_LLFLOATERBULKYTHUMBS_H #include "llfloater.h" +class LLTextEditor; class LLFloaterBulkyThumbs: - public LLFloater + public LLFloater { - friend class LLFloaterReg; -private: - LLFloaterBulkyThumbs(const LLSD &key); - BOOL postBuild() override; - ~LLFloaterBulkyThumbs(); + friend class LLFloaterReg; + private: + LLFloaterBulkyThumbs(const LLSD& key); + BOOL postBuild() override; + ~LLFloaterBulkyThumbs(); + + LLUICtrl* mPasteFromInventoryBtn; + void onPasteFromInventory(); - LLUICtrl *mPasteFromInventoryBtn; - void onPasteFromInventory(); + LLTextEditor* mInventoryItems; + void onCommitInventoryItems(); - LLUICtrl *mProcessBulkyThumbsBtn; - void onProcessBulkyThumbs(); + LLUICtrl* mProcessBulkyThumbsBtn; + void onProcessBulkyThumbs(); }; #endif // LL_LLFLOATERBULKYTHUMBS_H |