File indexing completed on 2024-04-21 16:29:31

0001 /***************************************************************************
0002  *   Copyright (C) 2009-2010 by Daniel Nicoletti                           *
0003  *   dantti12@gmail.com                                                    *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  *                                                                         *
0010  *   This program is distributed in the hope that it will be useful,       *
0011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0013  *   GNU General Public License for more details.                          *
0014  *                                                                         *
0015  *   You should have received a copy of the GNU General Public License     *
0016  *   along with this program; see the file COPYING. If not, write to       *
0017  *   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,  *
0018  *   Boston, MA 02110-1301, USA.                                           *
0019  ***************************************************************************/
0020 
0021 #ifndef FILTERS_MENU_H
0022 #define FILTERS_MENU_H
0023 
0024 #include <QMenu>
0025 #include <Transaction>
0026 
0027 using namespace PackageKit;
0028 
0029 class FiltersMenu : public QMenu
0030 {
0031 Q_OBJECT
0032 public:
0033     explicit FiltersMenu(QWidget *parent = nullptr);
0034     ~FiltersMenu() override;
0035 
0036     void setFilters(Transaction::Filters filters);
0037 
0038     Transaction::Filters filters() const;
0039     bool filterApplications() const;
0040 
0041 Q_SIGNALS:
0042     void filtersChanged();
0043     void filterApplications(bool checked);
0044 
0045     void enableCollections(bool enable);
0046     void enableInstalled(bool enabled);
0047     void enableDevelopment(bool enabled);
0048     void enableGraphical(bool enabled);
0049     void enableFree(bool enabled);
0050     void enableSupported(bool enabled);
0051     void enableSource(bool enable);
0052     void enableBasenameNewestArchSeparator(bool enable);
0053     void enableBasename(bool enable);
0054     void enableNewest(bool enable);
0055     void enableArch(bool enable);
0056 
0057 private:
0058     QAction *m_applications;
0059     QVector<QAction*> m_actions;
0060     QHash<QAction *, Transaction::Filter> m_filtersAction;
0061 };
0062 
0063 #endif