Skip to content
Snippets Groups Projects
Commit a6475e37 authored by Jonathan Yap's avatar Jonathan Yap
Browse files

STORM-1459 "Wearing Tab" - Add ability to copy displayed inventory names to clipboard

Made changes with input from Oz & Vadim
parent 68c8248f
No related branches found
No related tags found
No related merge requests found
...@@ -103,6 +103,7 @@ Ales Beaumont ...@@ -103,6 +103,7 @@ Ales Beaumont
Alexandrea Fride Alexandrea Fride
STORM-255 STORM-255
STORM-960 STORM-960
STORM-1459
Alissa Sabre Alissa Sabre
VWR-81 VWR-81
VWR-83 VWR-83
......
...@@ -60,6 +60,7 @@ class LLWearingGearMenu ...@@ -60,6 +60,7 @@ class LLWearingGearMenu
registrar.add("Gear.Edit", boost::bind(&edit_outfit)); registrar.add("Gear.Edit", boost::bind(&edit_outfit));
registrar.add("Gear.TakeOff", boost::bind(&LLWearingGearMenu::onTakeOff, this)); registrar.add("Gear.TakeOff", boost::bind(&LLWearingGearMenu::onTakeOff, this));
registrar.add("Gear.Copy", boost::bind(&LLPanelWearing::copyToClipboard, mPanelWearing));
enable_registrar.add("Gear.OnEnable", boost::bind(&LLPanelWearing::isActionEnabled, mPanelWearing, _2)); enable_registrar.add("Gear.OnEnable", boost::bind(&LLPanelWearing::isActionEnabled, mPanelWearing, _2));
...@@ -184,7 +185,6 @@ BOOL LLPanelWearing::postBuild() ...@@ -184,7 +185,6 @@ BOOL LLPanelWearing::postBuild()
{ {
mCOFItemsList = getChild<LLWearableItemsList>("cof_items_list"); mCOFItemsList = getChild<LLWearableItemsList>("cof_items_list");
mCOFItemsList->setRightMouseDownCallback(boost::bind(&LLPanelWearing::onWearableItemsListRightClick, this, _1, _2, _3)); mCOFItemsList->setRightMouseDownCallback(boost::bind(&LLPanelWearing::onWearableItemsListRightClick, this, _1, _2, _3));
childSetAction("copy_to_clipboard", boost::bind(&LLPanelWearing::copyToClipboard, this));
LLMenuButton* menu_gear_btn = getChild<LLMenuButton>("options_gear_btn"); LLMenuButton* menu_gear_btn = getChild<LLMenuButton>("options_gear_btn");
...@@ -286,24 +286,22 @@ void LLPanelWearing::getSelectedItemsUUIDs(uuid_vec_t& selected_uuids) const ...@@ -286,24 +286,22 @@ void LLPanelWearing::getSelectedItemsUUIDs(uuid_vec_t& selected_uuids) const
void LLPanelWearing::copyToClipboard() void LLPanelWearing::copyToClipboard()
{ {
std::string text; std::string text;
bool need_cr = false;
std::vector<LLSD> data; std::vector<LLSD> data;
mCOFItemsList->getValues(data); mCOFItemsList->getValues(data);
for(std::vector<LLSD>::iterator iter = data.begin(); iter != data.end(); iter++)
for(std::vector<LLSD>::const_iterator iter = data.begin(); iter != data.end();)
{ {
LLSD uuid = (*iter); LLSD uuid = (*iter);
LLViewerInventoryItem* item = gInventory.getItem(uuid); LLViewerInventoryItem* item = gInventory.getItem(uuid);
if (!need_cr)
{ iter++;
text += item->getName(); if (item != NULL)
need_cr = true;
}
else
{ {
text += "\n" + item->getName(); // Append a CR to all but the last line
text += iter != data.end() ? item->getName() + "\n" : item->getName();
} }
} }
gClipboard.copyFromString(utf8str_to_wstring(text)); gClipboard.copyFromString(utf8str_to_wstring(text));
} }
// EOF // EOF
...@@ -60,13 +60,14 @@ class LLPanelWearing : public LLPanelAppearanceTab ...@@ -60,13 +60,14 @@ class LLPanelWearing : public LLPanelAppearanceTab
/*virtual*/ void getSelectedItemsUUIDs(uuid_vec_t& selected_uuids) const; /*virtual*/ void getSelectedItemsUUIDs(uuid_vec_t& selected_uuids) const;
/*virtual*/ void copyToClipboard();
boost::signals2::connection setSelectionChangeCallback(commit_callback_t cb); boost::signals2::connection setSelectionChangeCallback(commit_callback_t cb);
bool hasItemSelected(); bool hasItemSelected();
private: private:
void onWearableItemsListRightClick(LLUICtrl* ctrl, S32 x, S32 y); void onWearableItemsListRightClick(LLUICtrl* ctrl, S32 x, S32 y);
void copyToClipboard();
LLInventoryCategoriesObserver* mCategoriesObserver; LLInventoryCategoriesObserver* mCategoriesObserver;
LLWearableItemsList* mCOFItemsList; LLWearableItemsList* mCOFItemsList;
......
...@@ -20,4 +20,11 @@ ...@@ -20,4 +20,11 @@
function="Gear.OnEnable" function="Gear.OnEnable"
parameter="take_off" /> parameter="take_off" />
</menu_item_call> </menu_item_call>
<menu_item_call
label="Copy outfit list to clipboard"
layout="topleft"
name="copy">
<on_click
function="Gear.Copy" />
</menu_item_call>
</toggleable_menu> </toggleable_menu>
...@@ -42,15 +42,6 @@ ...@@ -42,15 +42,6 @@
tool_tip="Show additional options" tool_tip="Show additional options"
top="1" top="1"
width="31" /> width="31" />
<button
follows="bottom|left|right"
height="25"
layout="topleft"
left_pad="1"
name="copy_to_clipboard"
label="Send to clipboard"
tool_tip="Send current outfit names to clipboard"
width="150" />
<icon <icon
follows="bottom|left|right" follows="bottom|left|right"
height="25" height="25"
...@@ -58,6 +49,6 @@ ...@@ -58,6 +49,6 @@
layout="topleft" layout="topleft"
left_pad="1" left_pad="1"
name="dummy_icon" name="dummy_icon"
width="123" /> width="274" />
</panel> </panel>
</panel> </panel>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment