summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelplaceprofile.cpp
blob: 18588514f8766ffa6a476cda21bd9ccb63ae31b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
/**
 * @file llpanelplaceprofile.cpp
 * @brief Displays place profile in Side Tray.
 *
 * $LicenseInfo:firstyear=2009&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$
 */

#include "llviewerprecompiledheaders.h"

#include "llpanelplaceprofile.h"

#include "llavatarnamecache.h"
#include "llparcel.h"
#include "message.h"

#include "llexpandabletextbox.h"
#include "lliconctrl.h"
#include "lllineeditor.h"
#include "lltextbox.h"
#include "lltexteditor.h"

#include "lltrans.h"

#include "llaccordionctrl.h"
#include "llaccordionctrltab.h"
#include "llagent.h"
#include "llagentui.h"
#include "llappviewer.h"
#include "llcallbacklist.h"
#include "llbuycurrencyhtml.h"
#include "llslurl.h"
#include "llstatusbar.h"
#include "llviewercontrol.h"
#include "llviewerparcelmgr.h"
#include "llviewerregion.h"

const F64 COVENANT_REFRESH_TIME_SEC = 60.0f;

static LLPanelInjector<LLPanelPlaceProfile> t_place_profile("panel_place_profile");

// Statics for textures filenames
static std::string icon_pg;
static std::string icon_m;
static std::string icon_r;
static std::string icon_voice;
static std::string icon_voice_no;
static std::string icon_fly;
static std::string icon_fly_no;
static std::string icon_push;
static std::string icon_push_no;
static std::string icon_build;
static std::string icon_build_no;
static std::string icon_scripts;
static std::string icon_scripts_no;
static std::string icon_damage;
static std::string icon_damage_no;
static std::string icon_see_avs_on;
static std::string icon_see_avs_off;

LLPanelPlaceProfile::LLPanelPlaceProfile()
:   LLPanelPlaceInfo(),
    mNextCovenantUpdateTime(0),
    mForSalePanel(NULL),
    mYouAreHerePanel(NULL),
    mSelectedParcelID(-1),
    mAccordionCtrl(NULL)
{}

// virtual
LLPanelPlaceProfile::~LLPanelPlaceProfile()
{
    gIdleCallbacks.deleteFunction(&LLPanelPlaceProfile::updateYouAreHereBanner, this);
}

// virtual
bool LLPanelPlaceProfile::postBuild()
{
    LLPanelPlaceInfo::postBuild();

    mForSalePanel = getChild<LLPanel>("for_sale_panel");
    mYouAreHerePanel = getChild<LLPanel>("here_panel");
    gIdleCallbacks.addFunction(&LLPanelPlaceProfile::updateYouAreHereBanner, this);

    //Icon value should contain sale price of last selected parcel.
    mForSalePanel->getChild<LLIconCtrl>("icon_for_sale")->
                setMouseDownCallback(boost::bind(&LLPanelPlaceProfile::onForSaleBannerClick, this));

    mParcelRatingIcon = getChild<LLIconCtrl>("rating_icon");
    mParcelRatingText = getChild<LLTextBox>("rating_value");
    mVoiceIcon = getChild<LLIconCtrl>("voice_icon");
    mVoiceText = getChild<LLTextBox>("voice_value");
    mFlyIcon = getChild<LLIconCtrl>("fly_icon");
    mFlyText = getChild<LLTextBox>("fly_value");
    mPushIcon = getChild<LLIconCtrl>("push_icon");
    mPushText = getChild<LLTextBox>("push_value");
    mBuildIcon = getChild<LLIconCtrl>("build_icon");
    mBuildText = getChild<LLTextBox>("build_value");
    mScriptsIcon = getChild<LLIconCtrl>("scripts_icon");
    mScriptsText = getChild<LLTextBox>("scripts_value");
    mDamageIcon = getChild<LLIconCtrl>("damage_icon");
    mDamageText = getChild<LLTextBox>("damage_value");
    mSeeAVsIcon = getChild<LLIconCtrl>("see_avatars_icon");
    mSeeAVsText = getChild<LLTextBox>("see_avatars_value");

    mRegionNameText = getChild<LLTextBox>("region_name");
    mRegionTypeText = getChild<LLTextBox>("region_type");
    mRegionRatingIcon = getChild<LLIconCtrl>("region_rating_icon");
    mRegionRatingText = getChild<LLTextBox>("region_rating");
    mRegionOwnerText = getChild<LLTextBox>("region_owner");
    mRegionGroupText = getChild<LLTextBox>("region_group");

    mEstateNameText = getChild<LLTextBox>("estate_name");
    mEstateRatingText = getChild<LLTextBox>("estate_rating");
    mEstateRatingIcon = getChild<LLIconCtrl>("estate_rating_icon");
    mEstateOwnerText = getChild<LLTextBox>("estate_owner");
    mCovenantText = getChild<LLTextEditor>("covenant");

    mSalesPriceText = getChild<LLTextBox>("sales_price");
    mAreaText = getChild<LLTextBox>("area");
    mTrafficText = getChild<LLTextBox>("traffic");
    mPrimitivesText = getChild<LLTextBox>("primitives");
    mParcelScriptsText = getChild<LLTextBox>("parcel_scripts");
    mTerraformLimitsText = getChild<LLTextBox>("terraform_limits");
    mSubdivideText = getChild<LLTextEditor>("subdivide");
    mResaleText = getChild<LLTextEditor>("resale");
    mSaleToText = getChild<LLTextBox>("sale_to");
    mAccordionCtrl = getChild<LLAccordionCtrl>("advanced_info_accordion");

    icon_pg = getString("icon_PG");
    icon_m = getString("icon_M");
    icon_r = getString("icon_R");
    icon_voice = getString("icon_Voice");
    icon_voice_no = getString("icon_VoiceNo");
    icon_fly = getString("icon_Fly");
    icon_fly_no = getString("icon_FlyNo");
    icon_push = getString("icon_Push");
    icon_push_no = getString("icon_PushNo");
    icon_build = getString("icon_Build");
    icon_build_no = getString("icon_BuildNo");
    icon_scripts = getString("icon_Scripts");
    icon_scripts_no = getString("icon_ScriptsNo");
    icon_damage = getString("icon_Damage");
    icon_damage_no = getString("icon_DamageNo");
    icon_see_avs_on = getString("icon_SeeAVs_On");
    icon_see_avs_off = getString("icon_SeeAVs_Off");

    mLastSelectedRegionID = LLUUID::null;
    mNextCovenantUpdateTime = 0;

    return true;
}

// virtual
void LLPanelPlaceProfile::resetLocation()
{
    LLPanelPlaceInfo::resetLocation();

    mLastSelectedRegionID = LLUUID::null;
    mNextCovenantUpdateTime = 0;

    mForSalePanel->setVisible(false);
    mYouAreHerePanel->setVisible(false);

    std::string loading = LLTrans::getString("LoadingData");

    mParcelRatingIcon->setValue(loading);
    mParcelRatingText->setText(loading);
    mVoiceIcon->setValue(loading);
    mVoiceText->setText(loading);
    mFlyIcon->setValue(loading);
    mFlyText->setText(loading);
    mPushIcon->setValue(loading);
    mPushText->setText(loading);
    mBuildIcon->setValue(loading);
    mBuildText->setText(loading);
    mScriptsIcon->setValue(loading);
    mScriptsText->setText(loading);
    mDamageIcon->setValue(loading);
    mDamageText->setText(loading);
    mSeeAVsIcon->setValue(loading);
    mSeeAVsText->setText(loading);

    mRegionNameText->setValue(loading);
    mRegionTypeText->setValue(loading);
    mRegionRatingIcon->setValue(loading);
    mRegionRatingText->setValue(loading);
    mRegionOwnerText->setValue(loading);
    mRegionGroupText->setValue(loading);

    mEstateNameText->setValue(loading);
    mEstateRatingText->setValue(loading);
    mEstateRatingIcon->setValue(loading);
    mEstateOwnerText->setValue(loading);
    mCovenantText->setValue(loading);

    mSalesPriceText->setValue(loading);
    mAreaText->setValue(loading);
    mTrafficText->setValue(loading);
    mPrimitivesText->setValue(loading);
    mParcelScriptsText->setValue(loading);
    mTerraformLimitsText->setValue(loading);
    mSubdivideText->setValue(loading);
    mResaleText->setValue(loading);
    mSaleToText->setValue(loading);

    getChild<LLAccordionCtrlTab>("sales_tab")->setVisible(true);
}

// virtual
void LLPanelPlaceProfile::setInfoType(EInfoType type)
{
    bool is_info_type_agent = type == AGENT;

    mMaturityRatingIcon->setVisible(!is_info_type_agent);
    mMaturityRatingText->setVisible(!is_info_type_agent);

    getChild<LLTextBox>("owner_label")->setVisible(is_info_type_agent);
    mParcelOwner->setVisible(is_info_type_agent);

    getChild<LLAccordionCtrl>("advanced_info_accordion")->setVisible(is_info_type_agent);

    // If we came from search we want larger description area, approx. 10 lines (see STORM-1311).
    // Don't use the maximum available space because that leads to nasty artifacts
    // in text editor and expandable text box.
    {
        const S32 SEARCH_DESC_HEIGHT = 150;

        // Remember original geometry (once).
        static const S32 sOrigDescVPad = getChildView("owner_label")->getRect().mBottom - mDescEditor->getRect().mTop;
        static const S32 sOrigDescHeight = mDescEditor->getRect().getHeight();
        static const S32 sOrigMRIconVPad = mDescEditor->getRect().mBottom - mMaturityRatingIcon->getRect().mTop;
        static const S32 sOrigMRTextVPad = mDescEditor->getRect().mBottom - mMaturityRatingText->getRect().mTop;

        // Resize the description.
        const S32 desc_height = is_info_type_agent ? sOrigDescHeight : SEARCH_DESC_HEIGHT;
        const S32 desc_top = getChildView("owner_label")->getRect().mBottom - sOrigDescVPad;
        LLRect desc_rect = mDescEditor->getRect();
        desc_rect.setOriginAndSize(desc_rect.mLeft, desc_top - desc_height, desc_rect.getWidth(), desc_height);
        mDescEditor->reshape(desc_rect.getWidth(), desc_rect.getHeight());
        mDescEditor->setRect(desc_rect);
        mDescEditor->updateTextShape();

        // Move the maturity rating icon/text accordingly.
        const S32 mr_icon_bottom = mDescEditor->getRect().mBottom - sOrigMRIconVPad - mMaturityRatingIcon->getRect().getHeight();
        const S32 mr_text_bottom = mDescEditor->getRect().mBottom - sOrigMRTextVPad - mMaturityRatingText->getRect().getHeight();
        mMaturityRatingIcon->setOrigin(mMaturityRatingIcon->getRect().mLeft, mr_icon_bottom);
        mMaturityRatingText->setOrigin(mMaturityRatingText->getRect().mLeft, mr_text_bottom);
    }

    switch(type)
    {
        case AGENT:
        case PLACE:
        default:
            mCurrentTitle = getString("title_place");
        break;

        case TELEPORT_HISTORY:
            mCurrentTitle = getString("title_teleport_history");
        break;
    }

    if (mAccordionCtrl != NULL)
    {
        mAccordionCtrl->expandDefaultTab();
    }

    LLPanelPlaceInfo::setInfoType(type);
}

// virtual
void LLPanelPlaceProfile::processParcelInfo(const LLParcelData& parcel_data)
{
    LLPanelPlaceInfo::processParcelInfo(parcel_data);

    // HACK: Flag 0x2 == adult region,
    // Flag 0x1 == mature region, otherwise assume PG
    if (parcel_data.flags & 0x2)
    {
        mMaturityRatingIcon->setValue(icon_r);
        mMaturityRatingText->setText(LLViewerRegion::accessToString(SIM_ACCESS_ADULT));
    }
    else if (parcel_data.flags & 0x1)
    {
        mMaturityRatingIcon->setValue(icon_m);
        mMaturityRatingText->setText(LLViewerRegion::accessToString(SIM_ACCESS_MATURE));
    }
    else
    {
        mMaturityRatingIcon->setValue(icon_pg);
        mMaturityRatingText->setText(LLViewerRegion::accessToString(SIM_ACCESS_PG));
    }
}

// virtual
void LLPanelPlaceProfile::onVisibilityChange(bool new_visibility)
{
    LLPanel::onVisibilityChange(new_visibility);

    LLViewerParcelMgr* parcel_mgr = LLViewerParcelMgr::getInstance();
    if (!parcel_mgr)
        return;

    // Remove land selection when panel hides.
    if (!new_visibility)
    {
        if (!parcel_mgr->selectionEmpty())
        {
            parcel_mgr->deselectUnused();
        }
    }
}

void LLPanelPlaceProfile::displaySelectedParcelInfo(LLParcel* parcel,
                                                    LLViewerRegion* region,
                                                    const LLVector3d& pos_global,
                                                    bool is_current_parcel)
{
    if (!region || !parcel)
        return;

    if (mLastSelectedRegionID != region->getRegionID()
        || mNextCovenantUpdateTime < LLTimer::getElapsedSeconds())
    {
        // send EstateCovenantInfo message
        // Note: LLPanelPlaceProfile doesn't change Covenant's content and any
        // changes made by Estate floater should be requested by Estate floater
        LLMessageSystem *msg = gMessageSystem;
        msg->newMessage("EstateCovenantRequest");
        msg->nextBlockFast(_PREHASH_AgentData);
        msg->addUUIDFast(_PREHASH_AgentID,  gAgent.getID());
        msg->addUUIDFast(_PREHASH_SessionID,gAgent.getSessionID());
        msg->sendReliable(region->getHost());
        mNextCovenantUpdateTime = LLTimer::getElapsedSeconds() + COVENANT_REFRESH_TIME_SEC;
    }

    LLParcelData parcel_data;

    // HACK: Converting sim access flags to the format
    // returned by remote parcel response.
    U8 sim_access = region->getSimAccess();
    switch(sim_access)
    {
    case SIM_ACCESS_MATURE:
        parcel_data.flags = 0x1;

        mParcelRatingIcon->setValue(icon_m);
        mRegionRatingIcon->setValue(icon_m);
        mEstateRatingIcon->setValue(icon_m);
        break;

    case SIM_ACCESS_ADULT:
        parcel_data.flags = 0x2;

        mParcelRatingIcon->setValue(icon_r);
        mRegionRatingIcon->setValue(icon_r);
        mEstateRatingIcon->setValue(icon_r);
        break;

    default:
        parcel_data.flags = 0;

        mParcelRatingIcon->setValue(icon_pg);
        mRegionRatingIcon->setValue(icon_pg);
        mEstateRatingIcon->setValue(icon_pg);
    }

    std::string rating = LLViewerRegion::accessToString(sim_access);
    mParcelRatingText->setText(rating);
    mRegionRatingText->setText(rating);

    parcel_data.desc = parcel->getDesc();
    parcel_data.name = parcel->getName();
    parcel_data.sim_name = region->getName();
    parcel_data.snapshot_id = parcel->getSnapshotID();
    mPosRegion.setVec((F32)fmod(pos_global.mdV[VX], (F64)REGION_WIDTH_METERS),
                      (F32)fmod(pos_global.mdV[VY], (F64)REGION_WIDTH_METERS),
                      (F32)pos_global.mdV[VZ]);
    parcel_data.global_x = (F32)pos_global.mdV[VX];
    parcel_data.global_y = (F32)pos_global.mdV[VY];
    parcel_data.global_z = (F32)pos_global.mdV[VZ];
    parcel_data.owner_id = parcel->getOwnerID();

    std::string on = getString("on");
    std::string off = getString("off");

    LLViewerParcelMgr* vpm = LLViewerParcelMgr::getInstance();

    // Processing parcel characteristics
    if (vpm->allowAgentVoice(region, parcel))
    {
        mVoiceIcon->setValue(icon_voice);
        mVoiceText->setText(on);
    }
    else
    {
        mVoiceIcon->setValue(icon_voice_no);
        mVoiceText->setText(off);
    }

    if (vpm->allowAgentFly(region, parcel))
    {
        mFlyIcon->setValue(icon_fly);
        mFlyText->setText(on);
    }
    else
    {
        mFlyIcon->setValue(icon_fly_no);
        mFlyText->setText(off);
    }

    if (vpm->allowAgentPush(region, parcel))
    {
        mPushIcon->setValue(icon_push);
        mPushText->setText(on);
    }
    else
    {
        mPushIcon->setValue(icon_push_no);
        mPushText->setText(off);
    }

    if (vpm->allowAgentBuild(parcel))
    {
        mBuildIcon->setValue(icon_build);
        mBuildText->setText(on);
    }
    else
    {
        mBuildIcon->setValue(icon_build_no);
        mBuildText->setText(off);
    }

    if (vpm->allowAgentScripts(region, parcel))
    {
        mScriptsIcon->setValue(icon_scripts);
        mScriptsText->setText(on);
    }
    else
    {
        mScriptsIcon->setValue(icon_scripts_no);
        mScriptsText->setText(off);
    }

    if (vpm->allowAgentDamage(region, parcel))
    {
        mDamageIcon->setValue(icon_damage);
        mDamageText->setText(on);
    }
    else
    {
        mDamageIcon->setValue(icon_damage_no);
        mDamageText->setText(off);
    }

    if (parcel->getSeeAVs())
    {
        mSeeAVsIcon->setValue(icon_see_avs_on);
        mSeeAVsText->setText(on);
    }
    else
    {
        mSeeAVsIcon->setValue(icon_see_avs_off);
        mSeeAVsText->setText(off);
    }

    mRegionNameText->setText(region->getName());
    mRegionTypeText->setText(region->getLocalizedSimProductName());

    // Determine parcel owner
    if (parcel->isPublic())
    {
        mParcelOwner->setText(getString("public"));
        mRegionOwnerText->setText(getString("public"));
    }
    else
    {
        if (parcel->getIsGroupOwned())
        {
            mRegionOwnerText->setText(getString("group_owned_text"));

            if(!parcel->getGroupID().isNull())
            {
                std::string owner =
                    LLSLURL("group", parcel->getGroupID(), "inspect").getSLURLString();
                mParcelOwner->setText(owner);
            }
            else
            {
                std::string owner = getString("none_text");
                mRegionGroupText->setText(owner);
                mParcelOwner->setText(owner);
            }
        }
        else
        {
            // Figure out the owner's name
            std::string parcel_owner =
                LLSLURL("agent", parcel->getOwnerID(), "inspect").getSLURLString();
            mParcelOwner->setText(parcel_owner);
            LLAvatarNameCache::get(region->getOwner(), boost::bind(&LLPanelPlaceInfo::onAvatarNameCache, _1, _2, mRegionOwnerText));
            mRegionGroupText->setText( getString("none_text"));
        }

        if(LLParcel::OS_LEASE_PENDING == parcel->getOwnershipStatus())
        {
            mRegionOwnerText->setText(mRegionOwnerText->getText() + getString("sale_pending_text"));
        }

        if(!parcel->getGroupID().isNull())
        {
            // FIXME: Using parcel group as region group.
            gCacheName->getGroup(parcel->getGroupID(),
                            boost::bind(&LLPanelPlaceInfo::onNameCache, mRegionGroupText, _2));
        }
    }

    mEstateRatingText->setText(region->getSimAccessString());

    S32 area;
    S32 claim_price;
    S32 rent_price;
    F32 dwell;
    bool for_sale;
    vpm->getDisplayInfo(&area, &claim_price, &rent_price, &for_sale, &dwell);
    mForSalePanel->setVisible(for_sale);
    if (for_sale)
    {
        const LLUUID& auth_buyer_id = parcel->getAuthorizedBuyerID();
        if(auth_buyer_id.notNull())
        {
            LLAvatarNameCache::get(auth_buyer_id, boost::bind(&LLPanelPlaceInfo::onAvatarNameCache, _1, _2, mSaleToText));

            // Show sales info to a specific person or a group he belongs to.
            if (auth_buyer_id != gAgent.getID() && !gAgent.isInGroup(auth_buyer_id))
            {
                for_sale = false;
            }
        }
        else
        {
            mSaleToText->setText(getString("anyone"));
        }

        mSalesPriceText->setText(llformat("%s%d ", getString("price_text").c_str(), parcel->getSalePrice()));
        mAreaText->setText(llformat("%d %s", area, getString("area_text").c_str()));
        mTrafficText->setText(llformat("%.0f", dwell));

        // Can't have more than region max tasks, regardless of parcel
        // object bonus factor.
        S32 primitives = llmin(ll_round(parcel->getMaxPrimCapacity() * parcel->getParcelPrimBonus()),
                               (S32)region->getMaxTasks());

        mPrimitivesText->setText(llformat("%d %s, %d %s", primitives, getString("available").c_str(), parcel->getPrimCount(), getString("allocated").c_str()));

        if (parcel->getAllowOtherScripts())
        {
            mParcelScriptsText->setText(getString("all_residents_text"));
        }
        else if (parcel->getAllowGroupScripts())
        {
            mParcelScriptsText->setText(getString("group_text"));
        }
        else
        {
            mParcelScriptsText->setText(off);
        }

        mTerraformLimitsText->setText(parcel->getAllowTerraform() ? on : off);

        if (region->getRegionFlag(REGION_FLAGS_ALLOW_PARCEL_CHANGES))
        {
            mSubdivideText->setText(getString("can_change"));
        }
        else
        {
            mSubdivideText->setText(getString("can_not_change"));
        }
        if (region->getRegionFlag(REGION_FLAGS_BLOCK_LAND_RESELL))
        {
            mResaleText->setText(getString("can_not_resell"));
        }
        else
        {
            mResaleText->setText(getString("can_resell"));
        }
    }

    mSelectedParcelID = parcel->getLocalID();
    mLastSelectedRegionID = region->getRegionID();
    LLPanelPlaceInfo::processParcelInfo(parcel_data);

    mYouAreHerePanel->setVisible(is_current_parcel);
    getChild<LLAccordionCtrlTab>("sales_tab")->setVisible(for_sale);
    mAccordionCtrl->arrange();
}

void LLPanelPlaceProfile::updateEstateName(const std::string& name)
{
    mEstateNameText->setText(name);
}

void LLPanelPlaceProfile::updateEstateOwnerName(const std::string& name)
{
    mEstateOwnerText->setText(name);
}

void LLPanelPlaceProfile::updateCovenantText(const std::string &text)
{
    mCovenantText->setText(text);
}

void LLPanelPlaceProfile::onForSaleBannerClick()
{
    LLViewerParcelMgr* mgr = LLViewerParcelMgr::getInstance();
    LLParcel* parcel = mgr->getFloatingParcelSelection()->getParcel();
    LLViewerRegion* selected_region =  mgr->getSelectionRegion();
    if(parcel && selected_region)
    {
        if(parcel->getLocalID() == mSelectedParcelID &&
                mLastSelectedRegionID ==selected_region->getRegionID())
        {
            S32 price = parcel->getSalePrice();

            if(price - gStatusBar->getBalance() > 0)
            {
                LLStringUtil::format_map_t args;
                args["AMOUNT"] = llformat("%d", price);
                LLBuyCurrencyHTML::openCurrencyFloater( LLTrans::getString("buying_selected_land", args), price );
            }
            else
            {
                LLViewerParcelMgr::getInstance()->startBuyLand();
            }
        }
        else
        {
            LL_WARNS("Places") << "User  is trying  to buy remote parcel.Operation is not supported"<< LL_ENDL;
        }

    }
}

// static
void LLPanelPlaceProfile::updateYouAreHereBanner(void* userdata)
{
    //YouAreHere Banner should be displayed only for selected places,
    // If you want to display it for landmark or teleport history item, you should check by mParcelId

    LLPanelPlaceProfile* self = static_cast<LLPanelPlaceProfile*>(userdata);
    if(!self->getVisible())
        return;

    if(!gDisconnected && gAgent.getRegion())
    {
        static F32 radius = gSavedSettings.getF32("YouAreHereDistance");

        bool display_banner = gAgent.getRegion()->getRegionID() == self->mLastSelectedRegionID &&
                                        LLAgentUI::checkAgentDistance(self->mPosRegion, radius);

        self->mYouAreHerePanel->setVisible(display_banner);
    }
}