mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-05 16:34:09 +02:00
* Modified the full disc ripper in rdlibrary(1) to use CD-Text. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
136 lines
3.9 KiB
C++
136 lines
3.9 KiB
C++
// disk_ripper.h
|
|
//
|
|
// CD Disk Ripper Dialog for Rivendell
|
|
//
|
|
// (C) Copyright 2002-2022 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 DISK_RIPPER_H
|
|
#define DISK_RIPPER_H
|
|
|
|
#include <qprogressbar.h>
|
|
#include <qtextedit.h>
|
|
|
|
#include <qcheckbox.h>
|
|
#include <qdir.h>
|
|
|
|
#include <rdcddblookup.h>
|
|
#include <rdcdplayer.h>
|
|
#include <rddialog.h>
|
|
#include <rdtransportbutton.h>
|
|
#include <rdwavedata_dialog.h>
|
|
|
|
class DiskRipper : public RDDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DiskRipper(QString *filter,QString *group,QString *schedcode,
|
|
bool profile_rip,QWidget *parent=0);
|
|
~DiskRipper();
|
|
QSize sizeHint() const;
|
|
QSizePolicy sizePolicy() const;
|
|
|
|
private slots:
|
|
void ejectButtonData();
|
|
void playButtonData();
|
|
void stopButtonData();
|
|
void ripDiskButtonData();
|
|
void ejectedData();
|
|
void setCutButtonData();
|
|
void setMultiButtonData();
|
|
void setSingleButtonData();
|
|
void modifyCartLabelData();
|
|
void clearSelectionData();
|
|
void mediaChangedData();
|
|
void playedData(int);
|
|
void stoppedData();
|
|
void lookupDoneData(RDDiscLookup::Result,const QString &err_msg);
|
|
void normalizeCheckData(bool);
|
|
void autotrimCheckData(bool);
|
|
void selectionChangedData();
|
|
void openBrowserData();
|
|
void doubleClickedData(Q3ListViewItem *item,const QPoint &pt,int col);
|
|
void closeData();
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *e);
|
|
void closeEvent(QCloseEvent *e);
|
|
|
|
private:
|
|
void FocusSelection(int cart_num);
|
|
void RipTrack(int track,int end_track,QString cutname,QString title);
|
|
void UpdateRipButton();
|
|
QString BuildTrackName(int start_track,int end_track) const;
|
|
void SetArtistAlbum();
|
|
void SendNotification(RDNotification::Action action,unsigned cartnum);
|
|
RDCdPlayer *rip_cdrom;
|
|
RDDiscRecord rip_disc_record;
|
|
RDDiscLookup *rip_disc_lookup;
|
|
QLabel *rip_track_label;
|
|
Q3ListView *rip_track_list;
|
|
QPushButton *rip_rip_button;
|
|
bool rip_rip_aborted;
|
|
QPushButton *rip_close_button;
|
|
QLineEdit *rip_album_edit;
|
|
QLineEdit *rip_artist_edit;
|
|
QTextEdit *rip_other_edit;
|
|
QCheckBox *rip_apply_box;
|
|
QLabel *rip_apply_label;
|
|
QPushButton *rip_browser_button;
|
|
QLabel *rip_browser_label;
|
|
RDTransportButton *rip_eject_button;
|
|
RDTransportButton *rip_play_button;
|
|
RDTransportButton *rip_stop_button;
|
|
QPushButton *rip_setcut_button;
|
|
QPushButton *rip_setall_button;
|
|
QPushButton *rip_setsingle_button;
|
|
QPushButton *rip_cartlabel_button;
|
|
QPushButton *rip_clear_button;
|
|
QString rip_cutname;
|
|
QString rip_track;
|
|
QString rip_title;
|
|
QLabel *rip_diskbar_label;
|
|
QProgressBar *rip_disk_bar;
|
|
QLabel *rip_trackbar_label;
|
|
QProgressBar *rip_track_bar;
|
|
QCheckBox *rip_normalize_box;
|
|
QSpinBox *rip_normalize_spin;
|
|
QLabel *rip_normalize_label;
|
|
QLabel *rip_normalize_unit;
|
|
QLabel *rip_channels_label;
|
|
QComboBox *rip_channels_box;
|
|
int rip_track_number;
|
|
QLabel *rip_autotrimbox_label;
|
|
QLabel *rip_normalizebox_label;
|
|
QCheckBox *rip_autotrim_box;
|
|
QSpinBox *rip_autotrim_spin;
|
|
QLabel *rip_autotrim_label;
|
|
QLabel *rip_autotrim_unit;
|
|
bool rip_done;
|
|
QString *rip_filter_text;
|
|
QString *rip_group_text;
|
|
QString *rip_schedcode_text;
|
|
std::vector<QString> rip_cutnames;
|
|
std::vector<int> rip_end_track;
|
|
std::vector<RDWaveData *> rip_wave_datas;
|
|
bool rip_aborting;
|
|
bool rip_profile_rip;
|
|
RDWaveDataDialog *rip_wavedata_dialog;
|
|
};
|
|
|
|
|
|
#endif // DISK_RIPPER_H
|