2011-07-27 07:36:15 +02:00
|
|
|
// Copyright (c) 2011, Thomas Goyne <plorkyeran@aegisub.org>
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2011-07-27 07:36:15 +02:00
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2011-07-27 07:36:15 +02:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2006-01-16 22:02:54 +01:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file dialog_translation.cpp
|
|
|
|
/// @brief Translation Assistant dialogue box and logic
|
|
|
|
/// @ingroup tools_ui
|
|
|
|
///
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
#include "dialog_translation.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
|
2011-01-16 08:17:08 +01:00
|
|
|
#include "include/aegisub/context.h"
|
2011-01-05 19:40:37 +01:00
|
|
|
#include "include/aegisub/hotkey.h"
|
Merge the dynamic menu, hotkey and toolbar branch to trunk. This doesn't include Windows support as vs2008 was being a major pain. This involves revisions r4921:4950, r4961:5002, r5005:5006, r5008:5056, r5062:5065, r5072, r5081:5082, r5087, r5096:5110, r5124:5125. Updates #1258.
Originally committed to SVN as r5126.
2011-01-05 14:00:46 +01:00
|
|
|
|
2006-01-16 22:02:54 +01:00
|
|
|
#include "ass_dialogue.h"
|
|
|
|
#include "ass_file.h"
|
2010-12-08 04:36:10 +01:00
|
|
|
#include "audio_controller.h"
|
2011-07-27 07:36:15 +02:00
|
|
|
#include "command/command.h"
|
2008-01-13 23:25:26 +01:00
|
|
|
#include "help_button.h"
|
2009-07-24 02:08:25 +02:00
|
|
|
#include "libresrc/libresrc.h"
|
2011-07-27 07:36:15 +02:00
|
|
|
#include "persist_location.h"
|
|
|
|
#include "scintilla_text_ctrl.h"
|
2010-12-08 04:36:10 +01:00
|
|
|
#include "selection_controller.h"
|
2009-09-10 15:06:40 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "video_context.h"
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
#ifndef AGI_PRE
|
2011-11-30 03:38:42 +01:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
#include <wx/checkbox.h>
|
2011-07-27 19:21:39 +02:00
|
|
|
#include <wx/msgdlg.h>
|
|
|
|
#include <wx/sizer.h>
|
2011-07-27 07:36:15 +02:00
|
|
|
#include <wx/settings.h>
|
|
|
|
#include <wx/stattext.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void add_hotkey(wxSizer *sizer, wxWindow *parent, const char *command, const char *text) {
|
|
|
|
sizer->Add(new wxStaticText(parent, -1, _(text)));
|
|
|
|
sizer->Add(new wxStaticText(parent, -1, hotkey::get_hotkey_str_first("Translation Assistant", command)));
|
|
|
|
}
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
DialogTranslation::DialogTranslation(agi::Context *c)
|
|
|
|
: wxDialog(c->parent, -1, _("Translation Assistant"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER | wxMINIMIZE_BOX, "TranslationAssistant")
|
|
|
|
, c(c)
|
|
|
|
, active_line(c->selectionController->GetActiveLine())
|
|
|
|
, cur_block(0)
|
|
|
|
, line_count(count_if(c->ass->Line.begin(), c->ass->Line.end(), cast<AssDialogue*>()))
|
|
|
|
, line_number(count_if(c->ass->Line.begin(), find(c->ass->Line.begin(), c->ass->Line.end(), active_line), cast<AssDialogue*>()) + 1)
|
2006-01-16 22:02:54 +01:00
|
|
|
{
|
2011-07-27 07:36:15 +02:00
|
|
|
SetIcon(BitmapToIcon(GETIMAGE(translation_toolbutton_16)));
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
wxSizer *main_sizer = new wxBoxSizer(wxVERTICAL);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
wxSizer *translation_sizer = new wxBoxSizer(wxVERTICAL);
|
|
|
|
{
|
|
|
|
wxSizer *original_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Original"));
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
line_number_display = new wxStaticText(this, -1, "");
|
|
|
|
original_box->Add(line_number_display, 0, wxBOTTOM, 5);
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
original_text = new ScintillaTextCtrl(this, -1, "", wxDefaultPosition, wxSize(320, 80));
|
|
|
|
original_text->SetWrapMode(wxSTC_WRAP_WORD);
|
|
|
|
original_text->SetMarginWidth(1, 0);
|
|
|
|
original_text->StyleSetForeground(1, wxColour(10, 60, 200));
|
|
|
|
original_text->SetReadOnly(true);
|
|
|
|
original_box->Add(original_text, 1, wxEXPAND, 0);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
translation_sizer->Add(original_box, 1, wxEXPAND, 0);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
{
|
|
|
|
translated_text = new ScintillaTextCtrl(this, -1, "", wxDefaultPosition, wxSize(320, 80));
|
|
|
|
translated_text->SetWrapMode(wxSTC_WRAP_WORD);
|
|
|
|
translated_text->SetMarginWidth(1, 0);
|
|
|
|
translated_text->SetFocus();
|
|
|
|
translated_text->Bind(wxEVT_KEY_DOWN, &DialogTranslation::OnKeyDown, this);
|
|
|
|
|
|
|
|
wxSizer *translated_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Translation"));
|
|
|
|
translated_box->Add(translated_text, 1, wxEXPAND, 0);
|
|
|
|
translation_sizer->Add(translated_box, 1, wxTOP|wxEXPAND, 5);
|
|
|
|
}
|
|
|
|
main_sizer->Add(translation_sizer, 1, wxALL | wxEXPAND, 5);
|
|
|
|
|
|
|
|
wxSizer *right_box = new wxBoxSizer(wxHORIZONTAL);
|
|
|
|
{
|
|
|
|
wxSizer *hotkey_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Keys"));
|
|
|
|
|
|
|
|
wxSizer *hotkey_grid = new wxGridSizer(2, 0, 5);
|
|
|
|
add_hotkey(hotkey_grid, this, "tool/translation_assistant/commit", "Accept changes");
|
|
|
|
add_hotkey(hotkey_grid, this, "tool/translation_assistant/preview", "Preview changes");
|
|
|
|
add_hotkey(hotkey_grid, this, "tool/translation_assistant/prev", "Previous line");
|
|
|
|
add_hotkey(hotkey_grid, this, "tool/translation_assistant/next", "Next line");
|
|
|
|
add_hotkey(hotkey_grid, this, "tool/translation_assistant/insert_original", "Insert original");
|
|
|
|
add_hotkey(hotkey_grid, this, "video/play/line", "Play Video");
|
|
|
|
add_hotkey(hotkey_grid, this, "audio/play/selection", "Play Audio");
|
|
|
|
hotkey_box->Add(hotkey_grid, 0, wxEXPAND, 0);
|
|
|
|
|
2011-11-18 19:49:09 +01:00
|
|
|
seek_video = new wxCheckBox(this, -1, _("Enable &preview"));
|
2011-07-27 07:36:15 +02:00
|
|
|
seek_video->SetValue(true);
|
|
|
|
hotkey_box->Add(seek_video, 0, wxTOP, 5);
|
|
|
|
|
|
|
|
right_box->Add(hotkey_box, 1, wxRIGHT | wxEXPAND, 5);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
{
|
|
|
|
wxStaticBoxSizer *actions_box = new wxStaticBoxSizer(wxVERTICAL, this, _("Actions"));
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-11-18 19:49:09 +01:00
|
|
|
wxButton *play_audio = new wxButton(this, -1, _("Play &Audio"));
|
2011-07-27 07:36:15 +02:00
|
|
|
play_audio->Enable(c->audioController->IsAudioOpen());
|
|
|
|
play_audio->Bind(wxEVT_COMMAND_BUTTON_CLICKED, &DialogTranslation::OnPlayAudioButton, this);
|
|
|
|
actions_box->Add(play_audio, 0, wxALL, 5);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-11-18 19:49:09 +01:00
|
|
|
wxButton *play_video = new wxButton(this, -1, _("Play &Video"));
|
2011-07-27 07:36:15 +02:00
|
|
|
play_video->Enable(c->videoController->IsLoaded());
|
|
|
|
play_video->Bind(wxEVT_COMMAND_BUTTON_CLICKED, &DialogTranslation::OnPlayVideoButton, this);
|
|
|
|
actions_box->Add(play_video, 0, wxLEFT | wxRIGHT | wxBOTTOM, 5);
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
right_box->Add(actions_box, 0);
|
|
|
|
}
|
|
|
|
main_sizer->Add(right_box, 0, wxLEFT | wxRIGHT | wxBOTTOM | wxEXPAND, 5);
|
|
|
|
|
|
|
|
{
|
|
|
|
wxStdDialogButtonSizer *standard_buttons = new wxStdDialogButtonSizer();
|
|
|
|
standard_buttons->AddButton(new wxButton(this, wxID_CANCEL));
|
|
|
|
standard_buttons->AddButton(new HelpButton(this, "Translation Assistant"));
|
|
|
|
standard_buttons->Realize();
|
|
|
|
main_sizer->Add(standard_buttons, 0, wxALIGN_RIGHT | wxLEFT | wxBOTTOM | wxRIGHT, 5);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
SetSizer(main_sizer);
|
|
|
|
main_sizer->SetSizeHints(this);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
persist.reset(new PersistLocation(this, "Tool/Translation Assistant"));
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
Bind(wxEVT_KEY_DOWN, &DialogTranslation::OnKeyDown, this);
|
|
|
|
active_line->ParseASSTags();
|
|
|
|
UpdateDisplay();
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
DialogTranslation::~DialogTranslation() { }
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
// Skip over override blocks, comments, and whitespace between blocks
|
|
|
|
static bool bad_block(AssDialogueBlock *block) {
|
|
|
|
if (block->GetType() != BLOCK_PLAIN) return true;
|
|
|
|
wxString text = block->GetText();
|
|
|
|
if (text.Trim().Trim(false).empty()) return true;
|
|
|
|
if (text[0] == '{' && text.Last() == '}') return true;
|
|
|
|
return false;
|
|
|
|
}
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
bool DialogTranslation::NextBlock() {
|
|
|
|
do {
|
|
|
|
if (cur_block == active_line->Blocks.size() - 1) {
|
|
|
|
c->selectionController->NextLine();
|
|
|
|
AssDialogue *new_line = c->selectionController->GetActiveLine();
|
|
|
|
if (active_line == new_line || !new_line) return false;
|
|
|
|
|
|
|
|
active_line->ClearBlocks();
|
|
|
|
active_line = new_line;
|
|
|
|
active_line->ParseASSTags();
|
|
|
|
cur_block = 0;
|
|
|
|
++line_number;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2011-07-27 07:36:15 +02:00
|
|
|
else
|
|
|
|
++cur_block;
|
|
|
|
} while (bad_block(active_line->Blocks[cur_block]));
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
UpdateDisplay();
|
|
|
|
return true;
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
bool DialogTranslation::PrevBlock() {
|
|
|
|
do {
|
|
|
|
if (cur_block == 0) {
|
|
|
|
c->selectionController->PrevLine();
|
|
|
|
AssDialogue *new_line = c->selectionController->GetActiveLine();
|
|
|
|
if (active_line == new_line || !new_line) return false;
|
|
|
|
|
|
|
|
active_line->ClearBlocks();
|
|
|
|
active_line = new_line;
|
|
|
|
active_line->ParseASSTags();
|
|
|
|
cur_block = active_line->Blocks.size() - 1;
|
|
|
|
--line_number;
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
2011-07-27 07:36:15 +02:00
|
|
|
else
|
|
|
|
--cur_block;
|
|
|
|
} while (bad_block(active_line->Blocks[cur_block]));
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
UpdateDisplay();
|
|
|
|
return true;
|
|
|
|
}
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
void DialogTranslation::UpdateDisplay() {
|
2011-11-30 03:38:42 +01:00
|
|
|
line_number_display->SetLabel(wxString::Format(_("Current line: %" PRIu64 "/%" PRIu64), line_number, line_count));
|
Merge the dynamic menu, hotkey and toolbar branch to trunk. This doesn't include Windows support as vs2008 was being a major pain. This involves revisions r4921:4950, r4961:5002, r5005:5006, r5008:5056, r5062:5065, r5072, r5081:5082, r5087, r5096:5110, r5124:5125. Updates #1258.
Originally committed to SVN as r5126.
2011-01-05 14:00:46 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
original_text->SetReadOnly(false);
|
|
|
|
original_text->ClearAll();
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
for (size_t i = 0; i < active_line->Blocks.size(); ++i) {
|
|
|
|
AssDialogueBlock *block = active_line->Blocks[i];
|
|
|
|
if (block->GetType() == BLOCK_PLAIN) {
|
|
|
|
int cur_size = original_text->GetReverseUnicodePosition(original_text->GetLength());
|
|
|
|
original_text->AppendText(block->text);
|
|
|
|
if (i == cur_block) {
|
|
|
|
original_text->StartUnicodeStyling(cur_size);
|
|
|
|
original_text->SetUnicodeStyling(cur_size, block->text.size(), 1);
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
}
|
2011-07-27 07:36:15 +02:00
|
|
|
else if (block->GetType() == BLOCK_OVERRIDE)
|
|
|
|
original_text->AppendText("{" + block->text + "}");
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
original_text->SetReadOnly(true);
|
2007-07-16 05:17:11 +02:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
if (seek_video->IsChecked()) c->videoController->JumpToTime(active_line->Start.GetMS());
|
2008-03-07 00:21:03 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
translated_text->ClearAll();
|
|
|
|
translated_text->SetFocus();
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
void DialogTranslation::Commit(bool next) {
|
|
|
|
active_line->Blocks[cur_block]->text = translated_text->GetValue();
|
|
|
|
active_line->UpdateText();
|
2011-09-15 07:16:32 +02:00
|
|
|
c->ass->Commit(_("translation assistant"), AssFile::COMMIT_DIAG_TEXT);
|
2006-01-16 22:02:54 +01:00
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
if (next) {
|
|
|
|
if (!NextBlock()) {
|
|
|
|
wxMessageBox(_("No more lines to translate."));
|
|
|
|
EndModal(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
UpdateDisplay();
|
|
|
|
}
|
2008-05-09 05:43:47 +02:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
void DialogTranslation::InsertOriginal() {
|
|
|
|
translated_text->AddText(active_line->Blocks[cur_block]->GetText());
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
void DialogTranslation::OnKeyDown(wxKeyEvent &evt) {
|
2011-07-30 01:16:55 +02:00
|
|
|
if (!hotkey::check("Translation Assistant", c, evt.GetKeyCode(), evt.GetUnicodeKey(), evt.GetModifiers()))
|
2011-07-27 07:36:15 +02:00
|
|
|
evt.Skip();
|
|
|
|
evt.StopPropagation();
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
void DialogTranslation::OnPlayVideoButton(wxCommandEvent &) {
|
|
|
|
c->videoController->PlayLine();
|
|
|
|
translated_text->SetFocus();
|
2006-01-16 22:02:54 +01:00
|
|
|
}
|
|
|
|
|
2011-07-27 07:36:15 +02:00
|
|
|
void DialogTranslation::OnPlayAudioButton(wxCommandEvent &) {
|
|
|
|
cmd::call("audio/play/selection", c);
|
|
|
|
translated_text->SetFocus();
|
|
|
|
}
|