~ubuntu-branches/ubuntu/intrepid/digikam/intrepid

« back to all changes in this revision

Viewing changes to digikam/digikam/searchquickdialog.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.3.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20080717202539-ttj4and3ds1ldgn1
Tags: upstream-0.9.4
ImportĀ upstreamĀ versionĀ 0.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * Description : a dialog to perform simple search in albums
8
8
 *
9
9
 * Copyright (C) 2005 by Renchi Raju <renchi@pooh.tam.uiuc.edu>
10
 
 * Copyright (C) 2006-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
10
 * Copyright (C) 2006-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
11
11
 *
12
12
 * This program is free software; you can redistribute it
13
13
 * and/or modify it under the terms of the GNU General
82
82
    QGridLayout* grid = new QGridLayout(plainPage(), 2, 2, 0, spacingHint());
83
83
    
84
84
    QLabel *label1 = new QLabel("<b>" + i18n("Search:") + "</b>", plainPage());
85
 
    d->searchEdit  = new SearchTextBar(plainPage(), i18n("Enter here your search criteria"));
 
85
    d->searchEdit  = new SearchTextBar(plainPage(), "SearchQuickDialogSearchEdit", i18n("Enter here your search criteria"));
86
86
    QWhatsThis::add( d->searchEdit, i18n("<p>Enter your search criteria to find items in the album library"));
87
87
    
88
88
    d->resultsView = new SearchResultsView(plainPage());
89
89
    d->resultsView->setMinimumSize(320, 200);
90
 
    QWhatsThis::add( d->resultsView, i18n("<p>Here you can see the items found in album library "
 
90
    QWhatsThis::add( d->resultsView, i18n("<p>Here you can see the items found in album library, "
91
91
                                          "using the current search criteria"));
92
92
    
93
93
    QLabel *label2 = new QLabel(i18n("Save search as:"), plainPage());