mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 16:14:03 +01:00 
			
		
		
		
	* Cleaned up 'RDMarkerDialog', 'RDMarkerPlayer' and 'RDMarkerView'. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
		
			
				
	
	
		
			83 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdmarkerdialog.h
 | 
						|
//
 | 
						|
// Rivendell Audio Marker Editor
 | 
						|
//
 | 
						|
//   (C) Copyright 2021 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 RDMARKERDIALOG_H
 | 
						|
#define RDMARKERDIALOG_H
 | 
						|
 | 
						|
#include <QCheckBox>
 | 
						|
#include <QGroupBox>
 | 
						|
#include <QLabel>
 | 
						|
#include <QLineEdit>
 | 
						|
#include <QPushButton>
 | 
						|
#include <QSignalMapper>
 | 
						|
#include <QSpinBox>
 | 
						|
#include <QTimer>
 | 
						|
 | 
						|
#include <rddialog.h>
 | 
						|
#include <rdmarkerplayer.h>
 | 
						|
#include <rdmarkerreadout.h>
 | 
						|
#include <rdmarkerview.h>
 | 
						|
#include <rdstereometer.h>
 | 
						|
#include <rdtransportbutton.h>
 | 
						|
 | 
						|
class RDMarkerDialog : public RDDialog
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
  enum PlayMode {FromStart=1,FromCursor=2,Region=3};
 | 
						|
  enum GainChange {GainNone=0,GainUp=1,GainDown=2};
 | 
						|
  RDMarkerDialog(const QString &caption,int card,int port,QWidget *parent=0);
 | 
						|
  ~RDMarkerDialog();
 | 
						|
  QSize sizeHint() const;
 | 
						|
 | 
						|
 public slots:
 | 
						|
  int exec(unsigned cartnum,int cutnum);
 | 
						|
   
 | 
						|
 private slots:
 | 
						|
  void amplitudeUpData();
 | 
						|
  void amplitudeDownData();
 | 
						|
  void okData();
 | 
						|
  void cancelData();
 | 
						|
 | 
						|
 protected:
 | 
						|
  void closeEvent(QCloseEvent *e);
 | 
						|
  void resizeEvent(QResizeEvent *e);
 | 
						|
 | 
						|
 private:
 | 
						|
  RDMarkerView *d_marker_view;
 | 
						|
  QGroupBox *d_amplitude_box;
 | 
						|
  RDTransportButton *d_amplitude_up_button;
 | 
						|
  RDTransportButton *d_amplitude_down_button;
 | 
						|
  QGroupBox *d_time_box;
 | 
						|
  QPushButton *d_time_fullin_button;
 | 
						|
  RDTransportButton *d_time_in_button;
 | 
						|
  RDTransportButton *d_time_out_button;
 | 
						|
  QPushButton *d_time_fullout_button;
 | 
						|
  RDMarkerPlayer *d_player;
 | 
						|
  QPushButton *d_ok_button;
 | 
						|
  QPushButton *d_cancel_button;
 | 
						|
  unsigned d_cart_number;
 | 
						|
  int d_cut_number;
 | 
						|
  QString d_caption;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // RDMARKERDIALOG_H
 |