VirtualBox

Ignore:
Timestamp:
May 10, 2016 10:45:09 AM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
107137
Message:

FE/Qt: ​​​​​​​​​​bugref:6769: Rework/cleanup file-path selector widget (part 11): Reuse code from refreshText() in retranslateUi(), that fixes incorrect tool-tips in few cases.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilePathSelector.cpp

    r60920 r60921  
    227227    }
    228228
    229     /* How do we interpret the "nothing selected" item? */
     229    /* If selector is NOT focused => we interpret the "nothing selected"
     230     * item depending on "reset to default" feature state: */
    230231    if (isResetEnabled())
    231232    {
     233        /* If "reset to default" is enabled: */
    232234        m_strNoneText = tr("<reset to default>");
    233235        m_strNoneToolTip = tr("The actual default path value will be displayed after "
     
    236238    else
    237239    {
     240        /* If "reset to default" is NOT enabled: */
    238241        m_strNoneText = tr("<not selected>");
    239242        m_strNoneToolTip = tr("Please use the <b>Other...</b> item from the drop-down "
     
    241244    }
    242245
    243     /* Retranslate 'path' item: */
    244     if (m_strPath.isNull())
    245     {
    246         setItemText(PathId, m_strNoneText);
    247         setItemData(PathId, m_strNoneToolTip, Qt::ToolTipRole);
    248         setToolTip(m_strNoneToolTip);
    249     }
     246    /* Finally, retranslate current item: */
     247    refreshText();
    250248}
    251249
     
    450448            setItemText(PathId, m_strPath);
    451449        setItemIcon(PathId, QIcon());
     450
     451        /* Set the tool-tip: */
    452452        setToolTip(m_enmMode == Mode_Folder ?
    453453                   tr("Holds the folder path.") :
    454454                   tr("Holds the file path."));
     455        setItemData(PathId, toolTip(), Qt::ToolTipRole);
    455456
    456457        if (m_fMouseAwaited)
     
    478479            setItemText(PathId, m_strNoneText);
    479480            setItemIcon(PathId, QIcon());
    480             setItemData(PathId, m_strNoneToolTip, Qt::ToolTipRole);
     481
     482            /* Set the tool-tip: */
    481483            setToolTip(m_strNoneToolTip);
     484            setItemData(PathId, toolTip(), Qt::ToolTipRole);
    482485        }
    483486    }
     
    496499                            defaultIcon());
    497500
    498         /* Set the tooltip: */
     501        /* Set the tool-tip: */
    499502        setToolTip(fullPath());
    500503        setItemData(PathId, toolTip(), Qt::ToolTipRole);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette