[Digikam-devel] [Bug 150265] advance search filter is missing search in comment / description

Gilles Caulier caulier.gilles at gmail.com
Fri Sep 28 07:01:21 BST 2007


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
         
http://bugs.kde.org/show_bug.cgi?id=150265         




------- Additional Comments From caulier.gilles gmail com  2007-09-28 08:01 -------
To Gerhard,

I'm agree of course, let's go...

To Arnd,

On mouse over help is Qt ToolTips. It's really easy to code. Note that Qt provide also another way name WhatsThis. What the difference ? Tooltip is a small description of widget instead WhatsThis is a complete one.

ToolTip appears over a widget by a mouve over event.
WhatsThis appears when user use SHIFT+F1 or Help/Whats This option.

In Qt3 code is like this :

    d->saveTagsIptcBox = new QCheckBox(IptcGroup);
    d->saveTagsIptcBox->setText(i18n("&Save image tags as \"Keywords\" tag"));
    QToolTip::add( d->saveTagsIptcBox, i18n("Small descrition here"));
    QWhatsThis::add( d->saveTagsIptcBox, i18n("Full descrition here"));

In Qt4 code is like this :

    d->saveTagsIptcBox = new QCheckBox(IptcGroup);
    d->saveTagsIptcBox->setText(i18n("&Save image tags as \"Keywords\" tag"));
    d->saveTagsIptcBox->setTooltip( i18n("Small descrition here") );
    d->saveTagsIptcBox->setWhatsThis( i18n("Full descrition here") );
                                           
I try to provide at least a ToolTip everywhere on GUI and WhatsThis where user need more advanced informations. Generally, WhatsThis content is a duplicate of handbook.

Gilles



More information about the Digikam-devel mailing list