X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fplugins%2Fcdripper%2Fcdripwindow.C;h=ec71baff922927c4d0cf858d5196a7ceacc0b293;hb=1e154071bd323f756625f8172ef67133a561450a;hp=8bb88ac24ef8a8ee561ade499e4974676fdad882;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/plugins/cdripper/cdripwindow.C b/cinelerra-5.1/plugins/cdripper/cdripwindow.C index 8bb88ac2..ec71baff 100644 --- a/cinelerra-5.1/plugins/cdripper/cdripwindow.C +++ b/cinelerra-5.1/plugins/cdripper/cdripwindow.C @@ -2,21 +2,21 @@ /* * CINELERRA * Copyright (C) 2008 Adam Williams - * + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * + * */ #include "cdripwindow.h" @@ -26,10 +26,10 @@ #include CDRipWindow::CDRipWindow(CDRipMain *cdripper, int x, int y) - : BC_Window(_(PROGRAM_NAME ": CD Ripper"), + : BC_Window(_(PROGRAM_NAME ": CD Ripper"), x, y, 450, 230, 450, 230, 0, 0, 1) -{ - this->cdripper = cdripper; +{ + this->cdripper = cdripper; } CDRipWindow::~CDRipWindow() @@ -41,13 +41,13 @@ void CDRipWindow::create_objects() int y = 10, x = 10; add_tool(new BC_Title(x, y, _("Select the range to transfer:"))); y += 25; add_tool(new BC_Title(x, y, _("Track"))); x += 70; - add_tool(new BC_Title(x, y, _("Min"))); x += 70; - add_tool(new BC_Title(x, y, _("Sec"))); x += 100; + add_tool(new BC_Title(x, y, _("Min."))); x += 70; + add_tool(new BC_Title(x, y, _("Sec."))); x += 100; add_tool(new BC_Title(x, y, _("Track"))); x += 70; - add_tool(new BC_Title(x, y, _("Min"))); x += 70; - add_tool(new BC_Title(x, y, _("Sec"))); x += 100; - + add_tool(new BC_Title(x, y, _("Min."))); x += 70; + add_tool(new BC_Title(x, y, _("Sec."))); x += 100; + x = 10; y += 25; add_tool(track1 = new CDRipTextValue(this, &(cdripper->track1), x, y, 50)); x += 70; @@ -55,7 +55,7 @@ void CDRipWindow::create_objects() x += 70; add_tool(sec1 = new CDRipTextValue(this, &(cdripper->sec1), x, y, 50)); x += 100; - + add_tool(track2 = new CDRipTextValue(this, &(cdripper->track2), x, y, 50)); x += 70; add_tool(min2 = new CDRipTextValue(this, &(cdripper->min2), x, y, 50)); @@ -97,7 +97,7 @@ CDRipTextValue::CDRipTextValue(CDRipWindow *window, int *output, int x, int y, i CDRipTextValue::~CDRipTextValue() { } - + int CDRipTextValue::handle_event() { *output = atol(get_text());