blob: 3a928c334a1f644822baaf64886e381daf6f2590 [file] [log] [blame]
Nicolas Jager97a21b42015-12-03 16:55:45 -05001/***************************************************************************
Andreas Traczykb8b13ba2018-08-21 16:30:16 -04002 * Copyright (C) 2018 by Savoir-faire Linux *
3 * Author: Andreas Traczyk <andreas.traczyk@savoirfairelinux.com> *
Nicolas Jager97a21b42015-12-03 16:55:45 -05004 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 **************************************************************************/
Nicolas Jager97a21b42015-12-03 16:55:45 -050018#pragma once
19
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040020#include "api/profile.h"
21#include "smartlistselectorbuttonnotifier.h"
Nicolas Jager97a21b42015-12-03 16:55:45 -050022
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040023#include <QPushButton>
Nicolas Jager97a21b42015-12-03 16:55:45 -050024
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040025class SmartlistSelectorButtonNotifier : public QPushButton
Nicolas Jager97a21b42015-12-03 16:55:45 -050026{
27 Q_OBJECT
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040028
Nicolas Jager97a21b42015-12-03 16:55:45 -050029public:
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040030 SmartlistSelectorButtonNotifier(QWidget *parent = 0);
31 void setTypeFilter(lrc::api::profile::Type filter);
Nicolas Jager97a21b42015-12-03 16:55:45 -050032
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040033protected:
34 virtual void paintEvent(QPaintEvent *event);
Nicolas Jager41e4fcf2016-01-28 11:37:03 -050035
Andreas Traczykb8b13ba2018-08-21 16:30:16 -040036 lrc::api::profile::Type typeFilter_{ lrc::api::profile::Type::INVALID };
37};