summaryrefslogtreecommitdiff
path: root/indra/newview/llscriptfloater.cpp
blob: 22a9dd0027290616894cd44d58a02b229f70ec45 (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
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
/**
 * @file llscriptfloater.cpp
 * @brief LLScriptFloater class definition
 *
 * $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 "llscriptfloater.h"
#include "llagentcamera.h"

#include "llchannelmanager.h"
#include "llchiclet.h"
#include "llchicletbar.h"
#include "llfloaterreg.h"
#include "lllslconstants.h"
#include "llnotifications.h"
#include "llnotificationsutil.h"
#include "llscreenchannel.h"
#include "llsyswellwindow.h"
#include "lltoastnotifypanel.h"
#include "lltoastscripttextbox.h"
#include "lltrans.h"
#include "llviewerobjectlist.h"
#include "llviewerwindow.h"
#include "llfloaterimsession.h"

//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////

LLUUID notification_id_to_object_id(const LLUUID& notification_id)
{
    LLNotificationPtr notification = LLNotifications::getInstance()->find(notification_id);
    if(notification)
    {
        return notification->getPayload()["object_id"].asUUID();
    }
    return LLUUID::null;
}

//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////


LLScriptFloater::LLScriptFloater(const LLSD& key)
: LLDockableFloater(NULL, true, key)
, mScriptForm(NULL)
, mSaveFloaterPosition(false)
{
    setMouseDownCallback(boost::bind(&LLScriptFloater::onMouseDown, this));
    setOverlapsScreenChannel(true);
    mIsDockedStateForcedCallback = boost::bind(&LLAgentCamera::cameraMouselook, &gAgentCamera);
}

bool LLScriptFloater::toggle(const LLUUID& notification_id)
{
    LLScriptFloater* floater = LLFloaterReg::findTypedInstance<LLScriptFloater>("script_floater", notification_id);

    // show existing floater
    if(floater)
    {
        if(floater->getVisible())
        {
            floater->setVisible(false);
            return false;
        }
        else
        {
            floater->setVisible(true);
            floater->setFocus(false);
        }
    }
    // create and show new floater
    else
    {
        show(notification_id);
    }

    LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
    if (NULL != chiclet_panelp)
    {
        chiclet_panelp->setChicletToggleState(notification_id, true);
    }

    return true;
}

LLScriptFloater* LLScriptFloater::show(const LLUUID& notification_id)
{
    LLScriptFloater* floater = LLFloaterReg::getTypedInstance<LLScriptFloater>("script_floater", notification_id);
    floater->setNotificationId(notification_id);
    floater->createForm(notification_id);

    //LLDialog(LLGiveInventory and LLLoadURL) should no longer steal focus (see EXT-5445)
    floater->setAutoFocus(false);

    if(LLScriptFloaterManager::OBJ_SCRIPT == LLScriptFloaterManager::getObjectType(notification_id))
    {
        floater->setSavePosition(true);
        floater->restorePosition();
    }
    else
    {
        floater->dockToChiclet(true);
    }

    //LLDialog(LLGiveInventory and LLLoadURL) should no longer steal focus (see EXT-5445)
    LLFloaterReg::showTypedInstance<LLScriptFloater>("script_floater", notification_id, false);

    return floater;
}

void LLScriptFloater::setNotificationId(const LLUUID& id)
{
    mNotificationId = id;
    // Lets save object id now while notification exists
    mObjectId = notification_id_to_object_id(id);
}

void LLScriptFloater::createForm(const LLUUID& notification_id)
{
    // delete old form
    if(mScriptForm)
    {
        removeChild(mScriptForm);
        mScriptForm->die();
    }

    LLNotificationPtr notification = LLNotifications::getInstance()->find(notification_id);
    if(NULL == notification)
    {
        return;
    }

    // create new form
    LLRect toast_rect = getRect();
    if (isScriptTextbox(notification))
    {
        mScriptForm = new LLToastScriptTextbox(notification);
    }
    else
    {
        // LLToastNotifyPanel will fit own content in vertical direction,
        // but it needs an initial rect to properly calculate  its width
        // Use an initial rect of the script floater to make the floater
        // window more configurable.
        mScriptForm = new LLToastNotifyPanel(notification, toast_rect);
    }
    addChild(mScriptForm);

    // position form on floater
    mScriptForm->setOrigin(0, 0);

    // make floater size fit form size
    LLRect panel_rect = mScriptForm->getRect();
    toast_rect.setLeftTopAndSize(toast_rect.mLeft, toast_rect.mTop, panel_rect.getWidth(), panel_rect.getHeight() + getHeaderHeight());
    setShape(toast_rect);
}

void LLScriptFloater::onClose(bool app_quitting)
{
    savePosition();

    if(getNotificationId().notNull())
    {
        // we shouldn't kill notification on exit since it may be used as persistent.
        if (app_quitting)
        {
            LLScriptFloaterManager::getInstance()->onRemoveNotification(getNotificationId());
        }
        else
        {
            LLScriptFloaterManager::getInstance()->removeNotification(getNotificationId());
        }
    }
}

void LLScriptFloater::setDocked(bool docked, bool pop_on_undock /* = true */)
{
    LLDockableFloater::setDocked(docked, pop_on_undock);

    savePosition();

    hideToastsIfNeeded();
}

void LLScriptFloater::setVisible(bool visible)
{
    LLDockableFloater::setVisible(visible);

    hideToastsIfNeeded();

    if(!visible)
    {
        LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
        if (NULL != chiclet_panelp)
        {
            LLIMChiclet * chicletp = chiclet_panelp->findChiclet<LLIMChiclet>(getNotificationId());
            if(NULL != chicletp)
            {
                chicletp->setToggleState(false);
            }
        }
    }
}

void LLScriptFloater::onMouseDown()
{
    if(getNotificationId().notNull())
    {
        LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
        if (NULL != chiclet_panelp)
        {
            LLIMChiclet * chicletp = chiclet_panelp->findChiclet<LLIMChiclet>(getNotificationId());
            // Remove new message icon
            if (NULL == chicletp)
            {
                LL_ERRS() << "Dock chiclet for LLScriptFloater doesn't exist" << LL_ENDL;
            }
            else
            {
                chicletp->setShowNewMessagesIcon(false);
            }
        }
    }
}

void LLScriptFloater::savePosition()
{
    if(getSavePosition() && mObjectId.notNull())
    {
        LLScriptFloaterManager::FloaterPositionInfo fpi = {getRect(), isDocked()};
        LLScriptFloaterManager::getInstance()->saveFloaterPosition(mObjectId, fpi);
    }
}

void LLScriptFloater::restorePosition()
{
    LLScriptFloaterManager::FloaterPositionInfo fpi;
    if(LLScriptFloaterManager::getInstance()->getFloaterPosition(mObjectId, fpi))
    {
        dockToChiclet(fpi.mDockState);
        if(!fpi.mDockState)
        {
            // Un-docked floater is opened in 0,0, now move it to saved position
            translate(fpi.mRect.mLeft - getRect().mLeft, fpi.mRect.mTop - getRect().mTop);
        }
    }
    else
    {
        dockToChiclet(true);
    }
}

void LLScriptFloater::onFocusLost()
{
    if(getNotificationId().notNull())
    {
        LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
        if (NULL != chiclet_panelp)
        {
            chiclet_panelp->setChicletToggleState(getNotificationId(), false);
        }
    }
}

void LLScriptFloater::onFocusReceived()
{
    // first focus will be received before setObjectId() call - don't toggle chiclet
    if(getNotificationId().notNull())
    {
        LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
        if (NULL != chiclet_panelp)
        {
            chiclet_panelp->setChicletToggleState(getNotificationId(), true);
        }
    }
}

void LLScriptFloater::dockToChiclet(bool dock)
{
    if (getDockControl() == NULL)
    {
        LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
        if (NULL != chiclet_panelp)
        {
            LLChiclet * chicletp = chiclet_panelp->findChiclet<LLChiclet>(getNotificationId());
            if (NULL == chicletp)
            {
                LL_WARNS() << "Dock chiclet for LLScriptFloater doesn't exist" << LL_ENDL;
                return;
            }

            chiclet_panelp->scrollToChiclet(chicletp);

            // Stop saving position while we dock floater
            bool save = getSavePosition();
            setSavePosition(false);

            setDockControl(new LLDockControl(chicletp, this, getDockTongue(),
                LLDockControl::BOTTOM));

            setDocked(dock);

            // Restore saving
            setSavePosition(save);
        }
    }
}

void LLScriptFloater::hideToastsIfNeeded()
{
    using namespace LLNotificationsUI;

    // find channel
    LLScreenChannel* channel = dynamic_cast<LLScreenChannel*>(LLChannelManager::getInstance()->findChannelByID(
        LLNotificationsUI::NOTIFICATION_CHANNEL_UUID));
    // update notification channel state
    if(channel)
    {
        channel->updateShowToastsState();
        channel->redrawToasts();
    }
}

//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////

LLScriptFloaterManager::LLScriptFloaterManager()
        : mDialogLimitationsSlot()
{
}

void LLScriptFloaterManager::onAddNotification(const LLUUID& notification_id)
{
    if(notification_id.isNull())
    {
        LL_WARNS() << "Invalid notification ID" << LL_ENDL;
        return;
    }

    if (!mDialogLimitationsSlot.connected())
    {
        LLPointer<LLControlVariable> cntrl_ptr = gSavedSettings.getControl("ScriptDialogLimitations");
        if (cntrl_ptr.notNull())
        {
            mDialogLimitationsSlot = cntrl_ptr->getCommitSignal()->connect(boost::bind(&clearScriptNotifications));
        }
        else
        {
            LL_WARNS() << "Unable to set signal on setting 'ScriptDialogLimitations'" << LL_ENDL;
        }
    }

    // get scripted Object's ID
    LLUUID object_id = notification_id_to_object_id(notification_id);

    // Need to indicate of "new message" for object chiclets according to requirements
    // specified in the Message Bar design specification. See EXT-3142.
    bool set_new_message = false;
    EObjectType obj_type = getObjectType(notification_id);

    // LLDialog can spawn only one instance, LLLoadURL and LLGiveInventory can spawn unlimited number of instances
    if(OBJ_SCRIPT == obj_type)
    {
        static LLCachedControl<U32> script_dialog_limitations(gSavedSettings, "ScriptDialogLimitations", 0);
        script_notification_map_t::const_iterator it = mNotifications.end();
        switch (script_dialog_limitations)
        {
            case SCRIPT_PER_CHANNEL:
            {
                // If an Object spawns more-than-one floater per channel, only the newest one is shown.
                // The previous is automatically closed.
                LLNotificationPtr notification = LLNotifications::instance().find(notification_id);
                if (notification)
                {
                    it = findUsingObjectIdAndChannel(object_id, notification->getPayload()["chat_channel"].asInteger());
                }
                break;
            }
            case SCRIPT_ATTACHMENT_PER_CHANNEL:
            {
                LLViewerObject* objectp = gObjectList.findObject(object_id);
                if (objectp && objectp->getAttachmentItemID().notNull()) //in user inventory
                {
                    LLNotificationPtr notification = LLNotifications::instance().find(notification_id);
                    if (notification)
                    {
                        it = findUsingObjectIdAndChannel(object_id, notification->getPayload()["chat_channel"].asInteger());
                    }
                }
                else
                {
                    it = findUsingObjectId(object_id);
                }
                break;
            }
            case SCRIPT_HUD_PER_CHANNEL:
            {
                LLViewerObject* objectp = gObjectList.findObject(object_id);
                if (objectp && objectp->isHUDAttachment())
                {
                    LLNotificationPtr notification = LLNotifications::instance().find(notification_id);
                    if (notification)
                    {
                        it = findUsingObjectIdAndChannel(object_id, notification->getPayload()["chat_channel"].asInteger());
                    }
                }
                else
                {
                    it = findUsingObjectId(object_id);
                }
                break;
            }
            case SCRIPT_HUD_UNCONSTRAINED:
            {
                LLViewerObject* objectp = gObjectList.findObject(object_id);
                if (objectp && objectp->isHUDAttachment())
                {
                    // don't remove existing floaters
                    break;
                }
                else
                {
                    it = findUsingObjectId(object_id);
                }
                break;
            }
            case SCRIPT_PER_OBJECT:
            default:
            {
                // If an Object spawns more-than-one floater, only the newest one is shown.
                // The previous is automatically closed.
                it = findUsingObjectId(object_id);
                break;
            }
        }

        if(it != mNotifications.end())
        {
            LLUUID old_id = it->first; // copy LLUUID to prevent use after free when it is erased below
            LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
            if (NULL != chiclet_panelp)
            {
                LLIMChiclet * chicletp = chiclet_panelp->findChiclet<LLIMChiclet>(old_id);
                if (NULL != chicletp)
                {
                    // Pass the new_message icon state further.
                    set_new_message = chicletp->getShowNewMessagesIcon();
                    chicletp->hidePopupMenu();
                }
            }

            LLScriptFloater* floater = LLFloaterReg::findTypedInstance<LLScriptFloater>("script_floater", old_id);
            if (floater)
            {
                // Generate chiclet with a "new message" indicator if a docked window was opened but not in focus. See EXT-3142.
                set_new_message |= !floater->hasFocus();
            }

            removeNotification(old_id);
        }
    }

    mNotifications.insert(std::make_pair(notification_id, object_id));

    LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
    if (NULL != chiclet_panelp)
    {
        // Create inventory offer chiclet for offer type notifications
        if( OBJ_GIVE_INVENTORY == obj_type )
        {
            chiclet_panelp->createChiclet<LLInvOfferChiclet>(notification_id);
        }
        else
        {
            chiclet_panelp->createChiclet<LLScriptChiclet>(notification_id);
        }
    }

    LLIMWellWindow::getInstance()->addObjectRow(notification_id, set_new_message);

    LLSD data;
    data["notification_id"] = notification_id;
    data["new_message"] = set_new_message;
    data["unread"] = 1; // each object has got only one floater
    mNewObjectSignal(data);

    toggleScriptFloater(notification_id, set_new_message);
}

void LLScriptFloaterManager::removeNotification(const LLUUID& notification_id)
{
    LLNotificationPtr notification = LLNotifications::instance().find(notification_id);
    if (notification != NULL && !notification->isCancelled())
    {
        LLNotificationsUtil::cancel(notification);
    }

    onRemoveNotification(notification_id);
}

void LLScriptFloaterManager::onRemoveNotification(const LLUUID& notification_id)
{
    if(notification_id.isNull())
    {
        LL_WARNS() << "Invalid notification ID" << LL_ENDL;
        return;
    }

    // remove related chiclet
    if (LLChicletBar::instanceExists())
    {
        LLChicletPanel * chiclet_panelp = LLChicletBar::getInstance()->getChicletPanel();
        if (NULL != chiclet_panelp)
        {
            chiclet_panelp->removeChiclet(notification_id);
        }
    }

    LLIMWellWindow* im_well_window = LLIMWellWindow::findInstance();
    if (im_well_window)
    {
        im_well_window->removeObjectRow(notification_id);
    }

    mNotifications.erase(notification_id);

    // close floater
    LLScriptFloater* floater = LLFloaterReg::findTypedInstance<LLScriptFloater>("script_floater", notification_id);
    if(floater)
    {
        floater->savePosition();
        floater->setNotificationId(LLUUID::null);
        floater->closeFloater();
    }
}

void LLScriptFloaterManager::toggleScriptFloater(const LLUUID& notification_id, bool set_new_message)
{
    LLSD data;
    data["notification_id"] = notification_id;
    data["new_message"] = set_new_message;
    mToggleFloaterSignal(data);

    // toggle floater
    LLScriptFloater::toggle(notification_id);
}

LLUUID LLScriptFloaterManager::findObjectId(const LLUUID& notification_id)
{
    script_notification_map_t::const_iterator it = mNotifications.find(notification_id);
    if(mNotifications.end() != it)
    {
        return it->second;
    }
    return LLUUID::null;
}

LLUUID LLScriptFloaterManager::findNotificationId(const LLUUID& object_id)
{
    if(object_id.notNull())
    {
        script_notification_map_t::const_iterator it = findUsingObjectId(object_id);
        if(mNotifications.end() != it)
        {
            return it->first;
        }
    }
    return LLUUID::null;
}

// static
LLScriptFloaterManager::EObjectType LLScriptFloaterManager::getObjectType(const LLUUID& notification_id)
{
    if(notification_id.isNull())
    {
        LL_WARNS() << "Invalid notification ID" << LL_ENDL;
        return OBJ_UNKNOWN;
    }

    static const object_type_map TYPE_MAP = initObjectTypeMap();

    LLNotificationPtr notification = LLNotificationsUtil::find(notification_id);
    object_type_map::const_iterator it = TYPE_MAP.find(notification->getName());
    if(it != TYPE_MAP.end())
    {
        return it->second;
    }

    LL_WARNS() << "Unknown object type" << LL_ENDL;
    return OBJ_UNKNOWN;
}

// static
std::string LLScriptFloaterManager::getObjectName(const LLUUID& notification_id)
{
    using namespace LLNotificationsUI;
    LLNotificationPtr notification = LLNotifications::getInstance()->find(notification_id);
    if(!notification)
    {
        LL_WARNS() << "Invalid notification" << LL_ENDL;
        return LLStringUtil::null;
    }

    std::string text;

    switch(LLScriptFloaterManager::getObjectType(notification_id))
    {
    case LLScriptFloaterManager::OBJ_SCRIPT:
        text = notification->getSubstitutions()["TITLE"].asString();
        break;
    case LLScriptFloaterManager::OBJ_LOAD_URL:
        text = notification->getSubstitutions()["OBJECTNAME"].asString();
        break;
    case LLScriptFloaterManager::OBJ_GIVE_INVENTORY:
        text = notification->getSubstitutions()["OBJECTFROMNAME"].asString();
        break;
    default:
        text = LLTrans::getString("object");
        break;
    }

    return text;
}

//static
LLScriptFloaterManager::object_type_map LLScriptFloaterManager::initObjectTypeMap()
{
    object_type_map type_map;
    type_map["ScriptDialog"] = OBJ_SCRIPT;
    type_map["ScriptDialogGroup"] = OBJ_SCRIPT;
    type_map["LoadWebPage"] = OBJ_LOAD_URL;
    type_map["ObjectGiveItem"] = OBJ_GIVE_INVENTORY;
    return type_map;
}

LLScriptFloaterManager::script_notification_map_t::const_iterator LLScriptFloaterManager::findUsingObjectId(const LLUUID& object_id)
{
    script_notification_map_t::const_iterator it = mNotifications.begin();
    for(; mNotifications.end() != it; ++it)
    {
        if(object_id == it->second)
        {
            return it;
        }
    }
    return mNotifications.end();
}

LLScriptFloaterManager::script_notification_map_t::const_iterator LLScriptFloaterManager::findUsingObjectIdAndChannel(const LLUUID& object_id, S32 im_channel)
{
    script_notification_map_t::const_iterator it = mNotifications.begin();
    for (; mNotifications.end() != it; ++it)
    {
        if (object_id == it->second)
        {
            LLNotificationPtr notification = LLNotifications::instance().find(it->first);
            if (notification && (im_channel == notification->getPayload()["chat_channel"].asInteger()))
            {
                return it;
            }
        }
    }
    return mNotifications.end();
}

void LLScriptFloaterManager::saveFloaterPosition(const LLUUID& object_id, const FloaterPositionInfo& fpi)
{
    if(object_id.notNull())
    {
        LLScriptFloaterManager::getInstance()->mFloaterPositions[object_id] = fpi;
    }
    else
    {
        LL_WARNS() << "Invalid object id" << LL_ENDL;
    }
}

bool LLScriptFloaterManager::getFloaterPosition(const LLUUID& object_id, FloaterPositionInfo& fpi)
{
    floater_position_map_t::const_iterator it = mFloaterPositions.find(object_id);
    if(LLScriptFloaterManager::getInstance()->mFloaterPositions.end() != it)
    {
        fpi = it->second;
        return true;
    }
    return false;
}

void LLScriptFloaterManager::setFloaterVisible(const LLUUID& notification_id, bool visible)
{
    LLScriptFloater* floater = LLFloaterReg::findTypedInstance<LLScriptFloater>(
        "script_floater", notification_id);
    if(floater)
    {
        floater->setVisible(visible);
    }
}

//static
void LLScriptFloaterManager::clearScriptNotifications()
{
    LLScriptFloaterManager* inst = LLScriptFloaterManager::getInstance();
    static const object_type_map TYPE_MAP = initObjectTypeMap();

    script_notification_map_t::const_iterator ntf_it = inst->mNotifications.begin();
    while (inst->mNotifications.end() != ntf_it)
    {
        LLUUID notification_id = ntf_it->first;
        ntf_it++; // onRemoveNotification() erases notification
        LLNotificationPtr notification = LLNotifications::instance().find(notification_id);
        if (notification)
        {
            object_type_map::const_iterator map_it = TYPE_MAP.find(notification->getName());
            if (map_it != TYPE_MAP.end() && map_it->second == OBJ_SCRIPT)
            {
                if (notification != NULL && !notification->isCancelled())
                {
                    LLNotificationsUtil::cancel(notification);
                }
                inst->onRemoveNotification(notification_id);
            }
        }
    }
}

//////////////////////////////////////////////////////////////////

bool LLScriptFloater::isScriptTextbox(LLNotificationPtr notification)
{
    // get a form for the notification
    LLNotificationFormPtr form(notification->getForm());

    if (form)
    {
        // get number of elements in the form
        int num_options = form->getNumElements();

        // if ANY of the buttons have the magic lltextbox string as
        // name, then treat the whole dialog as a simple text entry
        // box (i.e. mixed button and textbox forms are not supported)
        for (int i=0; i<num_options; ++i)
        {
            LLSD form_element = form->getElement(i);
            if (form_element["name"].asString() == TEXTBOX_MAGIC_TOKEN)
            {
                return true;
            }
        }
    }

    return false;
}

// EOF