AddFileDialog.cc
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:4k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*  cdrdao - write audio CD-Rs in disc-at-once mode
  2.  *
  3.  *  Copyright (C) 1998  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.  * $Log: AddFileDialog.cc,v $
  21.  * Revision 1.1  1999/09/07 11:17:32  mueller
  22.  * Initial revision
  23.  *
  24.  */
  25. static char rcsid[] = "$Id: AddFileDialog.cc,v 1.1 1999/09/07 11:17:32 mueller Exp mueller $";
  26. #include <stdio.h>
  27. #include <limits.h>
  28. #include <math.h>
  29. #include <assert.h>
  30. #include "AddFileDialog.h"
  31. #include "TocEdit.h"
  32. #include "guiUpdate.h"
  33. #include "Sample.h"
  34. #include "util.h"
  35. AddFileDialog::AddFileDialog() : Gtk_FileSelection(string(""))
  36. {
  37.   tocEdit_ = NULL;
  38.   active_ = 0;
  39.   mode(M_APPEND_TRACK);
  40.   hide_fileop_buttons();
  41.   connect_to_method(get_ok_button()->clicked, this, &AddFileDialog::applyAction);
  42.   connect_to_method(get_cancel_button()->clicked, this, &AddFileDialog::cancelAction);
  43. }
  44. AddFileDialog::~AddFileDialog()
  45. {
  46. }
  47. void AddFileDialog::mode(Mode m)
  48. {
  49.   mode_ = m;
  50.   switch (mode_) {
  51.   case M_APPEND_TRACK:
  52.     set_title(string("Append Track"));
  53.     break;
  54.   case M_APPEND_FILE:
  55.     set_title(string("Append File"));
  56.     break;
  57.   case M_INSERT_FILE:
  58.     set_title(string("Insert File"));
  59.     break;
  60.   }
  61. }
  62. void AddFileDialog::start(TocEdit *tocEdit)
  63. {
  64.   if (active_) {
  65.     get_window().raise();
  66.     return;
  67.   }
  68.   active_ = 1;
  69.   update(UPD_ALL, tocEdit);
  70.   show();
  71. }
  72. void AddFileDialog::stop()
  73. {
  74.   if (active_) {
  75.     hide();
  76.     active_ = 0;
  77.   }
  78. }
  79. void AddFileDialog::update(unsigned long level, TocEdit *tocEdit)
  80. {
  81.   if (!active_)
  82.     return;
  83.   if (tocEdit == NULL) {
  84.     get_ok_button()->set_sensitive(FALSE);
  85.     tocEdit_ = NULL;
  86.     return;
  87.   }
  88.   if ((level & UPD_EDITABLE_STATE) || tocEdit_ == NULL) {
  89.     get_ok_button()->set_sensitive(tocEdit->editable() ? TRUE : FALSE);
  90.   }
  91.   tocEdit_ = tocEdit;
  92. }
  93. gint AddFileDialog::delete_event_impl(GdkEventAny*)
  94. {
  95.   stop();
  96.   return 1;
  97. }
  98. void AddFileDialog::cancelAction()
  99. {
  100.   stop();
  101. }
  102. void AddFileDialog::applyAction()
  103. {
  104.   if (tocEdit_ == NULL || !tocEdit_->editable())
  105.     return;
  106.   string str = get_filename();
  107.   const char *s = stripCwd(str.c_str());
  108.   if (s != NULL && *s != 0 && s[strlen(s) - 1] != '/') {
  109.     unsigned long pos;
  110.     switch (mode_) {
  111.     case M_APPEND_TRACK:
  112.       switch (tocEdit_->appendTrack(s)) {
  113.       case 0:
  114. guiUpdate();
  115. //statusMessage("Appended track with audio data from "%s".", s);
  116. break;
  117.       case 1:
  118. //statusMessage("Cannot open audio file "%s".", s);
  119. break;
  120.       case 2:
  121. //statusMessage("Audio file "%s" has wrong format.", s);
  122. break;
  123.       }
  124.       break;
  125.     case M_APPEND_FILE:
  126.       switch (tocEdit_->appendFile(s)) {
  127.       case 0:
  128. guiUpdate();
  129. //statusMessage("Appended audio data from "%s".", s);
  130.       break;
  131.       case 1:
  132. //statusMessage("Cannot open audio file "%s".", s);
  133. break;
  134.       case 2:
  135. //statusMessage("Audio file "%s" has wrong format.", s);
  136. break;
  137.       }
  138.       break;
  139.     case M_INSERT_FILE:
  140.       if (tocEdit_->sampleMarker(&pos)) {
  141. switch (tocEdit_->insertFile(s, pos)) {
  142. case 0:
  143.   guiUpdate();
  144.   //statusMessage("Inserted audio data from "%s".", s);
  145.   break;
  146. case 1:
  147.   //statusMessage("Cannot open audio file "%s".", s);
  148.   break;
  149. case 2:
  150.   //statusMessage("Audio file "%s" has wrong format.", s);
  151.   break;
  152. }
  153.       }
  154.       break;
  155.     }
  156.     guiUpdate();
  157.   }
  158. }