4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "cdripwindow.h"
24 #include "mwindow.inc"
28 CDRipWindow::CDRipWindow(CDRipMain *cdripper, int x, int y)
29 : BC_Window(_(PROGRAM_NAME ": CD Ripper"),
30 x, y, xS(450), yS(230), xS(450), yS(230), 0, 0, 1)
32 this->cdripper = cdripper;
35 CDRipWindow::~CDRipWindow()
39 void CDRipWindow::create_objects()
41 int xs10 = xS(10), xs70 = xS(70), xs100 = xS(100);
42 int ys10 = yS(10), ys25 = yS(25), ys30 = yS(30), ys35 = yS(35);
43 int y = ys10, x = xs10;
44 add_tool(new BC_Title(x, y, _("Select the range to transfer:"))); y += ys25;
45 add_tool(new BC_Title(x, y, _("Track:"))); x += xs70;
46 add_tool(new BC_Title(x, y, _("Min."))); x += xs70;
47 add_tool(new BC_Title(x, y, _("Sec."))); x += xs100;
49 add_tool(new BC_Title(x, y, _("Track:"))); x += xs70;
50 add_tool(new BC_Title(x, y, _("Min."))); x += xs70;
51 add_tool(new BC_Title(x, y, _("Sec."))); x += xs100;
54 add_tool(track1 = new CDRipTextValue(this, &(cdripper->track1), x, y, 50));
56 add_tool(min1 = new CDRipTextValue(this, &(cdripper->min1), x, y, 50));
58 add_tool(sec1 = new CDRipTextValue(this, &(cdripper->sec1), x, y, 50));
61 add_tool(track2 = new CDRipTextValue(this, &(cdripper->track2), x, y, 50));
63 add_tool(min2 = new CDRipTextValue(this, &(cdripper->min2), x, y, 50));
65 add_tool(sec2 = new CDRipTextValue(this, &(cdripper->sec2), x, y, 50));
68 add_tool(new BC_Title(x, y, _("From"), LARGEFONT, RED));
70 add_tool(new BC_Title(x, y, _("To"), LARGEFONT, RED));
73 add_tool(new BC_Title(x, y, _("CD Device:")));
75 add_tool(device = new CDRipWindowDevice(this, cdripper->device, x, y, 200));
78 add_tool(new BC_OKButton(this));
80 add_tool(new BC_CancelButton(this));
92 CDRipTextValue::CDRipTextValue(CDRipWindow *window, int *output, int x, int y, int w)
93 : BC_TextBox(x, y, w, 1, *output)
95 this->output = output;
96 this->window = window;
99 CDRipTextValue::~CDRipTextValue()
103 int CDRipTextValue::handle_event()
105 *output = atol(get_text());
109 CDRipWindowDevice::CDRipWindowDevice(CDRipWindow *window, char *device, int x, int y, int w)
110 : BC_TextBox(x, y, w, 1, device)
112 this->window = window;
113 this->device = device;
116 CDRipWindowDevice::~CDRipWindowDevice()
120 int CDRipWindowDevice::handle_event()
122 strcpy(device, get_text());