summaryrefslogtreecommitdiff
path: root/indra/llui/lltooltip.cpp
blob: 86525c2f7e8e249eb07c9ceb2a56621d0777e652 (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
/**
 * @file lltooltip.cpp
 * @brief LLToolTipMgr class implementation and related classes
 *
 * $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"

// self include
#include "lltooltip.h"

// Library includes
#include "lltextbox.h"
#include "lliconctrl.h"
#include "llbutton.h"
#include "llmenugl.h"       // hideMenus()
#include "llui.h"           // positionViewNearMouse()
#include "llwindow.h"
#include "lltrans.h"
//
// Constants
//

//
// Local globals
//

LLToolTipView *gToolTipView = NULL;

//
// Member functions
//

static LLDefaultChildRegistry::Register<LLToolTipView> register_tooltip_view("tooltip_view");

LLToolTipView::Params::Params()
{
    changeDefault(mouse_opaque, false);
}

LLToolTipView::LLToolTipView(const LLToolTipView::Params& p)
:   LLView(p)
{
}

void LLToolTipView::draw()
{
    LLToolTipMgr::instance().updateToolTipVisibility();

    // do the usual thing
    LLView::draw();
}

bool LLToolTipView::handleHover(S32 x, S32 y, MASK mask)
{
    static S32 last_x = x;
    static S32 last_y = y;

    LLToolTipMgr& tooltip_mgr = LLToolTipMgr::instance();

    if (x != last_x && y != last_y && !tooltip_mgr.getMouseNearRect().pointInRect(x, y))
    {
        // allow new tooltips because mouse moved outside of mouse near rect
        tooltip_mgr.unblockToolTips();
    }

    last_x = x;
    last_y = y;
    return LLView::handleHover(x, y, mask);
}

bool LLToolTipView::handleMouseDown(S32 x, S32 y, MASK mask)
{
    LLToolTipMgr::instance().blockToolTips();

    if (LLView::handleMouseDown(x, y, mask))
    {
        // If we are handling the mouse event menu holder
        // won't get a chance to close menus so do this here
        LLMenuGL::sMenuContainer->hideMenus();
        return true;
    }

    return false;
}

bool LLToolTipView::handleMiddleMouseDown(S32 x, S32 y, MASK mask)
{
    LLToolTipMgr::instance().blockToolTips();
    return LLView::handleMiddleMouseDown(x, y, mask);
}

bool LLToolTipView::handleRightMouseDown(S32 x, S32 y, MASK mask)
{
    LLToolTipMgr::instance().blockToolTips();
    return LLView::handleRightMouseDown(x, y, mask);
}


bool LLToolTipView::handleScrollWheel( S32 x, S32 y, S32 clicks )
{
    LLToolTipMgr::instance().blockToolTips();
    return false;
}

void LLToolTipView::drawStickyRect()
{
    gl_rect_2d(LLToolTipMgr::instance().getMouseNearRect(), LLColor4::white, false);
}

// defaults for floater param block pulled from widgets/floater.xml
static LLWidgetNameRegistry::StaticRegistrar sRegisterInspectorParams(&typeid(LLInspector::Params), "inspector");

//
// LLToolTip
//


static LLDefaultChildRegistry::Register<LLToolTip> register_tooltip("tool_tip");


LLToolTip::Params::Params()
:   max_width("max_width", 200),
    padding("padding", 4),
    wrap("wrap", true),
    pos("pos"),
    message("message"),
    delay_time("delay_time", LLUI::getInstance()->mSettingGroups["config"]->getF32( "ToolTipDelay" )),
    visible_time_over("visible_time_over", LLUI::getInstance()->mSettingGroups["config"]->getF32( "ToolTipVisibleTimeOver" )),
    visible_time_near("visible_time_near", LLUI::getInstance()->mSettingGroups["config"]->getF32( "ToolTipVisibleTimeNear" )),
    visible_time_far("visible_time_far", LLUI::getInstance()->mSettingGroups["config"]->getF32( "ToolTipVisibleTimeFar" )),
    sticky_rect("sticky_rect"),
    image("image"),
    text_color("text_color"),
    time_based_media("time_based_media", false),
    web_based_media("web_based_media", false),
    media_playing("media_playing", false),
    allow_paste_tooltip("allow_paste_tooltip", false)
{
    changeDefault(chrome, true);
}

LLToolTip::LLToolTip(const LLToolTip::Params& p)
:   LLPanel(p),
    mHasClickCallback(p.click_callback.isProvided()),
    mPadding(p.padding),
    mMaxWidth(p.max_width),
    mTextBox(NULL),
    mInfoButton(NULL),
    mPlayMediaButton(NULL),
    mHomePageButton(NULL),
    mIsTooltipPastable(p.allow_paste_tooltip)
{
    LLTextBox::Params params;
    params.name = params.initial_value().asString();
    // bake textbox padding into initial rect
    params.rect = LLRect (mPadding, mPadding + 1, mPadding + 1, mPadding);
    params.h_pad = 0;
    params.v_pad = 0;
    params.mouse_opaque = false;
    params.text_color = p.text_color;
    params.bg_visible = false;
    params.font = p.font;
    params.use_ellipses = true;
    params.wrap = p.wrap;
    params.font_valign = LLFontGL::VCENTER;
    params.parse_urls = false; // disallow hyperlinks in tooltips, as they want to spawn their own explanatory tooltips
    mTextBox = LLUICtrlFactory::create<LLTextBox> (params);
    addChild(mTextBox);

    S32 TOOLTIP_ICON_SIZE = 0;
    S32 TOOLTIP_PLAYBUTTON_SIZE = 0;
    if (p.image.isProvided())
    {
        LLButton::Params icon_params;
        icon_params.name = "tooltip_info";
        LLRect icon_rect;
        LLUIImage* imagep = p.image;
        TOOLTIP_ICON_SIZE = (imagep ? imagep->getWidth() : 16);
        icon_rect.setOriginAndSize(mPadding, mPadding, TOOLTIP_ICON_SIZE, TOOLTIP_ICON_SIZE);
        icon_params.rect = icon_rect;
        icon_params.image_unselected(imagep);
        icon_params.image_selected(imagep);

        icon_params.scale_image(true);
        icon_params.flash_color.control = "ButtonUnselectedFgColor";
        mInfoButton  = LLUICtrlFactory::create<LLButton>(icon_params);
        if (p.click_callback.isProvided())
        {
            mInfoButton->setCommitCallback(boost::bind(p.click_callback()));
        }
        addChild(mInfoButton);

        // move text over to fit image in
        mTextBox->translate(TOOLTIP_ICON_SIZE + mPadding, 0);
    }

    if (p.time_based_media)
    {
        LLButton::Params p_button;
        p_button.name(std::string("play_media"));
        p_button.label(""); // provide label but set to empty so name does not overwrite it -angela
        TOOLTIP_PLAYBUTTON_SIZE = 16;
        LLRect button_rect;
        button_rect.setOriginAndSize((mPadding +TOOLTIP_ICON_SIZE+ mPadding ), mPadding, TOOLTIP_ICON_SIZE, TOOLTIP_ICON_SIZE);
        p_button.rect = button_rect;
        p_button.image_selected.name("button_anim_pause.tga");
        p_button.image_unselected.name("button_anim_play.tga");
        p_button.scale_image(true);

        mPlayMediaButton = LLUICtrlFactory::create<LLButton>(p_button);
        if(p.click_playmedia_callback.isProvided())
        {
            mPlayMediaButton->setCommitCallback(boost::bind(p.click_playmedia_callback()));
        }
        mPlayMediaButton->setToggleState(p.media_playing);
        addChild(mPlayMediaButton);

        // move text over to fit image in
        mTextBox->translate(TOOLTIP_PLAYBUTTON_SIZE + mPadding, 0);
    }

    if (p.web_based_media)
    {
        LLButton::Params p_w_button;
        p_w_button.name(std::string("home_page"));
        p_w_button.label(""); // provid label but set to empty so name does not overwrite it -angela
        TOOLTIP_PLAYBUTTON_SIZE = 16;
        LLRect button_rect;
        button_rect.setOriginAndSize((mPadding +TOOLTIP_ICON_SIZE+ mPadding ), mPadding, TOOLTIP_ICON_SIZE, TOOLTIP_ICON_SIZE);
        p_w_button.rect = button_rect;
        p_w_button.image_unselected.name("map_home.tga");
        p_w_button.scale_image(true);

        mHomePageButton = LLUICtrlFactory::create<LLButton>(p_w_button);
        if(p.click_homepage_callback.isProvided())
        {
            mHomePageButton->setCommitCallback(boost::bind(p.click_homepage_callback()));
        }
        addChild(mHomePageButton);

        // move text over to fit image in
        mTextBox->translate(TOOLTIP_PLAYBUTTON_SIZE + mPadding, 0);
    }

    if (p.click_callback.isProvided())
    {
        setMouseUpCallback(boost::bind(p.click_callback()));
    }
}

void LLToolTip::initFromParams(const LLToolTip::Params& p)
{
    LLPanel::initFromParams(p);

    // do this *after* we've had our size set in LLPanel::initFromParams();
    const S32 REALLY_LARGE_HEIGHT = 10000;
    mTextBox->reshape(mMaxWidth, REALLY_LARGE_HEIGHT);

    if (p.styled_message.isProvided())
    {
        for (LLInitParam::ParamIterator<LLToolTip::StyledText>::const_iterator text_it = p.styled_message.begin();
            text_it != p.styled_message.end();
            ++text_it)
        {
            mTextBox->appendText(text_it->text(), false, text_it->style);
        }
    }
    else
    {
        mTextBox->setText(p.message());
    }

    mIsTooltipPastable = p.allow_paste_tooltip;

    updateTextBox();
    snapToChildren();
}

void LLToolTip::updateTextBox()
{
    S32 text_width = llmin(mMaxWidth, mTextBox->getTextPixelWidth() + 1);
    S32 text_height = mTextBox->getTextPixelHeight();
    mTextBox->reshape(text_width, text_height);
}

void LLToolTip::snapToChildren()
{
    // reshape tooltip panel to fit text box
    LLRect tooltip_rect = calcBoundingRect();
    tooltip_rect.mTop += mPadding;
    tooltip_rect.mRight += mPadding;
    tooltip_rect.mBottom = 0;
    tooltip_rect.mLeft = 0;

    if (mInfoButton)
    {
        mTextBox->reshape(mTextBox->getRect().getWidth(), llmax(mTextBox->getRect().getHeight(), tooltip_rect.getHeight() - 2 * mPadding));

        LLRect text_rect = mTextBox->getRect();
        LLRect icon_rect = mInfoButton->getRect();
        mInfoButton->translate(0, text_rect.getCenterY() - icon_rect.getCenterY());
    }

    setShape(tooltip_rect);
}

void LLToolTip::setVisible(bool visible)
{
    // fade out tooltip over time
    if (visible)
    {
        mVisibleTimer.start();
        mFadeTimer.stop();
        LLPanel::setVisible(true);
    }
    else
    {
        mVisibleTimer.stop();
        // don't actually change mVisible state, start fade out transition instead
        if (!mFadeTimer.getStarted())
        {
            mFadeTimer.start();
        }
    }
}

bool LLToolTip::handleHover(S32 x, S32 y, MASK mask)
{
    //mInfoButton->setFlashing(true);
    if(mInfoButton)
        mInfoButton->setHighlight(true);

    LLPanel::handleHover(x, y, mask);
    if (mHasClickCallback)
    {
        getWindow()->setCursor(UI_CURSOR_HAND);
    }
    return true;
}

void LLToolTip::onMouseLeave(S32 x, S32 y, MASK mask)
{
    //mInfoButton->setFlashing(true);
    if(mInfoButton)
        mInfoButton->setHighlight(false);
    LLUICtrl::onMouseLeave(x, y, mask);
}

void LLToolTip::draw()
{
    F32 alpha = 1.f;

    if (mFadeTimer.getStarted())
    {
        static LLCachedControl<F32> tool_tip_fade_time(*LLUI::getInstance()->mSettingGroups["config"], "ToolTipFadeTime", 0.2f);
        alpha = clamp_rescale(mFadeTimer.getElapsedTimeF32(), 0.f, tool_tip_fade_time(), 1.f, 0.f);
        if (alpha == 0.f)
        {
            // finished fading out, so hide ourselves
            mFadeTimer.stop();
            LLPanel::setVisible(false);
        }
    }

    // draw tooltip contents with appropriate alpha
    {
        LLViewDrawContext context(alpha);
        LLPanel::draw();
    }
}

bool LLToolTip::isFading()
{
    return mFadeTimer.getStarted();
}

F32 LLToolTip::getVisibleTime()
{
    return mVisibleTimer.getStarted() ? mVisibleTimer.getElapsedTimeF32() : 0.f;
}

bool LLToolTip::hasClickCallback()
{
    return mHasClickCallback;
}

void LLToolTip::getToolTipMessage(std::string & message)
{
    if (mTextBox)
    {
        message = mTextBox->getText();
    }
}



//
// LLToolTipMgr
//

LLToolTipMgr::LLToolTipMgr()
:       mToolTipsBlocked(false),
    mToolTip(NULL),
    mNeedsToolTip(false)
{}

void LLToolTipMgr::createToolTip(const LLToolTip::Params& params)
{
    // block all other tooltips until tooltips re-enabled (e.g. mouse moved)
    blockToolTips();

    delete mToolTip;

    LLToolTip::Params tooltip_params(params);
    // block mouse events if there is a click handler registered (specifically, hover)
    if (params.click_callback.isProvided() && !params.mouse_opaque.isProvided())
    {
        // set mouse_opaque to true if it wasn't already set to something else
        // this prevents mouse down from going "through" the tooltip and ultimately
        // causing the tooltip to disappear
        tooltip_params.mouse_opaque = true;
    }
    tooltip_params.rect = LLRect (0, 1, 1, 0);

    if (tooltip_params.create_callback.isProvided())
    {
        mToolTip = tooltip_params.create_callback()(tooltip_params);
        if (mToolTip == NULL)
        {
            return;
        }
    }
    else
        mToolTip = LLUICtrlFactory::create<LLToolTip> (tooltip_params);

    gToolTipView->addChild(mToolTip);

    if (params.pos.isProvided())
    {
        LLCoordGL pos = params.pos;
        // try to spawn at requested position
        LLUI::getInstance()->positionViewNearMouse(mToolTip, pos.mX, pos.mY);
    }
    else
    {
        // just spawn at mouse location
        LLUI::getInstance()->positionViewNearMouse(mToolTip);
    }

    //...update "sticky" rect and tooltip position
    if (params.sticky_rect.isProvided())
    {
        mMouseNearRect = params.sticky_rect;
    }
    else
    {
        S32 mouse_x;
        S32 mouse_y;
        LLUI::getInstance()->getMousePositionLocal(gToolTipView->getParent(), &mouse_x, &mouse_y);

        // allow mouse a little bit of slop before changing tooltips
        mMouseNearRect.setCenterAndSize(mouse_x, mouse_y, 3, 3);
    }

    // allow mouse to move all the way to the tooltip without changing tooltips
    // (tooltip can still time out)
    if (mToolTip->hasClickCallback())
    {
        // keep tooltip up when we mouse over it
        mMouseNearRect.unionWith(mToolTip->getRect());
    }
}


void LLToolTipMgr::show(const std::string& msg, bool allow_paste_tooltip)
{
    show(LLToolTip::Params().message(msg).allow_paste_tooltip(allow_paste_tooltip));
}

void LLToolTipMgr::show(const LLToolTip::Params& params)
{
    if (!params.styled_message.isProvided()
        && (!params.message.isProvided() || params.message().empty())
        && !params.image.isProvided() && !params.create_callback.isProvided()) return;

    // fill in default tooltip params from tool_tip.xml
    LLToolTip::Params params_with_defaults(params);
    params_with_defaults.fillFrom(LLUICtrlFactory::instance().getDefaultParams<LLToolTip>());
    if (!params_with_defaults.validateBlock())
    {
        LL_WARNS() << "Could not display tooltip!" << LL_ENDL;
        return;
    }

    // are we ready to show the tooltip?
    if (!mToolTipsBlocked                                   // we haven't hit a key, moved the mouse, etc.
        && LLUI::getInstance()->getMouseIdleTime() > params_with_defaults.delay_time)   // the mouse has been still long enough
    {
        bool tooltip_changed = mLastToolTipParams.message() != params_with_defaults.message()
                                || mLastToolTipParams.pos() != params_with_defaults.pos()
                                || mLastToolTipParams.time_based_media() != params_with_defaults.time_based_media()
                                || mLastToolTipParams.web_based_media() != params_with_defaults.web_based_media();

        bool tooltip_shown = mToolTip
                             && mToolTip->getVisible()
                             && !mToolTip->isFading();

        mNeedsToolTip = tooltip_changed || !tooltip_shown;
        // store description of tooltip for later creation
        mNextToolTipParams = params_with_defaults;
    }
}

// allow new tooltips to be created, e.g. after mouse has moved
void LLToolTipMgr::unblockToolTips()
{
    mToolTipsBlocked = false;
}

// disallow new tooltips until unblockTooltips called
void LLToolTipMgr::blockToolTips()
{
    hideToolTips();
    mToolTipsBlocked = true;
}

void LLToolTipMgr::hideToolTips()
{
    if (mToolTip)
    {
        mToolTip->setVisible(false);
    }
}

bool LLToolTipMgr::toolTipVisible()
{
    return mToolTip ? mToolTip->isInVisibleChain() : false;
}

LLRect LLToolTipMgr::getToolTipRect()
{
    if (mToolTip && mToolTip->getVisible())
    {
        return mToolTip->getRect();
    }
    return LLRect();
}


LLRect LLToolTipMgr::getMouseNearRect()
{
    return toolTipVisible() ? mMouseNearRect : LLRect();
}

// every frame, determine if current tooltip should be hidden
void LLToolTipMgr::updateToolTipVisibility()
{
    // create new tooltip if we have one ready to go
    if (mNeedsToolTip)
    {
        mNeedsToolTip = false;
        createToolTip(mNextToolTipParams);
        mLastToolTipParams = mNextToolTipParams;

        return;
    }

    // hide tooltips when mouse cursor is hidden
    if (LLUI::getInstance()->getWindow()->isCursorHidden())
    {
        blockToolTips();
        return;
    }

    // hide existing tooltips if they have timed out
    F32 tooltip_timeout = 0.f;
    if (toolTipVisible())
    {
        S32 mouse_x, mouse_y;
        LLUI::getInstance()->getMousePositionLocal(gToolTipView, &mouse_x, &mouse_y);

        // mouse far away from tooltip
        tooltip_timeout = mLastToolTipParams.visible_time_far;
        // mouse near rect will only include the tooltip if the
        // tooltip is clickable
        if (mMouseNearRect.pointInRect(mouse_x, mouse_y))
        {
            // mouse "close" to tooltip
            tooltip_timeout = mLastToolTipParams.visible_time_near;

            // if tooltip is clickable (has large mMouseNearRect)
            // than having cursor over tooltip keeps it up indefinitely
            if (mToolTip->parentPointInView(mouse_x, mouse_y))
            {
                // mouse over tooltip itself, don't time out
                tooltip_timeout = mLastToolTipParams.visible_time_over;
            }
        }

        if (mToolTip->getVisibleTime() > tooltip_timeout)
        {
            hideToolTips();
            unblockToolTips();
        }
    }
}


// Return the current tooltip text
void LLToolTipMgr::getToolTipMessage(std::string & message)
{
    if (toolTipVisible())
    {
        mToolTip->getToolTipMessage(message);
    }
}

bool LLToolTipMgr::isTooltipPastable()
{
    if (toolTipVisible())
    {
        return mToolTip->isTooltipPastable();
    }
    return false;
 }

// EOF