digikam
albumiconviewfilter.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef ALBUMICONVIEWFILTER_H
00025 #define ALBUMICONVIEWFILTER_H
00026
00027
00028
00029 #include "QString"
00030
00031
00032
00033 #include "khbox.h"
00034
00035
00036
00037 #include "albumlister.h"
00038
00039 class QEvent;
00040 class QObject;
00041
00042 namespace Digikam
00043 {
00044
00045 class AlbumIconViewFilterPriv;
00046
00047 class AlbumIconViewFilter : public KHBox
00048 {
00049 Q_OBJECT
00050
00051 public:
00052
00053 AlbumIconViewFilter(QWidget* parent);
00054 ~AlbumIconViewFilter();
00055
00056 void readSettings();
00057 void saveSettings();
00058
00059 signals:
00060
00061 void signalResetTagFilters();
00062
00063 private slots:
00064
00065 void slotRatingFilterChanged(int, AlbumLister::RatingCondition);
00066 void slotMimeTypeFilterChanged(int);
00067 void slotTextFilterChanged(const QString&);
00068 void slotItemsFilterMatch(bool);
00069
00070 private:
00071
00072 bool eventFilter(QObject *object, QEvent *e);
00073
00074 private:
00075
00076 AlbumIconViewFilterPriv* d;
00077 };
00078
00079 }
00080
00081 #endif // ALBUMICONVIEWFILTER_H