mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-03 23:53:59 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			82 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			82 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdalsaconfig.h
 | 
						|
//
 | 
						|
// A Qt-based application to display info about ALSA cards.
 | 
						|
//
 | 
						|
//   (C) Copyright 2009,2016 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 RDALSACONFIG_H
 | 
						|
#define RDALSACONFIG_H
 | 
						|
 | 
						|
#include <qwidget.h>
 | 
						|
#include <qlistbox.h>
 | 
						|
#include <qlabel.h>
 | 
						|
 | 
						|
#include <rdtransportbutton.h>
 | 
						|
 | 
						|
#include <rd.h>
 | 
						|
#include <rdalsa.h>
 | 
						|
 | 
						|
#define RDALSACONFIG_USAGE "[--asoundrc-file=<filename>] [--autogen] [--manage-daemons]\n\nGenerate an ALSA sound card configuration for Rivendell.\n\nThe following options are available:\n\n --asoundrc-file=<filename>\n     Read and write configuration from <filename> (default value \n     \"/etc/asound.conf\").\n\n --autogen\n     Generate and save a configuration containing all available PCM devices\n     and then exit.\n\n --manage-daemons\n     Restart the Rivendell daemons as necessary to make configuration\n     changes active (requires root permission).\n\n"
 | 
						|
 | 
						|
void StopDaemons();
 | 
						|
void StartDaemons();
 | 
						|
 | 
						|
class MainWidget : public QWidget
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
  MainWidget(QWidget *parent=0);
 | 
						|
  ~MainWidget();
 | 
						|
  QSize sizeHint() const;
 | 
						|
  QSizePolicy sizePolicy() const;
 | 
						|
 | 
						|
 private slots:
 | 
						|
  void upData();
 | 
						|
  void downData();
 | 
						|
  void saveData();
 | 
						|
  void cancelData();
 | 
						|
 | 
						|
 protected:
 | 
						|
  void resizeEvent(QResizeEvent *e);
 | 
						|
  void closeEvent(QCloseEvent *e);
 | 
						|
 | 
						|
 private:
 | 
						|
  void LoadList(QListBox *system,QListBox *config);
 | 
						|
  bool PcmUnused(int card,int device);
 | 
						|
  void MoveItem(QListBox *src,QListBox *dest);
 | 
						|
  QLabel *alsa_system_label;
 | 
						|
  QListBox *alsa_system_list;
 | 
						|
  QLabel *alsa_config_label;
 | 
						|
  QListBox *alsa_config_list;
 | 
						|
  RDTransportButton *alsa_up_button;
 | 
						|
  RDTransportButton *alsa_down_button;
 | 
						|
  QPushButton *alsa_save_button;
 | 
						|
  QPushButton *alsa_cancel_button;
 | 
						|
  RDAlsa *alsa_alsa;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
class Autogen : public QObject
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
  Autogen(QObject *parent=0);
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // RDALSACONFIG_H
 |