summaryrefslogtreecommitdiff
path: root/indra/newview/llfloateroutbox.cpp
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2014-03-20 16:39:30 -0700
committerMerov Linden <merov@lindenlab.com>2014-03-20 16:39:30 -0700
commitd11a15b6dd0a6bb74b4f8f3f6ce23a05123c7e99 (patch)
tree05cf4c7c648f3952ade7d8b50472e82dc3bb3fe7 /indra/newview/llfloateroutbox.cpp
parent74c4f3d0e6ab0d5c7dc6b7480ef63b2898e7a6f2 (diff)
DD-16 : WIP : Update sort / show menu, not actionable yet though
Diffstat (limited to 'indra/newview/llfloateroutbox.cpp')
-rwxr-xr-xindra/newview/llfloateroutbox.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/indra/newview/llfloateroutbox.cpp b/indra/newview/llfloateroutbox.cpp
index d6da0ad971..0b02cb8f64 100755
--- a/indra/newview/llfloateroutbox.cpp
+++ b/indra/newview/llfloateroutbox.cpp
@@ -667,6 +667,8 @@ LLFloaterMarketplaceListings::LLFloaterMarketplaceListings(const LLSD& key)
, mInventoryText(NULL)
, mInventoryTitle(NULL)
{
+ mCommitCallbackRegistrar.add("Marketplace.ViewSort.Action", boost::bind(&LLFloaterMarketplaceListings::onViewSortMenuItemClicked, this, _2));
+ mEnableCallbackRegistrar.add("Marketplace.ViewSort.CheckItem", boost::bind(&LLFloaterMarketplaceListings::onViewSortMenuItemCheck, this, _2));
}
LLFloaterMarketplaceListings::~LLFloaterMarketplaceListings()
@@ -772,6 +774,40 @@ void LLFloaterMarketplaceListings::onFocusReceived()
fetchContents();
}
+
+void LLFloaterMarketplaceListings::onViewSortMenuItemClicked(const LLSD& userdata)
+{
+ /*
+ std::string chosen_item = userdata.asString();
+
+ if (chosen_item == "sort_by_stock_amount")
+ {
+ setSortOrder(mNearbyList, E_SORT_BY_RECENT_SPEAKERS);
+ }
+ else if (chosen_item == "show_low_stock")
+ {
+ mNearbyList->toggleIcons();
+ }
+ */
+}
+
+bool LLFloaterMarketplaceListings::onViewSortMenuItemCheck(const LLSD& userdata)
+{
+ /*
+ std::string item = userdata.asString();
+ U32 sort_order = gSavedSettings.getU32("NearbyPeopleSortOrder");
+
+ if (item == "sort_by_recent_speakers")
+ return sort_order == E_SORT_BY_RECENT_SPEAKERS;
+ if (item == "sort_name")
+ return sort_order == E_SORT_BY_NAME;
+ if (item == "sort_distance")
+ return sort_order == E_SORT_BY_DISTANCE;
+ */
+ return false;
+}
+
+
void LLFloaterMarketplaceListings::fetchContents()
{
if (mRootFolderId.notNull())