kaddressbook

selectionpage.h
1/*
2 This file is part of KAddressBook.
3 Copyright (c) 2002 Anders Lund <anders.lund@lund.tdcadsl.dk>
4 Tobias Koenig <tokoe@kde.org>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
20 As a special exception, permission is given to link this program
21 with any edition of TQt, and distribute the resulting executable,
22 without including the source code for TQt in the source distribution.
23*/
24#ifndef SELECTIONPAGE_H
25#define SELECTIONPAGE_H
26
27#include <tqwidget.h>
28
29class TQButtonGroup;
30class TQComboBox;
31class TQListView;
32class TQListViewItem;
33class TQRadioButton;
34
35class SelectionPage : public TQWidget
36{
37 TQ_OBJECT
38
39
40 public:
41 SelectionPage( TQWidget* parent = 0, const char* name = 0 );
42 ~SelectionPage();
43
44 void setFilters( const TQStringList& );
45 TQString filter() const;
46 bool useFilters() const;
47
48 void setCategories( const TQStringList& );
49 TQStringList categories() const;
50 bool useCategories();
51
52 void setUseSelection( bool value );
53 bool useSelection() const;
54
55 private slots:
56 void filterChanged( int );
57 void categoryClicked( TQListViewItem * i );
58
59 private:
60 TQButtonGroup* mButtonGroup;
61 TQRadioButton* mUseCategories;
62 TQRadioButton* mUseFilters;
63 TQRadioButton* mUseWholeBook;
64 TQRadioButton* mUseSelection;
65 TQComboBox* mFiltersCombo;
66 TQListView* mCategoriesView;
67};
68
69#endif // SELECTIONPAGE_H