Changeset 60921 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 10, 2016 10:45:09 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 107137
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIFilePathSelector.cpp ¶
r60920 r60921 227 227 } 228 228 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: */ 230 231 if (isResetEnabled()) 231 232 { 233 /* If "reset to default" is enabled: */ 232 234 m_strNoneText = tr("<reset to default>"); 233 235 m_strNoneToolTip = tr("The actual default path value will be displayed after " … … 236 238 else 237 239 { 240 /* If "reset to default" is NOT enabled: */ 238 241 m_strNoneText = tr("<not selected>"); 239 242 m_strNoneToolTip = tr("Please use the <b>Other...</b> item from the drop-down " … … 241 244 } 242 245 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(); 250 248 } 251 249 … … 450 448 setItemText(PathId, m_strPath); 451 449 setItemIcon(PathId, QIcon()); 450 451 /* Set the tool-tip: */ 452 452 setToolTip(m_enmMode == Mode_Folder ? 453 453 tr("Holds the folder path.") : 454 454 tr("Holds the file path.")); 455 setItemData(PathId, toolTip(), Qt::ToolTipRole); 455 456 456 457 if (m_fMouseAwaited) … … 478 479 setItemText(PathId, m_strNoneText); 479 480 setItemIcon(PathId, QIcon()); 480 setItemData(PathId, m_strNoneToolTip, Qt::ToolTipRole); 481 482 /* Set the tool-tip: */ 481 483 setToolTip(m_strNoneToolTip); 484 setItemData(PathId, toolTip(), Qt::ToolTipRole); 482 485 } 483 486 } … … 496 499 defaultIcon()); 497 500 498 /* Set the tool tip: */501 /* Set the tool-tip: */ 499 502 setToolTip(fullPath()); 500 503 setItemData(PathId, toolTip(), Qt::ToolTipRole);
Note:
See TracChangeset
for help on using the changeset viewer.