diff options
Diffstat (limited to 'src/cardwidget.h')
-rw-r--r-- | src/cardwidget.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/src/cardwidget.h b/src/cardwidget.h deleted file mode 100644 index 92d544d..0000000 --- a/src/cardwidget.h +++ /dev/null @@ -1,58 +0,0 @@ -/*** - This file is part of pavucontrol. - - Copyright 2006-2008 Lennart Poettering - Copyright 2009 Colin Guthrie - - pavucontrol is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 2 of the License, or - (at your option) any later version. - - pavucontrol is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. - - You should have received a copy of the GNU General Public License - along with pavucontrol. If not, see <https://www.gnu.org/licenses/>. -***/ - -#ifndef cardwidget_h -#define cardwidget_h - -#include "pavucontrol.h" -#include "helper.h" -#include "ui_cardwidget.h" -#include <QWidget> -#include <QMap> -#include <QString> -#include <QList> - -class CardWidget : public QWidget, public Ui::CardWidget { - Q_OBJECT -public: - CardWidget(QWidget *parent = nullptr); - - QByteArray name; - uint32_t index; - bool updating; - - - QMap<QString, ProfileGroup> profiles; - std::map<QByteArray, PortInfo> ports; - QByteArray activeProfile; - bool hasSinks; - bool hasSources; - - void prepareMenu(); - -protected: - void changeProfile(const QString & name); - void changeProfileFlavor(const QByteArray & id); - void onProfileChange(int active); - void onProfileFlavorChange(int active); - -}; - -#endif |