24 #ifndef SELECTIONPAGE_H 25 #define SELECTIONPAGE_H 35 class SelectionPage : public TQWidget 41 SelectionPage( TQWidget* parent = 0, const char* name = 0 ); 44 void setFilters( const TQStringList& ); 45 TQString filter() const; 46 bool useFilters() const; 48 void setCategories( const TQStringList& ); 49 TQStringList categories() const; 52 void setUseSelection( bool value ); 53 bool useSelection() const; 56 void filterChanged( int ); 57 void categoryClicked( TQListViewItem * i ); 60 TQButtonGroup* mButtonGroup; 61 TQRadioButton* mUseCategories; 62 TQRadioButton* mUseFilters; 63 TQRadioButton* mUseWholeBook; 64 TQRadioButton* mUseSelection; 65 TQComboBox* mFiltersCombo; 66 TQListView* mCategoriesView; 69 #endif // SELECTIONPAGE_H
|