00001 /*---------------------------------------------------------------------\ 00002 | | 00003 | __ __ ____ _____ ____ | 00004 | \ \ / /_ _/ ___|_ _|___ \ | 00005 | \ V / _` \___ \ | | __) | | 00006 | | | (_| |___) || | / __/ | 00007 | |_|\__,_|____/ |_| |_____| | 00008 | | 00009 | core system | 00010 | (C) SuSE GmbH | 00011 \----------------------------------------------------------------------/ 00012 00013 File: YQPkgSelectionsFilterView.h 00014 00015 Author: Stefan Hundhammer <sh@suse.de> 00016 00017 /-*/ 00018 00019 // -*- c++ -*- 00020 00021 00022 #ifndef YQPkgSelectionsFilterView_h 00023 #define YQPkgSelectionsFilterView_h 00024 00025 #include <qvbox.h> 00026 #include <y2pm/PMSelection.h> 00027 00028 00029 class YQPkgSelList; 00030 00031 00032 class YQPkgSelectionsFilterView : public QVBox 00033 { 00034 Q_OBJECT 00035 00036 public: 00037 00041 YQPkgSelectionsFilterView( QWidget * parent ); 00042 00046 virtual ~YQPkgSelectionsFilterView(); 00047 00048 00052 YQPkgSelList * selList() const { return _selList; } 00053 00054 00055 protected: 00056 00057 00058 // Data members 00059 00060 YQPkgSelList * _selList; 00061 }; 00062 00063 00064 00065 #endif // ifndef YQPkgSelectionsFilterView_h