summaryrefslogtreecommitdiff
path: root/noncore/settings/aqpkg/categoryfilterimpl.h
Unidiff
Diffstat (limited to 'noncore/settings/aqpkg/categoryfilterimpl.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/categoryfilterimpl.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/categoryfilterimpl.h b/noncore/settings/aqpkg/categoryfilterimpl.h
index b6b4fd5..a85fce4 100644
--- a/noncore/settings/aqpkg/categoryfilterimpl.h
+++ b/noncore/settings/aqpkg/categoryfilterimpl.h
@@ -1,40 +1,43 @@
1/*************************************************************************** 1/***************************************************************************
2 categoryfilterimpl.h - description 2 categoryfilterimpl.h - description
3 ------------------- 3 -------------------
4 begin : Sun Nov 17 2002 4 begin : Sun Nov 17 2002
5 copyright : (C) 2002 by Andy Qua 5 copyright : (C) 2002 by Andy Qua
6 email : andy.qua@blueyonder.co.uk 6 email : andy.qua@blueyonder.co.uk
7 ***************************************************************************/ 7 ***************************************************************************/
8 8
9/*************************************************************************** 9/***************************************************************************
10 * * 10 * *
11 * This program is free software; you can redistribute it and/or modify * 11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by * 12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or * 13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. * 14 * (at your option) any later version. *
15 * * 15 * *
16 ***************************************************************************/ 16 ***************************************************************************/
17 17
18#ifndef CATEGORYFILTERIMPL_H 18#ifndef CATEGORYFILTERIMPL_H
19#define CATEGORYFILTERIMPL_H 19#define CATEGORYFILTERIMPL_H
20 20
21#include <qwidget.h> 21#include <qdialog.h>
22#include <qstring.h>
23 22
24#include "categoryfilter.h" 23class QListBox;
25 24
26/** 25/**
27 *@author Andy Qua 26 *@author Andy Qua
28 */ 27 */
29 28
30class CategoryFilterImpl : public CategoryFilterDlg 29class CategoryFilterImpl : public QDialog
31{ 30{
32 Q_OBJECT 31 Q_OBJECT
33public: 32public:
34 CategoryFilterImpl(const QString &categories, const QString &selectedCategories, QWidget *parent=0, const char *name=0); 33 CategoryFilterImpl(const QString &categories, const QString &selectedCategories, QWidget *parent=0, const char *name=0);
35 ~CategoryFilterImpl(); 34 ~CategoryFilterImpl();
36 35
37 QString getSelectedFilter(); 36 QString getSelectedFilter();
37
38private:
39 QListBox *lstCategories;
40
38}; 41};
39 42
40#endif 43#endif