~ubuntu-branches/ubuntu/lucid/cdrdao/lucid

« back to all changes in this revision

Viewing changes to xdao/RecordHDTarget.cc

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Suffield
  • Date: 2004-06-24 22:33:16 UTC
  • Revision ID: james.westby@ubuntu.com-20040624223316-534onzugaeeyq61j
Tags: upstream-1.1.9
ImportĀ upstreamĀ versionĀ 1.1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  cdrdao - write audio CD-Rs in disc-at-once mode
 
2
 *
 
3
 *  Copyright (C) 1998, 1999  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
#include <stdio.h>
 
21
#include <limits.h>
 
22
#include <math.h>
 
23
#include <assert.h>
 
24
 
 
25
#include <gtkmm.h>
 
26
#include <gnome.h>
 
27
 
 
28
#include "RecordHDTarget.h"
 
29
#include "MessageBox.h"
 
30
#include "xcdrdao.h"
 
31
#include "Settings.h"
 
32
 
 
33
#include "CdDevice.h"
 
34
#include "guiUpdate.h"
 
35
#include "TocEdit.h"
 
36
 
 
37
RecordHDTarget::RecordHDTarget()
 
38
{
 
39
  Gtk::Table *table;
 
40
  Gtk::Label *label;
 
41
 
 
42
  active_ = false;
 
43
 
 
44
  set_spacing(10);
 
45
 
 
46
  // device settings
 
47
  Gtk::Frame *recordOptionsFrame =
 
48
    manage(new Gtk::Frame(_(" Record Options ")));
 
49
 
 
50
  table = manage(new Gtk::Table(2, 2, false));
 
51
  table->set_row_spacings(2);
 
52
  table->set_col_spacings(10);
 
53
  table->set_border_width(5);
 
54
 
 
55
  recordOptionsFrame->add(*table);
 
56
  recordOptionsFrame->show_all();
 
57
  pack_start(*recordOptionsFrame, Gtk::PACK_SHRINK);
 
58
 
 
59
  label = manage(new Gtk::Label(_("Directory: ")));
 
60
  table->attach(*label, 0, 1, 0, 1, Gtk::FILL);
 
61
 
 
62
  dirEntry_ = manage(new Gnome::UI::FileEntry(_("record_hd_target_dir_entry"),
 
63
                                              _("Select Directory for Image")));
 
64
  dirEntry_->set_directory_entry(true);
 
65
 
 
66
  table->attach(*dirEntry_, 1, 2, 0, 1);
 
67
 
 
68
  label = manage(new Gtk::Label(_("Name: ")));
 
69
  table->attach(*label, 0, 1, 1, 2, Gtk::FILL);
 
70
 
 
71
  fileNameEntry_ = manage(new Gtk::Entry);
 
72
  table->attach(*fileNameEntry_, 1, 2, 1, 2);
 
73
}
 
74
 
 
75
void RecordHDTarget::start()
 
76
{
 
77
  active_ = true;
 
78
  update(UPD_ALL);
 
79
  show();
 
80
}
 
81
 
 
82
void RecordHDTarget::stop()
 
83
{
 
84
  if (active_) {
 
85
    hide();
 
86
    active_ = false;
 
87
  }
 
88
}
 
89
 
 
90
void RecordHDTarget::update(unsigned long level)
 
91
{
 
92
  if (!active_)
 
93
    return;
 
94
}
 
95
 
 
96
void RecordHDTarget::cancelAction()
 
97
{
 
98
  stop();
 
99
}
 
100
 
 
101
std::string RecordHDTarget::getFilename()
 
102
{
 
103
  return fileNameEntry_->get_text();
 
104
}
 
105
 
 
106
std::string RecordHDTarget::getPath()
 
107
{
 
108
  Gtk::Entry *entry = static_cast<Gtk::Entry *>(dirEntry_->gtk_entry());
 
109
  return entry->get_text();
 
110
}
 
111