summaryrefslogtreecommitdiff
path: root/indra/llui/llradiogroup.cpp
blob: 2aff434612fc877765338683b7cebf96291ccd19 (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
/**
 * @file llradiogroup.cpp
 * @brief LLRadioGroup base class
 *
 * $LicenseInfo:firstyear=2001&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 "linden_common.h"

#include "llboost.h"

#include "llradiogroup.h"
#include "indra_constants.h"

#include "llviewborder.h"
#include "llcontrol.h"
#include "llui.h"
#include "llfocusmgr.h"
#include "lluictrlfactory.h"
#include "llsdutil.h"

static LLDefaultChildRegistry::Register<LLRadioGroup> r1("radio_group");

/*
 * An invisible view containing multiple mutually exclusive toggling
 * buttons (usually radio buttons).  Automatically handles the mutex
 * condition by highlighting only one button at a time.
 */
class LLRadioCtrl : public LLCheckBoxCtrl
{
public:
    typedef LLRadioGroup::ItemParams Params;
    /*virtual*/ ~LLRadioCtrl();
    /*virtual*/ void setValue(const LLSD& value);

    /*virtual*/ bool postBuild();
    /*virtual*/ bool handleMouseDown(S32 x, S32 y, MASK mask);

    LLSD getPayload() { return mPayload; }

    // Ensure label is in an attribute, not the contents
    static void setupParamsForExport(Params& p, LLView* parent);

protected:
    LLRadioCtrl(const LLRadioGroup::ItemParams& p);
    friend class LLUICtrlFactory;

    LLSD mPayload;  // stores data that this item represents in the radio group
};
static LLWidgetNameRegistry::StaticRegistrar register_radio_item(&typeid(LLRadioGroup::ItemParams), "radio_item");

LLRadioGroup::Params::Params()
:   allow_deselect("allow_deselect"),
    items("item")
{
    addSynonym(items, "radio_item");

    // radio items are not tabbable until they are selected
    tab_stop = false;
}

LLRadioGroup::LLRadioGroup(const LLRadioGroup::Params& p)
:   LLUICtrl(p),
    mFont(p.font.isProvided() ? p.font() : LLFontGL::getFontSansSerifSmall()),
    mSelectedIndex(-1),
    mAllowDeselect(p.allow_deselect)
{}

void LLRadioGroup::initFromParams(const Params& p)
{
    for (LLInitParam::ParamIterator<ItemParams>::const_iterator it = p.items.begin();
        it != p.items.end();
        ++it)
    {
        LLRadioGroup::ItemParams item_params(*it);

        if (!item_params.font.isProvided())
        {
            item_params.font = mFont; // apply radio group font by default
        }
        item_params.commit_callback.function = boost::bind(&LLRadioGroup::onClickButton, this, _1);
        item_params.from_xui = p.from_xui;
        if (p.from_xui)
        {
            applyXUILayout(item_params, this);
        }

        LLRadioCtrl* item = LLUICtrlFactory::create<LLRadioCtrl>(item_params, this);
        mRadioButtons.push_back(item);
    }

    // call this *after* setting up mRadioButtons so we can handle setValue() calls
    LLUICtrl::initFromParams(p);
}


LLRadioGroup::~LLRadioGroup()
{
}

// virtual
bool LLRadioGroup::postBuild()
{
    if (!mRadioButtons.empty())
    {
        mRadioButtons[0]->setTabStop(true);
    }
    return true;
}

void LLRadioGroup::setIndexEnabled(S32 index, bool enabled)
{
    S32 count = 0;
    for (button_list_t::iterator iter = mRadioButtons.begin();
         iter != mRadioButtons.end(); ++iter)
    {
        LLRadioCtrl* child = *iter;
        if (count == index)
        {
            child->setEnabled(enabled);
            if (index == mSelectedIndex && !enabled)
            {
                setSelectedIndex(-1);
            }
            break;
        }
        count++;
    }
    count = 0;
    if (mSelectedIndex < 0)
    {
        // Set to highest enabled value < index,
        // or lowest value above index if none lower are enabled
        // or 0 if none are enabled
        for (button_list_t::iterator iter = mRadioButtons.begin();
             iter != mRadioButtons.end(); ++iter)
        {
            LLRadioCtrl* child = *iter;
            if (count >= index && mSelectedIndex >= 0)
            {
                break;
            }
            if (child->getEnabled())
            {
                setSelectedIndex(count);
            }
            count++;
        }
        if (mSelectedIndex < 0)
        {
            setSelectedIndex(0);
        }
    }
}

bool LLRadioGroup::setSelectedIndex(S32 index, bool from_event)
{
    if ((S32)mRadioButtons.size() <= index )
    {
        return false;
    }

    if (index < -1)
    {
        // less then minimum value
        return false;
    }

    if (index < 0 && mSelectedIndex >= 0 && !mAllowDeselect)
    {
        // -1 is "nothing selected"
        return false;
    }

    if (mSelectedIndex >= 0)
    {
        LLRadioCtrl* old_radio_item = mRadioButtons[mSelectedIndex];
        old_radio_item->setTabStop(false);
        old_radio_item->setValue( false );
    }
    else
    {
        mRadioButtons[0]->setTabStop(false);
    }

    mSelectedIndex = index;

    if (mSelectedIndex >= 0)
    {
        LLRadioCtrl* radio_item = mRadioButtons[mSelectedIndex];
        radio_item->setTabStop(true);
        radio_item->setValue( true );

        if (hasFocus())
        {
            radio_item->focusFirstItem(false, false);
        }
    }

    if (!from_event)
    {
        setControlValue(getValue());
    }

    return true;
}

void LLRadioGroup::focusSelectedRadioBtn()
{
    if (mSelectedIndex >= 0)
    {
        LLRadioCtrl* radio_item = mRadioButtons[mSelectedIndex];
        if (radio_item->hasTabStop() && radio_item->getEnabled())
        {
            radio_item->focusFirstItem(false, false);
        }
    }
    else if (mRadioButtons[0]->hasTabStop() || hasTabStop())
    {
        focusFirstItem(false, false);
    }
}

bool LLRadioGroup::handleKeyHere(KEY key, MASK mask)
{
    bool handled = false;
    // do any of the tab buttons have keyboard focus?
    if (mask == MASK_NONE)
    {
        switch(key)
        {
        case KEY_DOWN:
            if (!setSelectedIndex((getSelectedIndex() + 1)))
            {
                make_ui_sound("UISndInvalidOp");
            }
            else
            {
                onCommit();
            }
            handled = true;
            break;
        case KEY_UP:
            if (!setSelectedIndex((getSelectedIndex() - 1)))
            {
                make_ui_sound("UISndInvalidOp");
            }
            else
            {
                onCommit();
            }
            handled = true;
            break;
        case KEY_LEFT:
            if (!setSelectedIndex((getSelectedIndex() - 1)))
            {
                make_ui_sound("UISndInvalidOp");
            }
            else
            {
                onCommit();
            }
            handled = true;
            break;
        case KEY_RIGHT:
            if (!setSelectedIndex((getSelectedIndex() + 1)))
            {
                make_ui_sound("UISndInvalidOp");
            }
            else
            {
                onCommit();
            }
            handled = true;
            break;
        default:
            break;
        }
    }
    return handled;
}

// Handle one button being clicked.  All child buttons must have this
// function as their callback function.

void LLRadioGroup::onClickButton(LLUICtrl* ctrl)
{
    // LL_INFOS() << "LLRadioGroup::onClickButton" << LL_ENDL;
    LLRadioCtrl* clicked_radio = dynamic_cast<LLRadioCtrl*>(ctrl);
    if (!clicked_radio)
        return;
    S32 index = 0;
    for (button_list_t::iterator iter = mRadioButtons.begin();
         iter != mRadioButtons.end(); ++iter)
    {
        LLRadioCtrl* radio = *iter;
        if (radio == clicked_radio)
        {
            if (index == mSelectedIndex && mAllowDeselect)
            {
                // don't select anything
                setSelectedIndex(-1);
            }
            else
            {
                setSelectedIndex(index);
            }

            // BUG: Calls click callback even if button didn't actually change
            onCommit();

            return;
        }

        index++;
    }

    LL_WARNS() << "LLRadioGroup::onClickButton - clicked button that isn't a child" << LL_ENDL;
}

void LLRadioGroup::setValue( const LLSD& value )
{
    int idx = 0;
    for (button_list_t::const_iterator iter = mRadioButtons.begin();
         iter != mRadioButtons.end(); ++iter)
    {
        LLRadioCtrl* radio = *iter;
        if (radio->getPayload().asString() == value.asString())
        {
            setSelectedIndex(idx);
            idx = -1;
            break;
        }
        ++idx;
    }
    if (idx != -1)
    {
        // string not found, try integer
        if (value.isInteger())
        {
            setSelectedIndex((S32) value.asInteger(), true);
        }
        else
        {
            setSelectedIndex(-1, true);
        }
    }
}

LLSD LLRadioGroup::getValue() const
{
    int index = getSelectedIndex();
    int idx = 0;
    for (button_list_t::const_iterator iter = mRadioButtons.begin();
         iter != mRadioButtons.end(); ++iter)
    {
        if (idx == index) return LLSD((*iter)->getPayload());
        ++idx;
    }
    return LLSD();
}

// LLCtrlSelectionInterface functions
bool    LLRadioGroup::setCurrentByID( const LLUUID& id )
{
    return false;
}

LLUUID  LLRadioGroup::getCurrentID() const
{
    return LLUUID::null;
}

bool    LLRadioGroup::setSelectedByValue(const LLSD& value, bool selected)
{
    S32 idx = 0;
    for (button_list_t::const_iterator iter = mRadioButtons.begin();
         iter != mRadioButtons.end(); ++iter)
    {
        if((*iter)->getPayload().asString() == value.asString())
        {
            setSelectedIndex(idx);
            return true;
        }
        idx++;
    }

    return false;
}

LLSD    LLRadioGroup::getSelectedValue()
{
    return getValue();
}

bool    LLRadioGroup::isSelected(const LLSD& value) const
{
    S32 idx = 0;
    for (button_list_t::const_iterator iter = mRadioButtons.begin();
         iter != mRadioButtons.end(); ++iter)
    {
        if((*iter)->getPayload().asString() == value.asString())
        {
            if (idx == mSelectedIndex)
            {
                return true;
            }
        }
        idx++;
    }
    return false;
}

bool    LLRadioGroup::operateOnSelection(EOperation op)
{
    return false;
}

bool    LLRadioGroup::operateOnAll(EOperation op)
{
    return false;
}

LLRadioGroup::ItemParams::ItemParams()
:   value("value")
{
    addSynonym(value, "initial_value");
}

LLRadioCtrl::LLRadioCtrl(const LLRadioGroup::ItemParams& p)
:   LLCheckBoxCtrl(p),
    mPayload(p.value)
{
    // use name as default "Value" for backwards compatibility
    if (!p.value.isProvided())
    {
        mPayload = p.name();
    }
}

bool LLRadioCtrl::postBuild()
{
    // Old-style radio_item used the text contents to indicate the label,
    // but new-style radio_item uses label attribute.
    std::string value = getValue().asString();
    if (!value.empty())
    {
        setLabel(value);
    }
    return true;
}

bool LLRadioCtrl::handleMouseDown(S32 x, S32 y, MASK mask)
{
    // Grab focus preemptively, before button takes mousecapture
    if (hasTabStop() && getEnabled())
    {
        focusFirstItem(false, false);
    }
    else
    {
        // Only currently selected item in group has tab stop as result it is
        // unclear how focus should behave on click, just let the group handle
        // focus and LLRadioGroup::onClickButton() will set correct state later
        // if needed
        LLRadioGroup* parent = (LLRadioGroup*)getParent();
        if (parent)
        {
            parent->focusSelectedRadioBtn();
        }
    }

    return LLCheckBoxCtrl::handleMouseDown(x, y, mask);
}

LLRadioCtrl::~LLRadioCtrl()
{
}

void LLRadioCtrl::setValue(const LLSD& value)
{
    LLCheckBoxCtrl::setValue(value);
    mButton->setTabStop(value.asBoolean());
}

// *TODO: Remove this function after the initial XUI XML re-export pass.
// static
void LLRadioCtrl::setupParamsForExport(Params& p, LLView* parent)
{
    std::string label = p.label;
    if (label.empty())
    {
        // We don't have a label attribute, so move the text contents
        // stored in "value" into the label
        std::string initial_value = p.LLUICtrl::Params::initial_value();
        p.label = initial_value;
        p.LLUICtrl::Params::initial_value = LLSD();
    }

    LLCheckBoxCtrl::setupParamsForExport(p, parent);
}