X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Floadmode.C;h=41b0f687aa8a6aa7cdf94f525aa1ce3e5c928a77;hb=df72ca6732207dc25472a23169ff79ef6d4cca1c;hp=eada6a59b05db47b4e03a01a318f7311c3791fa9;hpb=30bdb85eb33a8ee7ba675038a86c6be59c43d7bd;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.1/cinelerra/loadmode.C b/cinelerra-5.1/cinelerra/loadmode.C index eada6a59..41b0f687 100644 --- a/cinelerra-5.1/cinelerra/loadmode.C +++ b/cinelerra-5.1/cinelerra/loadmode.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 "clip.h" @@ -29,14 +29,14 @@ // Must match macros static const char *mode_text[] = { - _("Insert nothing"), - _("Replace current project"), - _("Replace current project and concatenate tracks"), - _("Append in new tracks"), - _("Concatenate to existing tracks"), - _("Paste at insertion point"), - _("Create new resources only"), - _("Nest sequence") + N_("Insert nothing"), + N_("Replace current project"), + N_("Replace current project and concatenate tracks"), + N_("Append in new tracks"), + N_("Concatenate to existing tracks"), + N_("Paste at insertion point"), + N_("Create new resources only"), + N_("Nest sequence") }; @@ -47,7 +47,7 @@ LoadModeItem::LoadModeItem(const char *text, int value) } -LoadMode::LoadMode(MWindow *mwindow, BC_WindowBase *window, +LoadMode::LoadMode(MWindow *mwindow, BC_WindowBase *window, int x, int y, int *output, int use_nothing) { this->mwindow = mwindow; @@ -58,9 +58,9 @@ LoadMode::LoadMode(MWindow *mwindow, BC_WindowBase *window, this->use_nothing = use_nothing; int mode = LOADMODE_NOTHING; if(use_nothing) - load_modes.append(new LoadModeItem(mode_text[mode], mode)); + load_modes.append(new LoadModeItem(_(mode_text[mode]), mode)); while( ++mode < TOTAL_LOADMODES ) - load_modes.append(new LoadModeItem(mode_text[mode], mode)); + load_modes.append(new LoadModeItem(_(mode_text[mode]), mode)); } LoadMode::~LoadMode() @@ -87,7 +87,7 @@ char* LoadMode::mode_to_text() { for(int i = 0; i < load_modes.total; i++) { - if(load_modes.values[i]->value == *output) + if(load_modes.values[i]->value == *output) return load_modes.values[i]->get_text(); } return _("Unknown"); @@ -101,7 +101,7 @@ int LoadMode::create_objects() window->add_subwindow(title = new BC_Title(x, y, _("Insertion strategy:"))); y += title->get_h(); - window->add_subwindow(textbox = new BC_TextBox(x, y, + window->add_subwindow(textbox = new BC_TextBox(x, y, mwindow->theme->loadmode_w, 1, default_text)); x += textbox->get_w(); window->add_subwindow(listbox = new LoadModeListBox(window, this, x, y)); @@ -135,16 +135,16 @@ int LoadMode::reposition_window(int x, int y) y += 20; textbox->reposition_window(x, y); x += textbox->get_w(); - listbox->reposition_window(x, - y, + listbox->reposition_window(x, + y, mwindow->theme->loadmode_w); return 0; } -LoadModeListBox::LoadModeListBox(BC_WindowBase *window, - LoadMode *loadmode, - int x, +LoadModeListBox::LoadModeListBox(BC_WindowBase *window, + LoadMode *loadmode, + int x, int y) : BC_ListBox(x, y,