1 /*  cdrdao - write audio CD-Rs in disc-at-once mode
2  *
3  *  Copyright (C) 2000  Andreas Mueller <mueller@daneb.ping.de>
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19 
20 #ifndef __DUPLICATECDPROJECT_H__
21 #define __DUPLICATECDPROJECT_H__
22 
23 class RecordCDSource;
24 class RecordCDTarget;
25 
26 class DuplicateCDProject : public Project
27 {
28 public:
29   DuplicateCDProject(Gtk::Window *parent);
30   ~DuplicateCDProject();
31   bool closeProject();
32 
33  protected:
createToolbar()34   virtual void createToolbar() {};
35 
36 private:
37   RecordCDSource *CDSource;
38   RecordCDTarget *CDTarget;
39 
40   Gtk::RadioButton *simulate_rb;
41   Gtk::RadioButton *simulateBurn_rb;
42   Gtk::RadioButton *burn_rb;
43 
44   void start();
recordToc2CD()45   void recordToc2CD() {}
projectInfo()46   void projectInfo() {}
47   void update(unsigned long level);
48 };
49 #endif
50