libyui-qt-pkg
Loading...
Searching...
No Matches
YQPkgServiceFilterView.h
1/*
2 Copyright (c) 2018-2021 SUSE LLC
3
4 This library is free software; you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) version 3.0 of the License. This library
8 is distributed in the hope that it will be useful, but WITHOUT ANY
9 WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
11 License for more details. You should have received a copy of the GNU
12 Lesser General Public License along with this library; if not, write
13 to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
14 Floor, Boston, MA 02110-1301 USA
15*/
16
17
18#ifndef YQPkgServiceFilterView_h
19#define YQPkgServiceFilterView_h
20
21#include "YQPkgSecondaryFilterView.h"
22
23class QWidget;
25
31{
32 Q_OBJECT
33
34public:
35
39 YQPkgServiceFilterView( QWidget * parent );
40
45
49 static bool any_service();
50
51protected:
52
53 virtual void primaryFilter();
54 virtual void primaryFilterIfVisible();
55
56 // Data members
57 // list of services, owned by the parent widget
58 YQPkgServiceList * _serviceList;
59};
60
61#endif // ifndef YQPkgServiceFilterView_h
Definition YQPkgSecondaryFilterView.h:33
Definition YQPkgServiceFilterView.h:31
virtual ~YQPkgServiceFilterView()
Definition YQPkgServiceFilterView.cc:41
static bool any_service()
Definition YQPkgServiceFilterView.cc:57
YQPkgServiceFilterView(QWidget *parent)
Definition YQPkgServiceFilterView.cc:33
A widget to display a list of libzypp services.
Definition YQPkgServiceList.h:40