summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaternotificationsconsole.cpp
blob: dbeb5ca573d34fb6dbe84ec274cf4c4743b6774e (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
/**
 * @file llnotificationsconsole.cpp
 * @brief Debugging console for unified notifications.
 *
 * $LicenseInfo:firstyear=2003&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 "llfloaternotificationsconsole.h"
#include "llnotifications.h"
#include "lluictrlfactory.h"
#include "llbutton.h"
#include "llscrolllistctrl.h"
#include "llscrolllistitem.h"
#include "llpanel.h"
#include "llcombobox.h"

const S32 NOTIFICATION_PANEL_HEADER_HEIGHT = 20;
const S32 HEADER_PADDING = 38;

class LLNotificationChannelPanel : public LLLayoutPanel
{
public:
    LLNotificationChannelPanel(const Params& p);
    ~LLNotificationChannelPanel();
    BOOL postBuild();

private:
    bool update(const LLSD& payload);
    static void toggleClick(void* user_data);
    static void onClickNotification(void* user_data);
    LLNotificationChannelPtr mChannelPtr;
};

LLNotificationChannelPanel::LLNotificationChannelPanel(const LLNotificationChannelPanel::Params& p)
:   LLLayoutPanel(p)
{
    mChannelPtr = LLNotifications::instance().getChannel(p.name);
    buildFromFile( "panel_notifications_channel.xml");
}

LLNotificationChannelPanel::~LLNotificationChannelPanel()
{
    // Userdata for all records is a LLNotification* we need to clean up
    std::vector<LLScrollListItem*> data_list = getChild<LLScrollListCtrl>("notifications_list")->getAllData();
    std::vector<LLScrollListItem*>::iterator data_itor;
    for (data_itor = data_list.begin(); data_itor != data_list.end(); ++data_itor)
    {
        LLScrollListItem* item = *data_itor;
        LLNotification* notification = (LLNotification*)item->getUserdata();
        delete notification;
        notification = NULL;
    }
}

BOOL LLNotificationChannelPanel::postBuild()
{
    LLButton* header_button = getChild<LLButton>("header");
    header_button->setLabel(mChannelPtr->getName());
    header_button->setClickedCallback(toggleClick, this);

    mChannelPtr->connectChanged(boost::bind(&LLNotificationChannelPanel::update, this, _1));

    LLScrollListCtrl* scroll = getChild<LLScrollListCtrl>("notifications_list");
    scroll->setDoubleClickCallback(onClickNotification, this);
    scroll->setRect(LLRect( getRect().mLeft, getRect().mTop, getRect().mRight, 0));
    return TRUE;
}

//static
void LLNotificationChannelPanel::toggleClick(void *user_data)
{
    LLNotificationChannelPanel* self = (LLNotificationChannelPanel*)user_data;
    if (!self) return;

    LLButton* header_button = self->getChild<LLButton>("header");

    LLLayoutStack* stack = dynamic_cast<LLLayoutStack*>(self->getParent());
    if (stack)
    {
        stack->collapsePanel(self, header_button->getToggleState());
    }

    // turn off tab stop for collapsed panel
    self->getChild<LLScrollListCtrl>("notifications_list")->setTabStop(!header_button->getToggleState());
    self->getChild<LLScrollListCtrl>("notifications_list")->setVisible(!header_button->getToggleState());
}

/*static*/
void LLNotificationChannelPanel::onClickNotification(void* user_data)
{
    LLNotificationChannelPanel* self = (LLNotificationChannelPanel*)user_data;
    if (!self) return;
    LLScrollListItem* firstselected = self->getChild<LLScrollListCtrl>("notifications_list")->getFirstSelected();
    llassert(firstselected);
    if (firstselected)
    {
        void* data = firstselected->getUserdata();
        if (data)
        {
            gFloaterView->getParentFloater(self)->addDependentFloater(new LLFloaterNotification((LLNotification*)data), TRUE);
        }
    }
}

bool LLNotificationChannelPanel::update(const LLSD& payload)
{
    LLNotificationPtr notification = LLNotifications::instance().find(payload["id"].asUUID());
    if (notification)
    {
        LLSD row;
        row["columns"][0]["value"] = notification->getName();
        row["columns"][0]["column"] = "name";

        row["columns"][1]["value"] = notification->getMessage();
        row["columns"][1]["column"] = "content";

        row["columns"][2]["value"] = notification->getDate();
        row["columns"][2]["column"] = "date";
        row["columns"][2]["type"] = "date";

        LLScrollListItem* sli = getChild<LLScrollListCtrl>("notifications_list")->addElement(row);
        sli->setUserdata(new LLNotification(notification->asLLSD()));
    }

    return false;
}

//
// LLFloaterNotificationConsole
//
LLFloaterNotificationConsole::LLFloaterNotificationConsole(const LLSD& key)
: LLFloater(key)
{
    mCommitCallbackRegistrar.add("ClickAdd",     boost::bind(&LLFloaterNotificationConsole::onClickAdd, this));
}

BOOL LLFloaterNotificationConsole::postBuild()
{
    // these are in the order of processing
    addChannel("Unexpired");
    addChannel("Ignore");
    addChannel("VisibilityRules");
    addChannel("Visible", true);
    // all the ones below attach to the Visible channel
    addChannel("Persistent");
    addChannel("Alerts");
    addChannel("AlertModal");
    addChannel("Group Notifications");
    addChannel("Notifications");
    addChannel("NotificationTips");

//  getChild<LLButton>("add_notification")->setClickedCallback(onClickAdd, this);

    LLComboBox* notifications = getChild<LLComboBox>("notification_types");
    LLNotifications::TemplateNames names = LLNotifications::instance().getTemplateNames();
    for (LLNotifications::TemplateNames::iterator template_it = names.begin();
        template_it != names.end();
        ++template_it)
    {
        notifications->add(*template_it);
    }
    notifications->sortByName();

    return TRUE;
}

void LLFloaterNotificationConsole::addChannel(const std::string& name, bool open)
{
    LLLayoutStack& stack = getChildRef<LLLayoutStack>("notification_channels");
    LLNotificationChannelPanel::Params p;
    p.min_dim = NOTIFICATION_PANEL_HEADER_HEIGHT;
    p.auto_resize = true;
    p.user_resize = true;
    p.name = name;
    LLNotificationChannelPanel* panelp = new LLNotificationChannelPanel(p);
    stack.addPanel(panelp, LLLayoutStack::ANIMATE);

    LLButton& header_button = panelp->getChildRef<LLButton>("header");
    header_button.setToggleState(!open);
    stack.collapsePanel(panelp, !open);

    updateResizeLimits();
}

void LLFloaterNotificationConsole::removeChannel(const std::string& name)
{
    LLPanel* panelp = getChild<LLPanel>(name);
    getChildRef<LLView>("notification_channels").removeChild(panelp);
    delete panelp;

    updateResizeLimits();
}

//static
void LLFloaterNotificationConsole::updateResizeLimits()
{
    const LLFloater::Params& floater_params = LLFloater::getDefaultParams();
    S32 floater_header_size = floater_params.header_height;

    LLLayoutStack& stack = getChildRef<LLLayoutStack>("notification_channels");
    setResizeLimits(getMinWidth(), floater_header_size + HEADER_PADDING + ((NOTIFICATION_PANEL_HEADER_HEIGHT + 3) * stack.getNumPanels()));
}

void LLFloaterNotificationConsole::onClickAdd()
{
    std::string message_name = getChild<LLComboBox>("notification_types")->getValue().asString();
    if (!message_name.empty())
    {
        LLNotifications::instance().add(message_name, LLSD(), LLSD());
    }
}


//=============== LLFloaterNotification ================

LLFloaterNotification::LLFloaterNotification(LLNotification* note)
:   LLFloater(LLSD()),
    mNote(note)
{
    buildFromFile("floater_notification.xml");
}

BOOL LLFloaterNotification::postBuild()
{
    setTitle(mNote->getName());
    getChild<LLUICtrl>("payload")->setValue(mNote->getMessage());

    LLComboBox* responses_combo = getChild<LLComboBox>("response");
    LLCtrlListInterface* response_list = responses_combo->getListInterface();
    LLNotificationFormPtr form(mNote->getForm());
    if(!form)
    {
        return TRUE;
    }

    responses_combo->setCommitCallback(onCommitResponse, this);

    LLSD form_sd = form->asLLSD();

    for (LLSD::array_const_iterator form_item = form_sd.beginArray(); form_item != form_sd.endArray(); ++form_item)
    {
        if ( (*form_item)["type"].asString() != "button") continue;
        std::string text = (*form_item)["text"].asString();
        response_list->addSimpleElement(text);
    }

    return TRUE;
}

void LLFloaterNotification::respond()
{
    LLComboBox* responses_combo = getChild<LLComboBox>("response");
    LLCtrlListInterface* response_list = responses_combo->getListInterface();
    const std::string& trigger = response_list->getSelectedValue().asString();
    //LL_INFOS() << trigger << LL_ENDL;

    LLSD response = mNote->getResponseTemplate();
    response[trigger] = true;
    mNote->respond(response);
}