summaryrefslogtreecommitdiffstats
path: root/src/rip/k3bcuefilewriter.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-03 02:15:56 +0000
commit50b48aec6ddd451a6d1709c0942477b503457663 (patch)
treea9ece53ec06fd0a2819de7a2a6de997193566626 /src/rip/k3bcuefilewriter.cpp
downloadk3b-50b48aec6ddd451a6d1709c0942477b503457663.tar.gz
k3b-50b48aec6ddd451a6d1709c0942477b503457663.zip
Added abandoned KDE3 version of K3B
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1084400 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/rip/k3bcuefilewriter.cpp')
-rw-r--r--src/rip/k3bcuefilewriter.cpp91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/rip/k3bcuefilewriter.cpp b/src/rip/k3bcuefilewriter.cpp
new file mode 100644
index 0000000..087002d
--- /dev/null
+++ b/src/rip/k3bcuefilewriter.cpp
@@ -0,0 +1,91 @@
+/*
+ *
+ * $Id: k3bcuefilewriter.cpp 619556 2007-01-03 17:38:12Z trueg $
+ * Copyright (C) 2004 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This file is part of the K3b project.
+ * Copyright (C) 1998-2007 Sebastian Trueg <trueg@k3b.org>
+ *
+ * This program 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.
+ * See the file "COPYING" for the exact licensing terms.
+ */
+
+#include "k3bcuefilewriter.h"
+
+#include <k3btrack.h>
+#include <k3bmsf.h>
+#include <k3bcore.h>
+#include <k3bversion.h>
+
+#include <qfile.h>
+#include <qtextstream.h>
+#include <qdatetime.h>
+
+
+K3bCueFileWriter::K3bCueFileWriter()
+{
+}
+
+
+bool K3bCueFileWriter::save( const QString& filename )
+{
+ QFile f( filename );
+
+ if( !f.open( IO_WriteOnly ) ) {
+ kdDebug() << "(K3bCueFileWriter) could not open file " << f.name() << endl;
+ return false;
+ }
+
+ QTextStream s( &f );
+
+ return save( s );
+}
+
+
+bool K3bCueFileWriter::save( QTextStream& t )
+{
+ t << "REM Cue file written by K3b " << k3bcore->version() << endl
+ << endl;
+
+ if( !m_cdText.isEmpty() ) {
+ t << "PERFORMER \"" << m_cdText.performer() << "\"" << endl;
+ t << "TITLE \"" << m_cdText.title() << "\"" << endl;
+ }
+
+ t << "FILE \"" << m_image << "\" " << m_dataType.upper() << endl;
+
+ // the tracks
+ unsigned int i = 0;
+ for( K3bDevice::Toc::const_iterator it = m_toc.begin();
+ it != m_toc.end(); ++it ) {
+
+ const K3bDevice::Track& track = *it;
+
+ t << " TRACK " << QString::number(i+1).rightJustify( 2, '0' ) << " AUDIO" << endl;
+
+ if( m_cdText.count() > i && !m_cdText[i].isEmpty() ) {
+ t << " PERFORMER \"" << m_cdText[i].performer() << "\"" << endl;
+ t << " TITLE \"" << m_cdText[i].title() << "\"" << endl;
+ }
+
+ //
+ // the pregap is part of the current track like in toc files
+ // and not part of the last track as on the CD
+ //
+ if( i > 0 ) {
+ --it;
+ if( (*it).index0() > 0 )
+ t << " INDEX 00 " << ((*it).firstSector() + (*it).index0()).toString() << endl;
+ ++it;
+ }
+ t << " INDEX 01 " << track.firstSector().toString() << endl;
+ // TODO: add additional indices
+
+ i++;
+ }
+
+ return ( t.device()->status() == IO_Ok );
+}