Exciting new Alt/h help key provided by sge (Georgy) with many thanks!
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / cdripper / cdripwindow.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #include "cdripwindow.h"
23 #include "language.h"
24 #include "mwindow.inc"
25
26 #include <string.h>
27
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)
31 {
32         this->cdripper = cdripper;
33 // *** CONTEXT_HELP ***
34         if(cdripper) context_help_set_keyword(cdripper->plugin_title());
35         else         context_help_set_keyword("Rendered Audio Effects");
36 }
37
38 CDRipWindow::~CDRipWindow()
39 {
40 }
41
42 void CDRipWindow::create_objects()
43 {
44         int xs10 = xS(10), xs70 = xS(70), xs100 = xS(100);
45         int ys10 = yS(10), ys25 = yS(25), ys30 = yS(30), ys35 = yS(35);
46         int y = ys10, x = xs10;
47         add_tool(new BC_Title(x, y, _("Select the range to transfer:"))); y += ys25;
48         add_tool(new BC_Title(x, y, _("Track:"))); x += xs70;
49         add_tool(new BC_Title(x, y, _("Min."))); x += xs70;
50         add_tool(new BC_Title(x, y, _("Sec."))); x += xs100;
51
52         add_tool(new BC_Title(x, y, _("Track:"))); x += xs70;
53         add_tool(new BC_Title(x, y, _("Min."))); x += xs70;
54         add_tool(new BC_Title(x, y, _("Sec."))); x += xs100;
55
56         x = xs10;  y += ys25;
57         add_tool(track1 = new CDRipTextValue(this, &(cdripper->track1), x, y, 50));
58         x += xs70;
59         add_tool(min1 = new CDRipTextValue(this, &(cdripper->min1), x, y, 50));
60         x += xs70;
61         add_tool(sec1 = new CDRipTextValue(this, &(cdripper->sec1), x, y, 50));
62         x += xs100;
63
64         add_tool(track2 = new CDRipTextValue(this, &(cdripper->track2), x, y, 50));
65         x += xs70;
66         add_tool(min2 = new CDRipTextValue(this, &(cdripper->min2), x, y, 50));
67         x += xs70;
68         add_tool(sec2 = new CDRipTextValue(this, &(cdripper->sec2), x, y, 50));
69
70         x = xs10;   y += ys30;
71         add_tool(new BC_Title(x, y, _("From"), LARGEFONT, RED));
72         x += xS(240);
73         add_tool(new BC_Title(x, y, _("To"), LARGEFONT, RED));
74
75         x = xs10;   y += ys35;
76         add_tool(new BC_Title(x, y, _("CD Device:")));
77         x += xs100;
78         add_tool(device = new CDRipWindowDevice(this, cdripper->device, x, y, 200));
79
80         x = xs10;   y += ys35;
81         add_tool(new BC_OKButton(this));
82         x += xS(300);
83         add_tool(new BC_CancelButton(this));
84         show_window();
85         flush();
86 }
87
88
89
90
91
92
93
94
95 CDRipTextValue::CDRipTextValue(CDRipWindow *window, int *output, int x, int y, int w)
96  : BC_TextBox(x, y, w, 1, *output)
97 {
98         this->output = output;
99         this->window = window;
100 }
101
102 CDRipTextValue::~CDRipTextValue()
103 {
104 }
105
106 int CDRipTextValue::handle_event()
107 {
108         *output = atol(get_text());
109         return 1;
110 }
111
112 CDRipWindowDevice::CDRipWindowDevice(CDRipWindow *window, char *device, int x, int y, int w)
113  : BC_TextBox(x, y, w, 1, device)
114 {
115         this->window = window;
116         this->device = device;
117 }
118
119 CDRipWindowDevice::~CDRipWindowDevice()
120 {
121 }
122
123 int CDRipWindowDevice::handle_event()
124 {
125         strcpy(device, get_text());
126         return 1;
127 }