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

« back to all changes in this revision

Viewing changes to digikam/digikam/albumiconviewfilter.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2008-07-17 20:25:39 UTC
  • mfrom: (1.2.15 upstream) (3.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080717202539-6n7dtirbkoo7qvhd
Tags: 2:0.9.4-1
* New upstream release
  - digiKam 0.9.4 Release Plan (KDE3) ~ 13 July 08 (Closes: #490144)
* DEB_CONFIGURE_EXTRA_FLAGS := --without-included-sqlite3
* Debhelper compatibility level V7
* Install pixmaps in debian/*.install
* Add debian/digikam.lintian-overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 * Date        : 2007-11-27
7
7
 * Description : a bar to filter album contents
8
8
 *
9
 
 * Copyright (C) 2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
9
 * Copyright (C) 2007-2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
10
10
 *
11
11
 * This program is free software; you can redistribute it
12
12
 * and/or modify it under the terms of the GNU General
33
33
 
34
34
#include "albumlister.h"
35
35
 
 
36
class QEvent;
 
37
class QObject;
 
38
 
36
39
namespace Digikam
37
40
{
38
41
 
41
44
class AlbumIconViewFilter : public QHBox
42
45
{
43
46
    Q_OBJECT
44
 
    
 
47
 
45
48
public:
46
49
 
47
50
    AlbumIconViewFilter(QWidget* parent);
50
53
    void readSettings();
51
54
    void saveSettings();
52
55
 
 
56
signals:
 
57
 
 
58
    void signalResetTagFilters();
 
59
 
53
60
private slots:
54
61
 
55
62
    void slotRatingFilterChanged(int, AlbumLister::RatingCondition);
56
63
    void slotMimeTypeFilterChanged(int);
57
64
    void slotTextFilterChanged(const QString&);
 
65
    void slotItemsFilterMatch(bool);
 
66
 
 
67
private:
 
68
 
 
69
    bool eventFilter(QObject *object, QEvent *e);
58
70
 
59
71
private:
60
72