summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2014-04-23 18:00:34 -0700
committerMerov Linden <merov@lindenlab.com>2014-04-23 18:00:34 -0700
commit59f512b375b9be5198c322e2002dea9e5d767e07 (patch)
tree01ca4df2690fbb9dee9d4f268410a1b4000ffb7e /indra/newview
parentd22944da00a5ade5eb97aa109bac624967ead94c (diff)
DD-19 : Cleaned up Marketplace Audit UI, make the floater non modal
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llfloatermarketplacelistings.cpp6
-rwxr-xr-xindra/newview/llfloatermarketplacelistings.h7
-rwxr-xr-xindra/newview/skins/default/xui/en/floater_marketplace_validation.xml67
3 files changed, 44 insertions, 36 deletions
diff --git a/indra/newview/llfloatermarketplacelistings.cpp b/indra/newview/llfloatermarketplacelistings.cpp
index fcf2b74dd6..121f54095b 100755
--- a/indra/newview/llfloatermarketplacelistings.cpp
+++ b/indra/newview/llfloatermarketplacelistings.cpp
@@ -581,8 +581,8 @@ void LLFloaterAssociateListing::cancel()
// LLFloaterMarketplaceValidation
//-----------------------------------------------------------------------------
-LLFloaterMarketplaceValidation::LLFloaterMarketplaceValidation(const LLSD& data)
-: LLModalDialog( data["message"].asString() ),
+LLFloaterMarketplaceValidation::LLFloaterMarketplaceValidation(const LLSD& key)
+: LLFloater(key),
mEditor(NULL)
{
}
@@ -614,7 +614,7 @@ LLFloaterMarketplaceValidation::~LLFloaterMarketplaceValidation()
void LLFloaterMarketplaceValidation::draw()
{
// draw children
- LLModalDialog::draw();
+ LLFloater::draw();
}
// static
diff --git a/indra/newview/llfloatermarketplacelistings.h b/indra/newview/llfloatermarketplacelistings.h
index 43665e643e..91ae33d1f2 100755
--- a/indra/newview/llfloatermarketplacelistings.h
+++ b/indra/newview/llfloatermarketplacelistings.h
@@ -154,14 +154,13 @@ private:
// get the validation triggered on the server and display the html report.
// *TODO : morph into an html/text window using the pattern in llfloatertos
-class LLFloaterMarketplaceValidation : public LLModalDialog
+class LLFloaterMarketplaceValidation : public LLFloater
{
public:
- LLFloaterMarketplaceValidation(const LLSD& data);
+ LLFloaterMarketplaceValidation(const LLSD& key);
virtual ~LLFloaterMarketplaceValidation();
- BOOL postBuild();
-
+ virtual BOOL postBuild();
virtual void draw();
void appendMessage(std::string& message);
diff --git a/indra/newview/skins/default/xui/en/floater_marketplace_validation.xml b/indra/newview/skins/default/xui/en/floater_marketplace_validation.xml
index 01d467a307..165540cfa1 100755
--- a/indra/newview/skins/default/xui/en/floater_marketplace_validation.xml
+++ b/indra/newview/skins/default/xui/en/floater_marketplace_validation.xml
@@ -1,49 +1,58 @@
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<floater
- legacy_header_height="18"
- can_close="false"
- can_minimize="false"
- height="500"
- layout="topleft"
- title="MARKETPLACE VALIDATION LOG"
- positioning="centered"
- width="600">
+ title="MARKETPLACE VALIDATION LOG"
+ name="floater_marketplace_validation"
+ help_topic="floater_marketplace_validation"
+ layout="topleft"
+ positioning="cascading"
+ legacy_header_height="18"
+ width="600"
+ height="500"
+ min_width="400"
+ min_height="200"
+ can_close="true"
+ can_resize="true"
+ can_minimize="true"
+ save_rect="true"
+ reuse_instance="true"
+ save_visibility="false">
<button
- height="20"
- label="OK"
- label_selected="OK"
- layout="topleft"
- left="484"
- name="OK"
- top="465"
- width="100" />
+ name="OK"
+ label="OK"
+ label_selected="OK"
+ layout="topleft"
+ follows="right|bottom"
+ top="465"
+ width="100"
+ height="20"
+ left="484"/>
<text
+ name="tos_heading"
type="string"
+ font="SansSerif"
length="1"
+ layout="topleft"
follows="left|top"
- font="SansSerif"
+ width="552"
height="20"
- layout="topleft"
left="20"
- name="tos_heading"
- top="20"
- width="552">
+ top="20">
The Marketplace Validation reported the following:
</text>
<text_editor
+ name="validation_text"
type="string"
- length="1"
- bg_readonly_color="1 1 1 1"
- bottom="455"
- follows="left|top"
font="SansSerif"
+ length="1"
+ max_length="65536"
layout="topleft"
+ follows="all"
+ bg_readonly_color="TextBgReadOnlyColor"
+ text_readonly_color="TextFgReadOnlyColor"
+ top="45"
+ bottom="455"
left="20"
- max_length="65536"
- name="validation_text"
right="-20"
- text_readonly_color="0 0 0 1"
- top="45"
word_wrap="true">
MARKETPLACE_VALIDATION_TEXT
</text_editor>