diff options
author | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2009-11-10 17:00:29 +0200 |
---|---|---|
committer | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2009-11-10 17:00:29 +0200 |
commit | 107525aa5a82b1cd4b2152e498d93d5db6577a15 (patch) | |
tree | a4d54d5a1f2fbe11abbf380a27cf92ecf53e6e8c /indra/newview | |
parent | d04539f74a2922db40a6f90f16929b29056f666b (diff) |
Update for major task EXT-2251 - Implement panels for creating, editing and viewing Classifieds.
Fixed bugs, cleared code.
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llpanelclassified.cpp | 115 | ||||
-rw-r--r-- | indra/newview/llpanelclassified.h | 72 | ||||
-rw-r--r-- | indra/newview/llpanelpicks.cpp | 4 | ||||
-rw-r--r-- | indra/newview/llpanelpicks.h | 4 | ||||
-rw-r--r-- | indra/newview/skins/default/xui/en/panel_edit_classified.xml | 8 |
5 files changed, 126 insertions, 77 deletions
diff --git a/indra/newview/llpanelclassified.cpp b/indra/newview/llpanelclassified.cpp index f03e7da2ec..5679233844 100644 --- a/indra/newview/llpanelclassified.cpp +++ b/indra/newview/llpanelclassified.cpp @@ -1241,13 +1241,12 @@ void LLPanelClassifiedInfo::resetData() setClassifiedId(LLUUID::null); setSnapshotId(LLUUID::null); mPosGlobal.clearVec(); + childSetValue("category", LLStringUtil::null); + childSetValue("content_type", LLStringUtil::null); } void LLPanelClassifiedInfo::resetControls() { - childSetValue("category", LLStringUtil::null); - childSetValue("content_type", LLStringUtil::null); - if(getAvatarId() == gAgent.getID()) { childSetEnabled("edit_btn", TRUE); @@ -1337,11 +1336,10 @@ void LLPanelClassifiedInfo::onExit() static const S32 CB_ITEM_MATURE = 0; static const S32 CB_ITEM_PG = 1; -static std::string SET_LOCATION_NOTICE("(will update after save)"); LLPanelClassifiedEdit::LLPanelClassifiedEdit() : LLPanelClassifiedInfo() - , mNewClassified(false) + , mIsNew(false) { } @@ -1362,13 +1360,18 @@ BOOL LLPanelClassifiedEdit::postBuild() LLPanelClassifiedInfo::postBuild(); LLTextureCtrl* snapshot = getChild<LLTextureCtrl>("classified_snapshot"); - snapshot->setOnSelectCallback(boost::bind(&LLPanelClassifiedEdit::onClassifiedChanged, this)); + snapshot->setOnSelectCallback(boost::bind(&LLPanelClassifiedEdit::onChange, this)); + + LLUICtrl* edit_icon = getChild<LLUICtrl>("edit_icon"); + snapshot->setMouseEnterCallback(boost::bind(&LLPanelClassifiedEdit::onTexturePickerMouseEnter, this, edit_icon)); + snapshot->setMouseLeaveCallback(boost::bind(&LLPanelClassifiedEdit::onTexturePickerMouseLeave, this, edit_icon)); + edit_icon->setVisible(false); LLLineEditor* line_edit = getChild<LLLineEditor>("classified_name"); - line_edit->setKeystrokeCallback(boost::bind(&LLPanelClassifiedEdit::onClassifiedChanged, this), NULL); + line_edit->setKeystrokeCallback(boost::bind(&LLPanelClassifiedEdit::onChange, this), NULL); LLTextEditor* text_edit = getChild<LLTextEditor>("classified_desc"); - text_edit->setKeystrokeCallback(boost::bind(&LLPanelClassifiedEdit::onClassifiedChanged, this)); + text_edit->setKeystrokeCallback(boost::bind(&LLPanelClassifiedEdit::onChange, this)); LLComboBox* combobox = getChild<LLComboBox>( "category"); LLClassifiedInfo::cat_map::iterator iter; @@ -1379,14 +1382,14 @@ BOOL LLPanelClassifiedEdit::postBuild() combobox->add(LLTrans::getString(iter->second)); } - combobox->setCommitCallback(boost::bind(&LLPanelClassifiedEdit::onClassifiedChanged, this)); + combobox->setCommitCallback(boost::bind(&LLPanelClassifiedEdit::onChange, this)); - childSetCommitCallback("content_type", boost::bind(&LLPanelClassifiedEdit::onClassifiedChanged, this), NULL); - childSetCommitCallback("price_for_listing", boost::bind(&LLPanelClassifiedEdit::onClassifiedChanged, this), NULL); - childSetCommitCallback("auto_renew", boost::bind(&LLPanelClassifiedEdit::onClassifiedChanged, this), NULL); + childSetCommitCallback("content_type", boost::bind(&LLPanelClassifiedEdit::onChange, this), NULL); + childSetCommitCallback("price_for_listing", boost::bind(&LLPanelClassifiedEdit::onChange, this), NULL); + childSetCommitCallback("auto_renew", boost::bind(&LLPanelClassifiedEdit::onChange, this), NULL); - childSetAction("save_changes_btn", boost::bind(&LLPanelClassifiedEdit::onClickSave, this)); - childSetAction("set_to_curr_location_btn", boost::bind(&LLPanelClassifiedEdit::onClickSetLocation, this)); + childSetAction("save_changes_btn", boost::bind(&LLPanelClassifiedEdit::onSaveClick, this)); + childSetAction("set_to_curr_location_btn", boost::bind(&LLPanelClassifiedEdit::onSetLocationClick, this)); return TRUE; } @@ -1395,9 +1398,10 @@ void LLPanelClassifiedEdit::onOpen(const LLSD& key) { LLUUID classified_id = key["classified_id"]; - if(classified_id.isNull()) + mIsNew = classified_id.isNull(); + + if(mIsNew) { - mNewClassified = true; setAvatarId(gAgent.getID()); resetData(); @@ -1425,18 +1429,20 @@ void LLPanelClassifiedEdit::onOpen(const LLSD& key) childSetValue("classified_name", makeClassifiedName()); childSetValue("classified_desc", desc); setSnapshotId(snapshot_id); - setClassifiedLocation(createLocationText(SET_LOCATION_NOTICE, region_name, getPosGlobal())); + + setClassifiedLocation(createLocationText(getLocationNotice(), region_name, getPosGlobal())); + // server will set valid parcel id setParcelId(LLUUID::null); - enableSaveButton(true); + enableVerbs(true); + enableEditing(true); } else { - mNewClassified = false; - LLPanelClassifiedInfo::onOpen(key); - enableSaveButton(false); + enableVerbs(false); + enableEditing(false); } resetDirty(); @@ -1450,10 +1456,11 @@ void LLPanelClassifiedEdit::processProperties(void* data, EAvatarProcessorType t LLAvatarClassifiedInfo* c_info = static_cast<LLAvatarClassifiedInfo*>(data); if(c_info && getClassifiedId() == c_info->classified_id) { + enableEditing(true); + setClassifiedName(c_info->name); setDescription(c_info->description); setSnapshotId(c_info->snapshot_id); - // setParcelId(c_info->parcel_id); setPosGlobal(c_info->pos_global); setClassifiedLocation(createLocationText(c_info->parcel_name, c_info->sim_name, c_info->pos_global)); @@ -1475,8 +1482,10 @@ void LLPanelClassifiedEdit::processProperties(void* data, EAvatarProcessorType t BOOL LLPanelClassifiedEdit::isDirty() const { - if(mNewClassified) + if(mIsNew) + { return TRUE; + } BOOL dirty = false; @@ -1530,7 +1539,7 @@ void LLPanelClassifiedEdit::sendUpdate() if(getClassifiedId().isNull()) { - LLUUID id = getClassifiedId(); + LLUUID id; id.generate(); setClassifiedId(id); } @@ -1543,7 +1552,7 @@ void LLPanelClassifiedEdit::sendUpdate() c_data.parcel_id = getParcelId(); c_data.snapshot_id = getSnapshotId(); c_data.pos_global = getPosGlobal(); - c_data.flags = getClassifiedFlags(); + c_data.flags = getFlags(); c_data.price_for_listing = getPriceForListing(); LLAvatarPropertiesProcessor::getInstance()->sendClassifiedInfoUpdate(&c_data); @@ -1555,21 +1564,33 @@ U32 LLPanelClassifiedEdit::getCategory() return cat_cb->getCurrentIndex() + 1; } -U8 LLPanelClassifiedEdit::getClassifiedFlags() +U8 LLPanelClassifiedEdit::getFlags() { bool auto_renew = childGetValue("auto_renew").asBoolean(); LLComboBox* content_cb = getChild<LLComboBox>("content_type"); bool mature = content_cb->getCurrentIndex() == CB_ITEM_MATURE; - return pack_classified_flags_request(auto_renew, false, mature, false);; + return pack_classified_flags_request(auto_renew, false, mature, false); } -void LLPanelClassifiedEdit::enableSaveButton(bool enable) +void LLPanelClassifiedEdit::enableVerbs(bool enable) { childSetEnabled("save_changes_btn", enable); } +void LLPanelClassifiedEdit::enableEditing(bool enable) +{ + childSetEnabled("classified_snapshot", enable); + childSetEnabled("classified_name", enable); + childSetEnabled("classified_desc", enable); + childSetEnabled("set_to_curr_location_btn", enable); + childSetEnabled("category", enable); + childSetEnabled("content_type", enable); + childSetEnabled("price_for_listing", enable); + childSetEnabled("auto_renew", enable); +} + std::string LLPanelClassifiedEdit::makeClassifiedName() { std::string name; @@ -1581,7 +1602,9 @@ std::string LLPanelClassifiedEdit::makeClassifiedName() } if(!name.empty()) + { return name; + } LLViewerRegion* region = gAgent.getRegion(); if(region) @@ -1597,7 +1620,7 @@ S32 LLPanelClassifiedEdit::getPriceForListing() return childGetValue("price_for_listing").asInteger(); } -void LLPanelClassifiedEdit::onClickSetLocation() +void LLPanelClassifiedEdit::onSetLocationClick() { setPosGlobal(gAgent.getPositionGlobal()); setParcelId(LLUUID::null); @@ -1609,29 +1632,39 @@ void LLPanelClassifiedEdit::onClickSetLocation() region_name = region->getName(); } - setClassifiedLocation(createLocationText(SET_LOCATION_NOTICE, region_name, getPosGlobal())); + setClassifiedLocation(createLocationText(getLocationNotice(), region_name, getPosGlobal())); // mark classified as dirty setValue(LLSD()); - onClassifiedChanged(); + onChange(); } -void LLPanelClassifiedEdit::onClassifiedChanged() +void LLPanelClassifiedEdit::onChange() { - if(isDirty()) - { - enableSaveButton(true); - } - else - { - enableSaveButton(false); - } + enableVerbs(isDirty()); } -void LLPanelClassifiedEdit::onClickSave() +void LLPanelClassifiedEdit::onSaveClick() { sendUpdate(); + resetDirty(); +} + +std::string LLPanelClassifiedEdit::getLocationNotice() +{ + static std::string location_notice = getString("location_notice"); + return location_notice; +} + +void LLPanelClassifiedEdit::onTexturePickerMouseEnter(LLUICtrl* ctrl) +{ + ctrl->setVisible(TRUE); +} + +void LLPanelClassifiedEdit::onTexturePickerMouseLeave(LLUICtrl* ctrl) +{ + ctrl->setVisible(FALSE); } //EOF diff --git a/indra/newview/llpanelclassified.h b/indra/newview/llpanelclassified.h index 7e384824ab..187bdbb37e 100644 --- a/indra/newview/llpanelclassified.h +++ b/indra/newview/llpanelclassified.h @@ -37,6 +37,7 @@ #ifndef LL_LLPANELCLASSIFIED_H #define LL_LLPANELCLASSIFIED_H +#include "llavatarpropertiesprocessor.h" #include "llpanel.h" #include "llclassifiedinfo.h" #include "v3dmath.h" @@ -55,6 +56,8 @@ class LLTextureCtrl; class LLUICtrl; class LLMessageSystem; +// *TODO deprecated, should be removed. +// New class implemented in ticket EXT-2095 class LLPanelClassified : public LLPanel { public: @@ -198,8 +201,6 @@ private: void* mUserData; }; -#include "llavatarpropertiesprocessor.h" - class LLPanelClassifiedInfo : public LLPanel, public LLAvatarPropertiesObserver { public: @@ -214,39 +215,39 @@ public: /*virtual*/ void processProperties(void* data, EAvatarProcessorType type); - virtual void setAvatarId(const LLUUID& avatar_id) { mAvatarId = avatar_id; } + void setAvatarId(const LLUUID& avatar_id) { mAvatarId = avatar_id; } - virtual LLUUID& getAvatarId() { return mAvatarId; } + LLUUID& getAvatarId() { return mAvatarId; } - virtual void setSnapshotId(const LLUUID& id); + void setSnapshotId(const LLUUID& id); - virtual LLUUID getSnapshotId(); + LLUUID getSnapshotId(); - virtual void setClassifiedId(const LLUUID& id) { mClassifiedId = id; } + void setClassifiedId(const LLUUID& id) { mClassifiedId = id; } - virtual LLUUID& getClassifiedId() { return mClassifiedId; } + LLUUID& getClassifiedId() { return mClassifiedId; } - virtual void setClassifiedName(const std::string& name); + void setClassifiedName(const std::string& name); - virtual std::string getClassifiedName(); + std::string getClassifiedName(); - virtual void setDescription(const std::string& desc); + void setDescription(const std::string& desc); - virtual std::string getDescription(); + std::string getDescription(); - virtual void setClassifiedLocation(const std::string& location); + void setClassifiedLocation(const std::string& location); - virtual void setPosGlobal(const LLVector3d& pos) { mPosGlobal = pos; } + void setPosGlobal(const LLVector3d& pos) { mPosGlobal = pos; } - virtual LLVector3d& getPosGlobal() { return mPosGlobal; } + LLVector3d& getPosGlobal() { return mPosGlobal; } - virtual void setParcelId(const LLUUID& id) { mParcelId = id; } + void setParcelId(const LLUUID& id) { mParcelId = id; } - virtual LLUUID getParcelId() { return mParcelId; } + LLUUID getParcelId() { return mParcelId; } - virtual bool getInfoLoaded() { return mInfoLoaded; } + bool getInfoLoaded() { return mInfoLoaded; } - virtual void setInfoLoaded(bool loaded) { mInfoLoaded = loaded; } + void setInfoLoaded(bool loaded) { mInfoLoaded = loaded; } virtual void setExitCallback(const commit_callback_t& cb); @@ -285,23 +286,23 @@ public: virtual ~LLPanelClassifiedEdit(); - BOOL postBuild(); + /*virtual*/ BOOL postBuild(); - void onOpen(const LLSD& key); + /*virtual*/ void onOpen(const LLSD& key); - void processProperties(void* data, EAvatarProcessorType type); + /*virtual*/ void processProperties(void* data, EAvatarProcessorType type); - BOOL isDirty() const; + /*virtual*/ BOOL isDirty() const; - void resetDirty(); + /*virtual*/ void resetDirty(); void setSaveCallback(const commit_callback_t& cb); void setCancelCallback(const commit_callback_t& cb); - void resetControls(); + /*virtual*/ void resetControls(); - virtual bool isNewClassified() { return mNewClassified; } + bool isNew() { return mIsNew; } protected: @@ -311,20 +312,27 @@ protected: U32 getCategory(); - void enableSaveButton(bool enable); + void enableVerbs(bool enable); + + void enableEditing(bool enable); std::string makeClassifiedName(); S32 getPriceForListing(); - U8 getClassifiedFlags(); + U8 getFlags(); + + std::string getLocationNotice(); + + void onSetLocationClick(); + void onChange(); + void onSaveClick(); - void onClickSetLocation(); - void onClassifiedChanged(); - void onClickSave(); + void onTexturePickerMouseEnter(LLUICtrl* ctrl); + void onTexturePickerMouseLeave(LLUICtrl* ctrl); private: - bool mNewClassified; + bool mIsNew; }; #endif // LL_LLPANELCLASSIFIED_H diff --git a/indra/newview/llpanelpicks.cpp b/indra/newview/llpanelpicks.cpp index 2129fe473a..0fededcc46 100644 --- a/indra/newview/llpanelpicks.cpp +++ b/indra/newview/llpanelpicks.cpp @@ -686,7 +686,7 @@ void LLPanelPicks::onPanelPickSave(LLPanel* panel) void LLPanelPicks::onPanelClassifiedSave(LLPanelClassifiedEdit* panel) { - if(panel->isNewClassified()) + if(panel->isNew()) { LLClassifiedItem* c_item = new LLClassifiedItem(getAvatarId(), panel->getClassifiedId()); @@ -716,7 +716,7 @@ void LLPanelPicks::onPanelClassifiedSave(LLPanelClassifiedEdit* panel) void LLPanelPicks::onPanelClassifiedClose(LLPanelClassifiedInfo* panel) { - if(panel->getInfoLoaded()) + if(panel->getInfoLoaded() && !panel->isDirty()) { std::vector<LLSD> values; mClassifiedsList->getValues(values); diff --git a/indra/newview/llpanelpicks.h b/indra/newview/llpanelpicks.h index 68ad2436ee..4b90ea5048 100644 --- a/indra/newview/llpanelpicks.h +++ b/indra/newview/llpanelpicks.h @@ -57,6 +57,10 @@ class LLPanelClassifiedInfo; class LLPanelClassifiedEdit; class LLClassifiedClickThrough; +// *TODO +// Panel Picks has been consolidated with Classifieds (EXT-2095), give LLPanelPicks +// and corresponding files (cpp, h, xml) a new name. (new name is TBD at the moment) + class LLPanelPicks : public LLPanelProfileTab { diff --git a/indra/newview/skins/default/xui/en/panel_edit_classified.xml b/indra/newview/skins/default/xui/en/panel_edit_classified.xml index 4741243add..2f3277804f 100644 --- a/indra/newview/skins/default/xui/en/panel_edit_classified.xml +++ b/indra/newview/skins/default/xui/en/panel_edit_classified.xml @@ -11,6 +11,10 @@ name="panel_edit_classified" top="0" width="333"> + <panel.string + name="location_notice"> + (will update after save) + </panel.string> <button follows="top|right" height="23" @@ -65,9 +69,9 @@ top="20" left="10" name="classified_snapshot" /> - <button + <icon height="18" - image_overlay="AddItem_Off" + image_name="AddItem_Off" layout="topleft" right="-5" name="edit_icon" |