mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-01 22:30:13 +01:00
* Added a 'librdalsa' convenience library in 'rdalsa/'. * Moved the 'RDAlsaCard' class from 'utils/rdalsaconfig/' to 'rdalsa/' to contain ALSA card quirk information. * Refactored the ALSA driver in caed(8) to use 'RDAlsaCard'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
60 lines
1.9 KiB
C++
60 lines
1.9 KiB
C++
// rdalsamodel.h
|
|
//
|
|
// Abstract an ALSA configuration.
|
|
//
|
|
// (C) Copyright 2009-2025 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// This program 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 this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#ifndef RDALSAMODEL_H
|
|
#define RDALSAMODEL_H
|
|
|
|
#include <QAbstractListModel>
|
|
#include <qlist.h>
|
|
#include <qstring.h>
|
|
|
|
#include <rd.h>
|
|
|
|
#include <rdalsacard.h>
|
|
|
|
#define START_MARKER "# *** Start of Rivendell configuration generated by rdalsaconfig(1) ***"
|
|
#define END_MARKER "# *** End of Rivendell configuration generated by rdalsaconfig(1) ***"
|
|
|
|
class RDAlsaModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
RDAlsaModel(unsigned samprate,QObject *parent=0);
|
|
int rowCount(const QModelIndex &parent=QModelIndex()) const;
|
|
Qt::ItemFlags flags(const QModelIndex &index) const;
|
|
QVariant data(const QModelIndex &index,int role=Qt::DisplayRole) const;
|
|
QVariant headerData(int section,Qt::Orientation orient,
|
|
int role=Qt::DisplayRole) const;
|
|
QModelIndex indexOf(const QString &card_id) const;
|
|
bool isEnabled(int row) const;
|
|
void setEnabled(int row,bool state);
|
|
bool loadConfig(const QString &filename);
|
|
bool saveConfig(const QString &filename);
|
|
|
|
private:
|
|
void LoadSystemConfig();
|
|
QList<RDAlsaCard *> model_alsa_cards;
|
|
unsigned model_sample_rate;
|
|
QStringList model_other_lines;
|
|
};
|
|
|
|
|
|
#endif // RDALSAMODEL_H
|