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
|
|
|
// Copyright (c) 2005-2010, Niels Martin Hansen
|
|
|
|
// Copyright (c) 2005-2010, Rodrigo Braz Monteiro
|
|
|
|
// Copyright (c) 2010, Amar Takhar
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
|
|
|
// Aegisub Project http://www.aegisub.org/
|
|
|
|
|
|
|
|
#include "command.h"
|
|
|
|
|
2011-01-18 07:01:29 +01:00
|
|
|
#include "../ass_dialogue.h"
|
2011-01-05 19:40:37 +01:00
|
|
|
#include "../ass_file.h"
|
2011-09-28 21:44:07 +02:00
|
|
|
#include "../ass_karaoke.h"
|
2012-10-09 04:07:54 +02:00
|
|
|
#include "../ass_style.h"
|
2012-12-30 00:53:56 +01:00
|
|
|
#include "../compat.h"
|
2011-01-05 19:40:37 +01:00
|
|
|
#include "../dialog_search_replace.h"
|
2014-05-22 21:07:15 +02:00
|
|
|
#include "../dialogs.h"
|
2011-01-05 19:40:37 +01:00
|
|
|
#include "../include/aegisub/context.h"
|
2012-10-12 01:46:53 +02:00
|
|
|
#include "../initial_line_state.h"
|
2013-12-25 22:36:37 +01:00
|
|
|
#include "../libresrc/libresrc.h"
|
2013-01-07 02:50:09 +01:00
|
|
|
#include "../options.h"
|
2014-05-22 01:23:28 +02:00
|
|
|
#include "../project.h"
|
2013-06-19 04:28:11 +02:00
|
|
|
#include "../selection_controller.h"
|
2013-01-26 02:57:46 +01:00
|
|
|
#include "../subs_controller.h"
|
2012-10-09 04:07:54 +02:00
|
|
|
#include "../text_selection_controller.h"
|
2012-10-25 17:13:13 +02:00
|
|
|
#include "../utils.h"
|
2014-05-22 01:23:28 +02:00
|
|
|
#include "../video_controller.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
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
#include <libaegisub/address_of_adaptor.h>
|
2014-05-29 00:19:05 +02:00
|
|
|
#include <libaegisub/format.h>
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <libaegisub/of_type_adaptor.h>
|
2014-04-23 22:53:24 +02:00
|
|
|
#include <libaegisub/make_unique.h>
|
2013-01-04 16:01:50 +01:00
|
|
|
|
|
|
|
#include <algorithm>
|
2013-06-19 04:24:45 +02:00
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
#include <boost/range/algorithm.hpp>
|
2012-11-03 05:24:11 +01:00
|
|
|
#include <boost/range/adaptor/filtered.hpp>
|
2014-04-14 19:58:46 +02:00
|
|
|
#include <boost/range/adaptor/indirected.hpp>
|
2012-11-05 17:20:58 +01:00
|
|
|
#include <boost/range/adaptor/reversed.hpp>
|
2012-12-02 19:24:49 +01:00
|
|
|
#include <boost/range/adaptor/sliced.hpp>
|
2012-11-03 05:24:11 +01:00
|
|
|
#include <boost/range/adaptor/transformed.hpp>
|
2014-05-23 00:40:16 +02:00
|
|
|
#include <boost/regex.hpp>
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <boost/tokenizer.hpp>
|
2012-11-05 17:20:58 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
#include <wx/clipbrd.h>
|
|
|
|
#include <wx/fontdlg.h>
|
2014-05-23 00:40:16 +02:00
|
|
|
#include <wx/textentry.h>
|
2012-11-05 17:20:58 +01:00
|
|
|
|
2011-07-15 06:05:01 +02:00
|
|
|
namespace {
|
2012-12-02 19:24:49 +01:00
|
|
|
using namespace boost::adaptors;
|
2011-07-15 06:05:01 +02:00
|
|
|
using cmd::Command;
|
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-15 06:05:22 +02:00
|
|
|
struct validate_sel_nonempty : public Command {
|
2011-07-15 06:05:56 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE)
|
2013-11-21 18:13:36 +01:00
|
|
|
bool Validate(const agi::Context *c) override {
|
2011-07-15 06:05:22 +02:00
|
|
|
return c->selectionController->GetSelectedSet().size() > 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-18 02:21:23 +01:00
|
|
|
struct validate_video_and_sel_nonempty : public Command {
|
|
|
|
CMD_TYPE(COMMAND_VALIDATE)
|
2013-11-21 18:13:36 +01:00
|
|
|
bool Validate(const agi::Context *c) override {
|
2014-05-22 01:23:28 +02:00
|
|
|
return c->project->VideoProvider() && !c->selectionController->GetSelectedSet().empty();
|
2013-11-18 02:21:23 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-07-15 06:05:22 +02:00
|
|
|
struct validate_sel_multiple : public Command {
|
2011-07-15 06:05:56 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE)
|
2013-11-21 18:13:36 +01:00
|
|
|
bool Validate(const agi::Context *c) override {
|
2011-07-15 06:05:22 +02:00
|
|
|
return c->selectionController->GetSelectedSet().size() > 1;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-14 01:55:39 +01:00
|
|
|
template<typename Paster>
|
|
|
|
void paste_lines(agi::Context *c, bool paste_over, Paster&& paste_line) {
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string data = GetClipboard();
|
|
|
|
if (data.empty()) return;
|
2012-10-14 06:21:43 +02:00
|
|
|
|
2013-01-14 01:55:39 +01:00
|
|
|
AssDialogue *first = nullptr;
|
2014-03-25 01:15:14 +01:00
|
|
|
Selection newsel;
|
2012-10-14 06:21:43 +02:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
boost::char_separator<char> sep("\r\n");
|
|
|
|
for (auto curdata : boost::tokenizer<boost::char_separator<char>>(data, sep)) {
|
|
|
|
boost::trim(curdata);
|
2012-10-14 06:21:43 +02:00
|
|
|
AssDialogue *curdiag;
|
|
|
|
try {
|
|
|
|
// Try to interpret the line as an ASS line
|
|
|
|
curdiag = new AssDialogue(curdata);
|
|
|
|
}
|
|
|
|
catch (...) {
|
|
|
|
// Line didn't parse correctly, assume it's plain text that
|
|
|
|
// should be pasted in the Text field only
|
2013-01-14 01:55:39 +01:00
|
|
|
curdiag = new AssDialogue;
|
2013-01-17 23:04:50 +01:00
|
|
|
curdiag->End = 0;
|
2012-10-14 06:21:43 +02:00
|
|
|
curdiag->Text = curdata;
|
|
|
|
}
|
|
|
|
|
2013-01-14 01:55:39 +01:00
|
|
|
AssDialogue *inserted = paste_line(curdiag);
|
|
|
|
if (!inserted)
|
|
|
|
break;
|
2012-10-14 06:21:43 +02:00
|
|
|
|
2013-01-14 01:55:39 +01:00
|
|
|
newsel.insert(inserted);
|
|
|
|
if (!first)
|
|
|
|
first = inserted;
|
2012-10-14 06:21:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (first) {
|
|
|
|
c->ass->Commit(_("paste"), paste_over ? AssFile::COMMIT_DIAG_FULL : AssFile::COMMIT_DIAG_ADDREM);
|
|
|
|
|
|
|
|
if (!paste_over)
|
2014-03-12 23:10:47 +01:00
|
|
|
c->selectionController->SetSelectionAndActive(std::move(newsel), first);
|
2012-10-14 06:21:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-14 01:55:39 +01:00
|
|
|
AssDialogue *paste_over(wxWindow *parent, std::vector<bool>& pasteOverOptions, AssDialogue *new_line, AssDialogue *old_line) {
|
|
|
|
if (pasteOverOptions.empty()) {
|
2014-05-22 21:07:15 +02:00
|
|
|
if (!ShowPasteOverDialog(parent)) return nullptr;
|
2013-01-14 01:55:39 +01:00
|
|
|
pasteOverOptions = OPT_GET("Tool/Paste Lines Over/Fields")->GetListBool();
|
|
|
|
}
|
|
|
|
|
2014-05-05 16:01:57 +02:00
|
|
|
if (pasteOverOptions[0]) old_line->Comment = new_line->Comment;
|
|
|
|
if (pasteOverOptions[1]) old_line->Layer = new_line->Layer;
|
|
|
|
if (pasteOverOptions[2]) old_line->Start = new_line->Start;
|
|
|
|
if (pasteOverOptions[3]) old_line->End = new_line->End;
|
|
|
|
if (pasteOverOptions[4]) old_line->Style = new_line->Style;
|
|
|
|
if (pasteOverOptions[5]) old_line->Actor = new_line->Actor;
|
|
|
|
if (pasteOverOptions[6]) old_line->Margin[0] = new_line->Margin[0];
|
|
|
|
if (pasteOverOptions[7]) old_line->Margin[1] = new_line->Margin[1];
|
|
|
|
if (pasteOverOptions[8]) old_line->Margin[2] = new_line->Margin[2];
|
|
|
|
if (pasteOverOptions[9]) old_line->Effect = new_line->Effect;
|
|
|
|
if (pasteOverOptions[10]) old_line->Text = new_line->Text;
|
2013-01-14 01:55:39 +01:00
|
|
|
|
|
|
|
return old_line;
|
|
|
|
}
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
struct parsed_line {
|
|
|
|
AssDialogue *line;
|
|
|
|
std::vector<std::unique_ptr<AssDialogueBlock>> blocks;
|
|
|
|
|
|
|
|
parsed_line(AssDialogue *line) : line(line), blocks(line->ParseTags()) { }
|
2014-04-15 20:08:50 +02:00
|
|
|
#ifdef _MSC_VER
|
2014-04-15 15:18:49 +02:00
|
|
|
parsed_line(parsed_line&& r) : line(r.line), blocks(std::move(r.blocks)) { }
|
2014-04-15 20:08:50 +02:00
|
|
|
#else
|
|
|
|
parsed_line(parsed_line&& r) = default;
|
|
|
|
#endif
|
2014-04-15 15:18:49 +02:00
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
T get_value(int blockn, T initial, std::string const& tag_name, std::string alt = "") const {
|
|
|
|
for (auto ovr : blocks | sliced(0, blockn + 1) | reversed | agi::of_type<AssDialogueBlockOverride>()) {
|
|
|
|
for (auto const& tag : ovr->Tags | reversed) {
|
|
|
|
if (tag.Name == tag_name || tag.Name == alt)
|
|
|
|
return tag.Params[0].template Get<T>(initial);
|
|
|
|
}
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
2014-04-15 15:18:49 +02:00
|
|
|
return initial;
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
2013-11-03 14:38:13 +01:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
int block_at_pos(int pos) const {
|
|
|
|
auto const& text = line->Text.get();
|
|
|
|
int n = 0;
|
|
|
|
int max = text.size() - 1;
|
|
|
|
bool in_block = false;
|
|
|
|
|
|
|
|
for (int i = 0; i <= max; ++i) {
|
|
|
|
if (text[i] == '{') {
|
|
|
|
if (!in_block && i > 0 && pos >= 0)
|
|
|
|
++n;
|
|
|
|
in_block = true;
|
|
|
|
}
|
|
|
|
else if (text[i] == '}' && in_block) {
|
|
|
|
in_block = false;
|
|
|
|
if (pos > 0 && (i + 1 == max || text[i + 1] != '{'))
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
else if (!in_block) {
|
|
|
|
if (--pos == 0)
|
|
|
|
return n + (i < max && text[i + 1] == '{');
|
|
|
|
}
|
2013-11-03 14:38:13 +01:00
|
|
|
}
|
2014-04-15 15:18:49 +02:00
|
|
|
|
|
|
|
return n - in_block;
|
2013-11-03 14:38:13 +01:00
|
|
|
}
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
int set_tag(std::string const& tag, std::string const& value, int norm_pos, int orig_pos) {
|
|
|
|
int blockn = block_at_pos(norm_pos);
|
|
|
|
|
|
|
|
AssDialogueBlockPlain *plain = nullptr;
|
|
|
|
AssDialogueBlockOverride *ovr = nullptr;
|
|
|
|
while (blockn >= 0 && !plain && !ovr) {
|
|
|
|
AssDialogueBlock *block = blocks[blockn].get();
|
|
|
|
switch (block->GetType()) {
|
|
|
|
case AssBlockType::PLAIN:
|
|
|
|
plain = static_cast<AssDialogueBlockPlain *>(block);
|
|
|
|
break;
|
|
|
|
case AssBlockType::DRAWING:
|
|
|
|
--blockn;
|
|
|
|
break;
|
|
|
|
case AssBlockType::COMMENT:
|
|
|
|
--blockn;
|
|
|
|
orig_pos = line->Text.get().rfind('{', orig_pos);
|
|
|
|
break;
|
|
|
|
case AssBlockType::OVERRIDE:
|
|
|
|
ovr = static_cast<AssDialogueBlockOverride*>(block);
|
2013-11-03 14:38:13 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
// If we didn't hit a suitable block for inserting the override just put
|
|
|
|
// it at the beginning of the line
|
|
|
|
if (blockn < 0)
|
|
|
|
orig_pos = 0;
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
std::string insert(tag + value);
|
|
|
|
int shift = insert.size();
|
|
|
|
if (plain || blockn < 0) {
|
|
|
|
line->Text = line->Text.get().substr(0, orig_pos) + "{" + insert + "}" + line->Text.get().substr(orig_pos);
|
|
|
|
shift += 2;
|
|
|
|
blocks = line->ParseTags();
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
2014-04-15 15:18:49 +02:00
|
|
|
else if (ovr) {
|
|
|
|
std::string alt;
|
|
|
|
if (tag == "\\c") alt = "\\1c";
|
|
|
|
// Remove old of same
|
|
|
|
bool found = false;
|
|
|
|
for (size_t i = 0; i < ovr->Tags.size(); i++) {
|
|
|
|
std::string const& name = ovr->Tags[i].Name;
|
|
|
|
if (tag == name || alt == name) {
|
|
|
|
shift -= ((std::string)ovr->Tags[i]).size();
|
|
|
|
if (found) {
|
|
|
|
ovr->Tags.erase(ovr->Tags.begin() + i);
|
|
|
|
i--;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
ovr->Tags[i].Params[0].Set(value);
|
|
|
|
found = true;
|
|
|
|
}
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
}
|
2014-04-15 15:18:49 +02:00
|
|
|
if (!found)
|
|
|
|
ovr->AddTag(insert);
|
|
|
|
|
|
|
|
line->UpdateText(blocks);
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
2014-04-15 15:18:49 +02:00
|
|
|
else
|
|
|
|
assert(false);
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
return shift;
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
2014-04-15 15:18:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int normalize_pos(std::string const& text, int pos) {
|
|
|
|
int plain_len = 0;
|
|
|
|
bool in_block = false;
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
for (int i = 0, max = text.size() - 1; i < pos && i <= max; ++i) {
|
|
|
|
if (text[i] == '{')
|
|
|
|
in_block = true;
|
|
|
|
if (!in_block)
|
|
|
|
++plain_len;
|
|
|
|
if (text[i] == '}' && in_block)
|
|
|
|
in_block = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return plain_len;
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
|
2014-04-14 21:05:19 +02:00
|
|
|
template<typename Func>
|
|
|
|
void update_lines(const agi::Context *c, wxString const& undo_msg, Func&& f) {
|
2014-04-15 15:18:49 +02:00
|
|
|
const auto active_line = c->selectionController->GetActiveLine();
|
2014-04-15 02:30:46 +02:00
|
|
|
const int sel_start = c->textSelectionController->GetSelectionStart();
|
|
|
|
const int sel_end = c->textSelectionController->GetSelectionEnd();
|
2014-04-15 15:18:49 +02:00
|
|
|
const int norm_sel_start = normalize_pos(active_line->Text, sel_start);
|
|
|
|
const int norm_sel_end = normalize_pos(active_line->Text, sel_end);
|
2014-04-15 02:30:46 +02:00
|
|
|
int active_sel_shift = 0;
|
2014-04-14 21:05:19 +02:00
|
|
|
|
|
|
|
for (const auto line : c->selectionController->GetSelectedSet()) {
|
2014-04-15 15:18:49 +02:00
|
|
|
int shift = f(line, sel_start, sel_end, norm_sel_start, norm_sel_end);
|
2014-04-15 02:30:46 +02:00
|
|
|
if (line == active_line)
|
|
|
|
active_sel_shift = shift;
|
2014-04-14 21:05:19 +02:00
|
|
|
}
|
|
|
|
|
2014-03-25 01:15:14 +01:00
|
|
|
auto const& sel = c->selectionController->GetSelectedSet();
|
2014-04-14 21:05:19 +02:00
|
|
|
c->ass->Commit(undo_msg, AssFile::COMMIT_DIAG_TEXT, -1, sel.size() == 1 ? *sel.begin() : nullptr);
|
2014-04-15 02:30:46 +02:00
|
|
|
if (active_sel_shift != 0)
|
|
|
|
c->textSelectionController->SetSelection(sel_start + active_sel_shift, sel_end + active_sel_shift);
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void toggle_override_tag(const agi::Context *c, bool (AssStyle::*field), const char *tag, wxString const& undo_msg) {
|
2014-04-15 15:18:49 +02:00
|
|
|
update_lines(c, undo_msg, [&](AssDialogue *line, int sel_start, int sel_end, int norm_sel_start, int norm_sel_end) {
|
2014-04-14 21:05:19 +02:00
|
|
|
AssStyle const* const style = c->ass->GetStyle(line->Style);
|
|
|
|
bool state = style ? style->*field : AssStyle().*field;
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
parsed_line parsed(line);
|
|
|
|
int blockn = parsed.block_at_pos(norm_sel_start);
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
state = parsed.get_value(blockn, state, tag);
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
int shift = parsed.set_tag(tag, state ? "0" : "1", norm_sel_start, sel_start);
|
2014-04-14 21:05:19 +02:00
|
|
|
if (sel_start != sel_end)
|
2014-04-15 15:18:49 +02:00
|
|
|
parsed.set_tag(tag, state ? "1" : "0", norm_sel_end, sel_end + shift);
|
2014-04-15 02:30:46 +02:00
|
|
|
return shift;
|
2014-04-14 21:05:19 +02:00
|
|
|
});
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
|
2013-01-10 15:54:41 +01:00
|
|
|
void show_color_picker(const agi::Context *c, agi::Color (AssStyle::*field), const char *tag, const char *alt, const char *alpha) {
|
2014-04-14 21:05:19 +02:00
|
|
|
agi::Color initial_color;
|
|
|
|
const auto active_line = c->selectionController->GetActiveLine();
|
2014-04-15 15:18:49 +02:00
|
|
|
const int sel_start = c->textSelectionController->GetSelectionStart();
|
|
|
|
const int sel_end = c->textSelectionController->GetSelectionStart();
|
|
|
|
const int norm_sel_start = normalize_pos(active_line->Text, sel_start);
|
2014-04-14 21:05:19 +02:00
|
|
|
|
|
|
|
auto const& sel = c->selectionController->GetSelectedSet();
|
2014-04-15 15:18:49 +02:00
|
|
|
using line_info = std::pair<agi::Color, parsed_line>;
|
2014-04-14 21:05:19 +02:00
|
|
|
std::vector<line_info> lines;
|
|
|
|
for (auto line : sel) {
|
|
|
|
AssStyle const* const style = c->ass->GetStyle(line->Style);
|
|
|
|
agi::Color color = (style ? style->*field : AssStyle().*field);
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
parsed_line parsed(line);
|
|
|
|
int blockn = parsed.block_at_pos(norm_sel_start);
|
2014-04-14 21:05:19 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
int a = parsed.get_value(blockn, (int)color.a, alpha, "\\alpha");
|
|
|
|
color = parsed.get_value(blockn, color, tag, alt);
|
2014-04-14 21:05:19 +02:00
|
|
|
color.a = a;
|
|
|
|
|
|
|
|
if (line == active_line)
|
|
|
|
initial_color = color;
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
lines.emplace_back(color, std::move(parsed));
|
2014-04-14 21:05:19 +02:00
|
|
|
}
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
int active_shift = 0;
|
2012-10-09 04:07:54 +02:00
|
|
|
int commit_id = -1;
|
2014-04-14 21:05:19 +02:00
|
|
|
bool ok = GetColorFromUser(c->parent, initial_color, true, [&](agi::Color new_color) {
|
|
|
|
for (auto& line : lines) {
|
2014-04-15 15:18:49 +02:00
|
|
|
int shift = line.second.set_tag(tag, new_color.GetAssOverrideFormatted(), norm_sel_start, sel_start);
|
|
|
|
if (new_color.a != line.first.a) {
|
2014-05-29 00:19:05 +02:00
|
|
|
shift += line.second.set_tag(alpha, agi::format("&H%02X&", (int)new_color.a), norm_sel_start, sel_start + shift);
|
2014-04-15 15:18:49 +02:00
|
|
|
line.first.a = new_color.a;
|
2014-04-14 21:05:19 +02:00
|
|
|
}
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
if (line.second.line == active_line)
|
|
|
|
active_shift = shift;
|
2013-01-13 20:24:45 +01:00
|
|
|
}
|
2014-04-14 21:05:19 +02:00
|
|
|
|
|
|
|
commit_id = c->ass->Commit(_("set color"), AssFile::COMMIT_DIAG_TEXT, commit_id, sel.size() == 1 ? *sel.begin() : nullptr);
|
2014-04-15 15:18:49 +02:00
|
|
|
if (active_shift)
|
|
|
|
c->textSelectionController->SetSelection(sel_start + active_shift, sel_start + active_shift);
|
2012-12-02 19:24:49 +01:00
|
|
|
});
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2014-05-05 15:28:27 +02:00
|
|
|
if (!ok && commit_id != -1) {
|
2013-01-26 02:57:46 +01:00
|
|
|
c->subsController->Undo();
|
2014-04-15 02:30:46 +02:00
|
|
|
c->textSelectionController->SetSelection(sel_start, sel_end);
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_color_primary final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/color/primary")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_color_one)
|
2012-10-09 04:07:54 +02:00
|
|
|
STR_MENU("Primary Color...")
|
|
|
|
STR_DISP("Primary Color")
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_HELP("Set the primary fill color (\\c) at the cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-01-10 15:54:41 +01:00
|
|
|
show_color_picker(c, &AssStyle::primary, "\\c", "\\1c", "\\1a");
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_color_secondary final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/color/secondary")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_color_two)
|
2012-10-09 04:07:54 +02:00
|
|
|
STR_MENU("Secondary Color...")
|
|
|
|
STR_DISP("Secondary Color")
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_HELP("Set the secondary (karaoke) fill color (\\2c) at the cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-01-10 15:54:41 +01:00
|
|
|
show_color_picker(c, &AssStyle::secondary, "\\2c", "", "\\2a");
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_color_outline final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/color/outline")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_color_three)
|
2012-10-09 04:07:54 +02:00
|
|
|
STR_MENU("Outline Color...")
|
|
|
|
STR_DISP("Outline Color")
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_HELP("Set the outline color (\\3c) at the cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-01-10 15:54:41 +01:00
|
|
|
show_color_picker(c, &AssStyle::outline, "\\3c", "", "\\3a");
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_color_shadow final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/color/shadow")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_color_four)
|
2012-10-09 04:07:54 +02:00
|
|
|
STR_MENU("Shadow Color...")
|
|
|
|
STR_DISP("Shadow Color")
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_HELP("Set the shadow color (\\4c) at the cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-01-10 15:54:41 +01:00
|
|
|
show_color_picker(c, &AssStyle::shadow, "\\4c", "", "\\4a");
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_style_bold final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/style/bold")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_bold)
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_MENU("Toggle Bold")
|
|
|
|
STR_DISP("Toggle Bold")
|
|
|
|
STR_HELP("Toggle bold (\\b) for the current selection or at the current cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-09 04:07:54 +02:00
|
|
|
toggle_override_tag(c, &AssStyle::bold, "\\b", _("toggle bold"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_style_italic final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/style/italic")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_italics)
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_MENU("Toggle Italics")
|
|
|
|
STR_DISP("Toggle Italics")
|
|
|
|
STR_HELP("Toggle italics (\\i) for the current selection or at the current cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-09 04:07:54 +02:00
|
|
|
toggle_override_tag(c, &AssStyle::italic, "\\i", _("toggle italic"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_style_underline final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/style/underline")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_underline)
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_MENU("Toggle Underline")
|
|
|
|
STR_DISP("Toggle Underline")
|
|
|
|
STR_HELP("Toggle underline (\\u) for the current selection or at the current cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-09 04:07:54 +02:00
|
|
|
toggle_override_tag(c, &AssStyle::underline, "\\u", _("toggle underline"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_style_strikeout final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/style/strikeout")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_strikeout)
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_MENU("Toggle Strikeout")
|
|
|
|
STR_DISP("Toggle Strikeout")
|
|
|
|
STR_HELP("Toggle strikeout (\\s) for the current selection or at the current cursor position")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-09 04:07:54 +02:00
|
|
|
toggle_override_tag(c, &AssStyle::strikeout, "\\s", _("toggle strikeout"));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_font final : public Command {
|
2012-10-09 04:07:54 +02:00
|
|
|
CMD_NAME("edit/font")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(button_fontname)
|
2012-10-09 04:07:54 +02:00
|
|
|
STR_MENU("Font Face...")
|
|
|
|
STR_DISP("Font Face")
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_HELP("Select a font face and size")
|
2012-10-09 04:07:54 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2014-04-15 15:18:49 +02:00
|
|
|
const parsed_line active(c->selectionController->GetActiveLine());
|
|
|
|
const int insertion_point = normalize_pos(active.line->Text, c->textSelectionController->GetInsertionPoint());
|
|
|
|
|
|
|
|
auto font_for_line = [&](parsed_line const& line) -> wxFont {
|
|
|
|
const int blockn = line.block_at_pos(insertion_point);
|
2014-04-14 21:05:19 +02:00
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
const AssStyle *style = c->ass->GetStyle(line.line->Style);
|
2014-04-14 21:05:19 +02:00
|
|
|
const AssStyle default_style;
|
|
|
|
if (!style)
|
|
|
|
style = &default_style;
|
|
|
|
|
|
|
|
return wxFont(
|
2014-04-15 15:18:49 +02:00
|
|
|
line.get_value(blockn, (int)style->fontsize, "\\fs"),
|
2014-04-14 21:05:19 +02:00
|
|
|
wxFONTFAMILY_DEFAULT,
|
2014-04-15 15:18:49 +02:00
|
|
|
line.get_value(blockn, style->italic, "\\i") ? wxFONTSTYLE_ITALIC : wxFONTSTYLE_NORMAL,
|
|
|
|
line.get_value(blockn, style->bold, "\\b") ? wxFONTWEIGHT_BOLD : wxFONTWEIGHT_NORMAL,
|
|
|
|
line.get_value(blockn, style->underline, "\\u"),
|
|
|
|
to_wx(line.get_value(blockn, style->font, "\\fn")));
|
2014-04-14 21:05:19 +02:00
|
|
|
};
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
const wxFont initial = font_for_line(active);
|
2014-04-14 21:05:19 +02:00
|
|
|
const wxFont font = wxGetFontFromUser(c->parent, initial);
|
|
|
|
if (!font.Ok() || font == initial) return;
|
|
|
|
|
2014-04-15 15:18:49 +02:00
|
|
|
update_lines(c, _("set font"), [&](AssDialogue *line, int sel_start, int sel_end, int norm_sel_start, int norm_sel_end) {
|
|
|
|
parsed_line parsed(line);
|
|
|
|
const wxFont startfont = font_for_line(parsed);
|
2014-04-15 02:30:46 +02:00
|
|
|
int shift = 0;
|
|
|
|
auto do_set_tag = [&](const char *tag_name, std::string const& value) {
|
2014-04-15 15:18:49 +02:00
|
|
|
shift += parsed.set_tag(tag_name, value, norm_sel_start, sel_start + shift);
|
2014-04-15 02:30:46 +02:00
|
|
|
};
|
|
|
|
|
2014-04-14 21:05:19 +02:00
|
|
|
if (font.GetFaceName() != startfont.GetFaceName())
|
2014-04-15 02:30:46 +02:00
|
|
|
do_set_tag("\\fn", from_wx(font.GetFaceName()));
|
2014-04-14 21:05:19 +02:00
|
|
|
if (font.GetPointSize() != startfont.GetPointSize())
|
2014-04-15 02:30:46 +02:00
|
|
|
do_set_tag("\\fs", std::to_string(font.GetPointSize()));
|
2014-04-14 21:05:19 +02:00
|
|
|
if (font.GetWeight() != startfont.GetWeight())
|
2014-04-15 02:30:46 +02:00
|
|
|
do_set_tag("\\b", std::to_string(font.GetWeight() == wxFONTWEIGHT_BOLD));
|
2014-04-14 21:05:19 +02:00
|
|
|
if (font.GetStyle() != startfont.GetStyle())
|
2014-04-15 02:30:46 +02:00
|
|
|
do_set_tag("\\i", std::to_string(font.GetStyle() == wxFONTSTYLE_ITALIC));
|
2014-04-14 21:05:19 +02:00
|
|
|
if (font.GetUnderlined() != startfont.GetUnderlined())
|
2014-04-15 02:30:46 +02:00
|
|
|
do_set_tag("\\i", std::to_string(font.GetUnderlined()));
|
|
|
|
|
|
|
|
return shift;
|
2014-04-14 21:05:19 +02:00
|
|
|
});
|
2012-10-09 04:07:54 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_find_replace final : public Command {
|
2011-10-01 01:51:41 +02:00
|
|
|
CMD_NAME("edit/find_replace")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(find_replace_menu)
|
2012-10-09 04:07:54 +02:00
|
|
|
STR_MENU("Find and R&eplace...")
|
|
|
|
STR_DISP("Find and Replace")
|
|
|
|
STR_HELP("Find and replace words in subtitles")
|
2011-10-01 01:51:41 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-09 04:07:54 +02:00
|
|
|
c->videoController->Stop();
|
2013-01-11 18:35:39 +01:00
|
|
|
DialogSearchReplace::Show(c, true);
|
2011-10-01 01:51:41 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-10-15 03:57:57 +02:00
|
|
|
static void copy_lines(agi::Context *c) {
|
2014-04-17 23:24:26 +02:00
|
|
|
SetClipboard(join(c->selectionController->GetSortedSelection()
|
|
|
|
| transformed(static_cast<std::string(*)(AssDialogue*)>([](AssDialogue *d) { return d->GetEntryData(); })),
|
2013-01-04 16:01:50 +01:00
|
|
|
"\r\n"));
|
2012-10-15 03:57:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void delete_lines(agi::Context *c, wxString const& commit_message) {
|
2014-03-25 01:15:14 +01:00
|
|
|
auto const& sel = c->selectionController->GetSelectedSet();
|
2012-10-15 03:57:57 +02:00
|
|
|
|
|
|
|
// Find a line near the active line not being deleted to make the new active line
|
2013-04-16 02:01:36 +02:00
|
|
|
AssDialogue *pre_sel = nullptr;
|
|
|
|
AssDialogue *post_sel = nullptr;
|
|
|
|
bool hit_selection = false;
|
2012-10-15 03:57:57 +02:00
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
for (auto& diag : c->ass->Events) {
|
|
|
|
if (sel.count(&diag))
|
2013-04-16 02:01:36 +02:00
|
|
|
hit_selection = true;
|
|
|
|
else if (hit_selection && !post_sel) {
|
2014-03-07 19:58:51 +01:00
|
|
|
post_sel = &diag;
|
2013-04-16 02:01:36 +02:00
|
|
|
break;
|
2012-10-15 03:57:57 +02:00
|
|
|
}
|
2013-04-16 02:01:36 +02:00
|
|
|
else
|
2014-03-07 19:58:51 +01:00
|
|
|
pre_sel = &diag;
|
2012-10-15 03:57:57 +02:00
|
|
|
}
|
|
|
|
|
2013-12-02 05:17:52 +01:00
|
|
|
// Remove the selected lines, but defer the deletion until after we select
|
|
|
|
// different lines. We can't just change the selection first because we may
|
|
|
|
// need to create a new dialogue line for it, and we can't select dialogue
|
|
|
|
// lines until after they're committed.
|
2014-03-07 19:58:51 +01:00
|
|
|
std::vector<std::unique_ptr<AssDialogue>> to_delete;
|
|
|
|
c->ass->Events.remove_and_dispose_if([&sel](AssDialogue const& e) {
|
|
|
|
return sel.count(const_cast<AssDialogue *>(&e));
|
|
|
|
}, [&](AssDialogue *e) {
|
2013-12-02 05:17:52 +01:00
|
|
|
to_delete.emplace_back(e);
|
|
|
|
});
|
2012-10-15 03:57:57 +02:00
|
|
|
|
2013-04-16 02:01:36 +02:00
|
|
|
AssDialogue *new_active = post_sel;
|
|
|
|
if (!new_active)
|
|
|
|
new_active = pre_sel;
|
2012-10-15 03:57:57 +02:00
|
|
|
// If we didn't get a new active line then we just deleted all the dialogue
|
|
|
|
// lines, so make a new one
|
|
|
|
if (!new_active) {
|
|
|
|
new_active = new AssDialogue;
|
2014-03-07 18:02:24 +01:00
|
|
|
c->ass->Events.push_back(*new_active);
|
2012-10-15 03:57:57 +02:00
|
|
|
}
|
|
|
|
|
2013-12-02 05:17:52 +01:00
|
|
|
c->ass->Commit(commit_message, AssFile::COMMIT_DIAG_ADDREM);
|
2013-12-12 00:11:06 +01:00
|
|
|
c->selectionController->SetSelectionAndActive({ new_active }, new_active);
|
2012-10-15 03:57:57 +02:00
|
|
|
}
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_copy final : public validate_sel_nonempty {
|
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
|
|
|
CMD_NAME("edit/line/copy")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(copy_button)
|
2011-11-18 06:00:20 +01:00
|
|
|
STR_MENU("&Copy Lines")
|
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
|
|
|
STR_DISP("Copy Lines")
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Copy subtitles to the clipboard")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-03-13 00:34:25 +01:00
|
|
|
// Ideally we'd let the control's keydown handler run and only deal
|
|
|
|
// with the events not processed by it, but that doesn't seem to be
|
|
|
|
// possible with how wx implements key event handling - the native
|
|
|
|
// platform processing is evoked only if the wx event is unprocessed,
|
|
|
|
// and there's no way to do something if the native platform code leaves
|
|
|
|
// it unprocessed
|
|
|
|
|
|
|
|
if (wxTextEntryBase *ctrl = dynamic_cast<wxTextEntryBase*>(c->parent->FindFocus()))
|
|
|
|
ctrl->Copy();
|
2012-10-15 03:57:57 +02:00
|
|
|
else {
|
|
|
|
copy_lines(c);
|
|
|
|
}
|
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-15 06:05:22 +02:00
|
|
|
struct edit_line_cut: public validate_sel_nonempty {
|
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
|
|
|
CMD_NAME("edit/line/cut")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(cut_button)
|
2011-11-18 06:00:20 +01:00
|
|
|
STR_MENU("Cu&t Lines")
|
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
|
|
|
STR_DISP("Cut Lines")
|
2012-02-01 19:47:26 +01:00
|
|
|
STR_HELP("Cut subtitles")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-03-13 00:34:25 +01:00
|
|
|
if (wxTextEntryBase *ctrl = dynamic_cast<wxTextEntryBase*>(c->parent->FindFocus()))
|
|
|
|
ctrl->Cut();
|
2012-10-15 03:57:57 +02:00
|
|
|
else {
|
|
|
|
copy_lines(c);
|
|
|
|
delete_lines(c, _("cut lines"));
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_delete final : public validate_sel_nonempty {
|
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
|
|
|
CMD_NAME("edit/line/delete")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(delete_button)
|
2011-11-18 06:00:20 +01:00
|
|
|
STR_MENU("De&lete Lines")
|
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
|
|
|
STR_DISP("Delete Lines")
|
2012-02-01 19:47:26 +01:00
|
|
|
STR_HELP("Delete currently selected lines")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-15 03:57:57 +02:00
|
|
|
delete_lines(c, _("delete lines"));
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-10-26 17:34:09 +02:00
|
|
|
static void duplicate_lines(agi::Context *c, int shift) {
|
2014-03-07 19:58:51 +01:00
|
|
|
auto const& sel = c->selectionController->GetSelectedSet();
|
|
|
|
auto in_selection = [&](AssDialogue const& d) { return sel.count(const_cast<AssDialogue *>(&d)); };
|
|
|
|
|
2014-03-25 01:15:14 +01:00
|
|
|
Selection new_sel;
|
2013-11-16 18:21:38 +01:00
|
|
|
AssDialogue *new_active = nullptr;
|
2012-02-15 23:14:10 +01:00
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
auto start = c->ass->Events.begin();
|
|
|
|
auto end = c->ass->Events.end();
|
2012-02-15 23:14:10 +01:00
|
|
|
while (start != end) {
|
|
|
|
// Find the first line in the selection
|
2014-03-09 16:45:36 +01:00
|
|
|
start = std::find_if(start, end, in_selection);
|
2012-02-15 23:14:10 +01:00
|
|
|
if (start == end) break;
|
|
|
|
|
|
|
|
// And the last line in this contiguous selection
|
2014-03-09 16:45:36 +01:00
|
|
|
auto insert_pos = std::find_if_not(start, end, in_selection);
|
2014-03-07 19:58:51 +01:00
|
|
|
auto last = std::prev(insert_pos);
|
2012-02-15 23:14:10 +01:00
|
|
|
|
|
|
|
// Duplicate each of the selected lines, inserting them in a block
|
|
|
|
// after the selected block
|
|
|
|
do {
|
2014-03-07 19:58:51 +01:00
|
|
|
auto old_diag = &*start;
|
2013-11-21 18:13:36 +01:00
|
|
|
auto new_diag = new AssDialogue(*old_diag);
|
2012-02-15 23:14:10 +01:00
|
|
|
|
2014-03-07 18:02:24 +01:00
|
|
|
c->ass->Events.insert(insert_pos, *new_diag);
|
2012-02-15 23:14:10 +01:00
|
|
|
new_sel.insert(new_diag);
|
|
|
|
if (!new_active)
|
|
|
|
new_active = new_diag;
|
2013-10-26 17:34:09 +02:00
|
|
|
|
|
|
|
if (shift) {
|
2013-11-16 18:21:38 +01:00
|
|
|
int cur_frame = c->videoController->GetFrameN();
|
2013-10-26 17:34:09 +02:00
|
|
|
int old_start = c->videoController->FrameAtTime(new_diag->Start, agi::vfr::START);
|
|
|
|
int old_end = c->videoController->FrameAtTime(new_diag->End, agi::vfr::END);
|
|
|
|
|
2013-11-16 18:21:38 +01:00
|
|
|
// If the current frame isn't within the range of the line then
|
|
|
|
// splitting doesn't make any sense, so instead just duplicate
|
|
|
|
// the line and set the new one to just this frame
|
|
|
|
if (cur_frame < old_start || cur_frame > old_end) {
|
|
|
|
new_diag->Start = c->videoController->TimeAtFrame(cur_frame, agi::vfr::START);
|
|
|
|
new_diag->End = c->videoController->TimeAtFrame(cur_frame, agi::vfr::END);
|
|
|
|
}
|
|
|
|
/// @todo This does dumb things when old_start == old_end
|
|
|
|
else if (shift < 0) {
|
|
|
|
old_diag->End = c->videoController->TimeAtFrame(cur_frame - 1, agi::vfr::END);
|
|
|
|
new_diag->Start = c->videoController->TimeAtFrame(cur_frame, agi::vfr::START);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
old_diag->Start = c->videoController->TimeAtFrame(cur_frame + 1, agi::vfr::START);
|
|
|
|
new_diag->End = c->videoController->TimeAtFrame(cur_frame, agi::vfr::END);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// @todo also split \t and \move?
|
2013-10-26 17:34:09 +02:00
|
|
|
}
|
2012-02-15 23:14:10 +01:00
|
|
|
} while (start++ != last);
|
|
|
|
|
|
|
|
// Skip over the lines we just made
|
|
|
|
start = insert_pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_sel.empty()) return;
|
|
|
|
|
2013-11-16 18:21:38 +01:00
|
|
|
c->ass->Commit(shift ? _("split") : _("duplicate lines"), AssFile::COMMIT_DIAG_ADDREM);
|
2012-02-15 23:14:10 +01:00
|
|
|
|
2014-03-12 23:10:47 +01:00
|
|
|
c->selectionController->SetSelectionAndActive(std::move(new_sel), new_active);
|
2012-02-15 23:14:10 +01:00
|
|
|
}
|
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
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_duplicate final : public validate_sel_nonempty {
|
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
|
|
|
CMD_NAME("edit/line/duplicate")
|
|
|
|
STR_MENU("&Duplicate Lines")
|
|
|
|
STR_DISP("Duplicate Lines")
|
2012-02-01 19:47:26 +01:00
|
|
|
STR_HELP("Duplicate the selected lines")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-10-26 17:34:09 +02:00
|
|
|
duplicate_lines(c, 0);
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_duplicate_shift final : public validate_video_and_sel_nonempty {
|
2013-11-16 18:21:38 +01:00
|
|
|
CMD_NAME("edit/line/split/after")
|
|
|
|
STR_MENU("Split lines after current frame")
|
|
|
|
STR_DISP("Split lines after current frame")
|
|
|
|
STR_HELP("Split the current line into a line which ends on the current frame and a line which starts on the next frame")
|
2013-06-07 03:57:14 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE)
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-10-26 17:34:09 +02:00
|
|
|
duplicate_lines(c, 1);
|
2013-06-07 03:57:14 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_duplicate_shift_back final : public validate_video_and_sel_nonempty {
|
2013-11-16 18:21:38 +01:00
|
|
|
CMD_NAME("edit/line/split/before")
|
|
|
|
STR_MENU("Split lines before current frame")
|
|
|
|
STR_DISP("Split lines before current frame")
|
|
|
|
STR_HELP("Split the current line into a line which ends on the previous frame and a line which starts on the current frame")
|
2011-07-15 06:05:56 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE)
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-10-26 17:34:09 +02:00
|
|
|
duplicate_lines(c, -1);
|
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-15 06:04:48 +02:00
|
|
|
static void combine_lines(agi::Context *c, void (*combiner)(AssDialogue *, AssDialogue *), wxString const& message) {
|
2014-04-17 23:24:26 +02:00
|
|
|
auto sel = c->selectionController->GetSortedSelection();
|
2011-07-15 06:04:48 +02:00
|
|
|
|
2014-04-17 23:24:26 +02:00
|
|
|
AssDialogue *first = sel[0];
|
|
|
|
for (size_t i = 1; i < sel.size(); ++i) {
|
2014-04-18 03:04:14 +02:00
|
|
|
combiner(first, sel[i]);
|
|
|
|
first->End = std::max(first->End, sel[i]->End);
|
|
|
|
delete sel[i];
|
2011-07-15 06:04:48 +02:00
|
|
|
}
|
|
|
|
|
2014-03-12 22:54:46 +01:00
|
|
|
c->selectionController->SetSelectionAndActive({first}, first);
|
2013-10-27 14:59:56 +01:00
|
|
|
|
2011-09-15 07:16:32 +02:00
|
|
|
c->ass->Commit(message, AssFile::COMMIT_DIAG_ADDREM | AssFile::COMMIT_DIAG_FULL);
|
2011-07-15 06:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void combine_karaoke(AssDialogue *first, AssDialogue *second) {
|
2013-01-04 16:01:50 +01:00
|
|
|
first->Text = first->Text.get() + "{\\k" + std::to_string((second->Start - first->End) / 10) + "}" + second->Text.get();
|
2011-07-15 06:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void combine_concat(AssDialogue *first, AssDialogue *second) {
|
2013-01-04 16:01:50 +01:00
|
|
|
first->Text = first->Text.get() + " " + second->Text.get();
|
2011-07-15 06:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void combine_drop(AssDialogue *, AssDialogue *) { }
|
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
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_join_as_karaoke final : public validate_sel_multiple {
|
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
|
|
|
CMD_NAME("edit/line/join/as_karaoke")
|
|
|
|
STR_MENU("As &Karaoke")
|
|
|
|
STR_DISP("As Karaoke")
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Join selected lines in a single one, as karaoke")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2011-07-15 06:04:48 +02:00
|
|
|
combine_lines(c, combine_karaoke, _("join as karaoke"));
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_join_concatenate final : public validate_sel_multiple {
|
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
|
|
|
CMD_NAME("edit/line/join/concatenate")
|
|
|
|
STR_MENU("&Concatenate")
|
|
|
|
STR_DISP("Concatenate")
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Join selected lines in a single one, concatenating text together")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2011-07-15 06:04:48 +02:00
|
|
|
combine_lines(c, combine_concat, _("join lines"));
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_join_keep_first final : public validate_sel_multiple {
|
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
|
|
|
CMD_NAME("edit/line/join/keep_first")
|
|
|
|
STR_MENU("Keep &First")
|
|
|
|
STR_DISP("Keep First")
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Join selected lines in a single one, keeping text of first and discarding remaining")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2011-07-15 06:04:48 +02:00
|
|
|
combine_lines(c, combine_drop, _("join lines"));
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-09-16 20:02:20 +02:00
|
|
|
static bool try_paste_lines(agi::Context *c) {
|
|
|
|
std::string data = GetClipboard();
|
|
|
|
boost::trim_left(data);
|
|
|
|
if (!boost::starts_with(data, "Dialogue:")) return false;
|
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
EntryList<AssDialogue> parsed;
|
2013-09-16 20:02:20 +02:00
|
|
|
boost::char_separator<char> sep("\r\n");
|
|
|
|
for (auto curdata : boost::tokenizer<boost::char_separator<char>>(data, sep)) {
|
|
|
|
boost::trim(curdata);
|
|
|
|
try {
|
|
|
|
parsed.push_back(*new AssDialogue(curdata));
|
|
|
|
}
|
|
|
|
catch (...) {
|
2014-03-07 19:58:51 +01:00
|
|
|
parsed.clear_and_dispose([](AssDialogue *e) { delete e; });
|
2013-09-16 20:02:20 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
AssDialogue *new_active = &*parsed.begin();
|
2014-03-25 01:15:14 +01:00
|
|
|
Selection new_selection;
|
2013-09-16 20:02:20 +02:00
|
|
|
for (auto& line : parsed)
|
2014-03-07 19:58:51 +01:00
|
|
|
new_selection.insert(&line);
|
2013-09-16 20:02:20 +02:00
|
|
|
|
2014-04-04 17:11:09 +02:00
|
|
|
auto pos = c->ass->iterator_to(*c->selectionController->GetActiveLine());
|
2014-03-07 18:02:24 +01:00
|
|
|
c->ass->Events.splice(pos, parsed, parsed.begin(), parsed.end());
|
2013-09-16 20:02:20 +02:00
|
|
|
c->ass->Commit(_("paste"), AssFile::COMMIT_DIAG_ADDREM);
|
2014-03-12 23:10:47 +01:00
|
|
|
c->selectionController->SetSelectionAndActive(std::move(new_selection), new_active);
|
2013-09-16 20:02:20 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_paste final : public Command {
|
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
|
|
|
CMD_NAME("edit/line/paste")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(paste_button)
|
2011-11-18 06:00:20 +01:00
|
|
|
STR_MENU("&Paste Lines")
|
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
|
|
|
STR_DISP("Paste Lines")
|
2012-02-01 19:47:26 +01:00
|
|
|
STR_HELP("Paste subtitles")
|
2011-07-15 06:05:56 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE)
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
bool Validate(const agi::Context *) override {
|
2012-10-25 17:13:13 +02:00
|
|
|
bool can_paste = false;
|
2011-07-15 06:05:22 +02:00
|
|
|
if (wxTheClipboard->Open()) {
|
2012-10-25 17:13:13 +02:00
|
|
|
can_paste = wxTheClipboard->IsSupported(wxDF_TEXT);
|
2011-07-15 06:05:22 +02:00
|
|
|
wxTheClipboard->Close();
|
|
|
|
}
|
2012-10-25 17:13:13 +02:00
|
|
|
return can_paste;
|
2011-07-15 06:05:22 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-09-16 20:02:20 +02:00
|
|
|
if (wxTextEntryBase *ctrl = dynamic_cast<wxTextEntryBase*>(c->parent->FindFocus())) {
|
|
|
|
if (!try_paste_lines(c))
|
|
|
|
ctrl->Paste();
|
|
|
|
}
|
2013-01-14 01:55:39 +01:00
|
|
|
else {
|
2014-04-04 17:11:09 +02:00
|
|
|
auto pos = c->ass->iterator_to(*c->selectionController->GetActiveLine());
|
2013-01-14 01:55:39 +01:00
|
|
|
paste_lines(c, false, [=](AssDialogue *new_line) -> AssDialogue * {
|
2014-03-07 18:02:24 +01:00
|
|
|
c->ass->Events.insert(pos, *new_line);
|
2013-01-14 01:55:39 +01:00
|
|
|
return new_line;
|
|
|
|
});
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_paste_over final : public Command {
|
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
|
|
|
CMD_NAME("edit/line/paste/over")
|
2011-11-18 06:00:20 +01:00
|
|
|
STR_MENU("Paste Lines &Over...")
|
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
|
|
|
STR_DISP("Paste Lines Over")
|
2012-02-01 19:47:26 +01:00
|
|
|
STR_HELP("Paste subtitles over others")
|
2011-07-15 06:05:56 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE)
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
bool Validate(const agi::Context *c) override {
|
2012-10-25 17:13:13 +02:00
|
|
|
bool can_paste = !c->selectionController->GetSelectedSet().empty();
|
|
|
|
if (can_paste && wxTheClipboard->Open()) {
|
|
|
|
can_paste = wxTheClipboard->IsSupported(wxDF_TEXT);
|
2011-07-15 06:05:22 +02:00
|
|
|
wxTheClipboard->Close();
|
|
|
|
}
|
2012-10-25 17:13:13 +02:00
|
|
|
return can_paste;
|
2011-07-15 06:05:22 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-01-14 01:55:39 +01:00
|
|
|
auto const& sel = c->selectionController->GetSelectedSet();
|
|
|
|
std::vector<bool> pasteOverOptions;
|
|
|
|
|
|
|
|
// Only one line selected, so paste over downwards from the active line
|
|
|
|
if (sel.size() < 2) {
|
2014-04-04 17:11:09 +02:00
|
|
|
auto pos = c->ass->iterator_to(*c->selectionController->GetActiveLine());
|
2013-01-14 01:55:39 +01:00
|
|
|
|
|
|
|
paste_lines(c, true, [&](AssDialogue *new_line) -> AssDialogue * {
|
|
|
|
std::unique_ptr<AssDialogue> deleter(new_line);
|
2014-03-07 18:02:24 +01:00
|
|
|
if (pos == c->ass->Events.end()) return nullptr;
|
2013-01-14 01:55:39 +01:00
|
|
|
|
2014-03-07 19:58:51 +01:00
|
|
|
AssDialogue *ret = paste_over(c->parent, pasteOverOptions, new_line, &*pos);
|
2013-01-14 01:55:39 +01:00
|
|
|
if (ret)
|
2014-03-07 19:58:51 +01:00
|
|
|
++pos;
|
2013-01-14 01:55:39 +01:00
|
|
|
return ret;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Multiple lines selected, so paste over the selection
|
2014-04-17 23:24:26 +02:00
|
|
|
auto sorted_selection = c->selectionController->GetSortedSelection();
|
2013-01-14 01:55:39 +01:00
|
|
|
auto pos = begin(sorted_selection);
|
|
|
|
paste_lines(c, true, [&](AssDialogue *new_line) -> AssDialogue * {
|
|
|
|
std::unique_ptr<AssDialogue> deleter(new_line);
|
|
|
|
if (pos == end(sorted_selection)) return nullptr;
|
|
|
|
|
|
|
|
AssDialogue *ret = paste_over(c->parent, pasteOverOptions, new_line, *pos);
|
|
|
|
if (ret) ++pos;
|
|
|
|
return ret;
|
|
|
|
});
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-06-19 04:24:45 +02:00
|
|
|
namespace {
|
|
|
|
std::string trim_text(std::string text) {
|
2013-12-12 18:27:52 +01:00
|
|
|
boost::regex start(R"(^( | |\\[nNh])+)");
|
|
|
|
boost::regex end(R"(( | |\\[nNh])+$)");
|
2013-06-19 04:24:45 +02:00
|
|
|
|
2013-09-21 20:21:21 +02:00
|
|
|
text = regex_replace(text, start, "", boost::format_first_only);
|
|
|
|
text = regex_replace(text, end, "", boost::format_first_only);
|
2013-06-19 04:24:45 +02:00
|
|
|
return text;
|
|
|
|
}
|
|
|
|
|
|
|
|
void expand_times(AssDialogue *src, AssDialogue *dst) {
|
|
|
|
dst->Start = std::min(dst->Start, src->Start);
|
|
|
|
dst->End = std::max(dst->End, src->End);
|
|
|
|
}
|
|
|
|
|
2013-11-01 16:44:21 +01:00
|
|
|
bool check_start(AssDialogue *d1, AssDialogue *d2) {
|
|
|
|
if (boost::starts_with(d1->Text.get(), d2->Text.get())) {
|
2013-06-19 04:24:45 +02:00
|
|
|
d1->Text = trim_text(d1->Text.get().substr(d2->Text.get().size()));
|
|
|
|
expand_times(d1, d2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool check_end(AssDialogue *d1, AssDialogue *d2) {
|
2013-11-01 16:44:21 +01:00
|
|
|
if (boost::ends_with(d1->Text.get(), d2->Text.get())) {
|
|
|
|
d1->Text = trim_text(d1->Text.get().substr(0, d1->Text.get().size() - d2->Text.get().size()));
|
|
|
|
expand_times(d1, d2);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-06-19 04:24:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_recombine final : public validate_sel_multiple {
|
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
|
|
|
CMD_NAME("edit/line/recombine")
|
2012-01-27 20:22:57 +01:00
|
|
|
STR_MENU("Recom&bine Lines")
|
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
|
|
|
STR_DISP("Recombine Lines")
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Recombine subtitles which have been split and merged")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2014-03-12 22:54:46 +01:00
|
|
|
auto const& sel_set = c->selectionController->GetSelectedSet();
|
2013-06-19 04:24:45 +02:00
|
|
|
if (sel_set.size() < 2) return;
|
|
|
|
|
|
|
|
auto active_line = c->selectionController->GetActiveLine();
|
|
|
|
|
|
|
|
std::vector<AssDialogue*> sel(sel_set.begin(), sel_set.end());
|
2014-03-07 19:58:51 +01:00
|
|
|
boost::sort(sel, [](const AssDialogue *a, const AssDialogue *b) {
|
|
|
|
return a->Start < b->Start;
|
|
|
|
});
|
|
|
|
|
2013-06-19 04:24:45 +02:00
|
|
|
for (auto &diag : sel)
|
|
|
|
diag->Text = trim_text(diag->Text);
|
|
|
|
|
|
|
|
auto end = sel.end() - 1;
|
|
|
|
for (auto cur = sel.begin(); cur != end; ++cur) {
|
|
|
|
auto d1 = *cur;
|
|
|
|
auto d2 = cur + 1;
|
|
|
|
|
|
|
|
// 1, 1+2 (or 2+1), 2 gets turned into 1, 2, 2 so kill the duplicate
|
|
|
|
if (d1->Text == (*d2)->Text) {
|
|
|
|
expand_times(d1, *d2);
|
|
|
|
delete d1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1, 1+2, 1 turns into 1, 2, [empty]
|
|
|
|
if (d1->Text.get().empty()) {
|
|
|
|
delete d1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If d2 is the last line in the selection it'll never hit the above test
|
|
|
|
if (d2 == end && (*d2)->Text.get().empty()) {
|
|
|
|
delete *d2;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1, 1+2
|
|
|
|
while (d2 <= end && check_start(*d2, d1))
|
|
|
|
++d2;
|
|
|
|
|
|
|
|
// 1, 2+1
|
|
|
|
while (d2 <= end && check_end(*d2, d1))
|
|
|
|
++d2;
|
|
|
|
|
|
|
|
// 1+2, 2
|
|
|
|
while (d2 <= end && check_end(d1, *d2))
|
|
|
|
++d2;
|
|
|
|
|
|
|
|
// 2+1, 2
|
|
|
|
while (d2 <= end && check_start(d1, *d2))
|
|
|
|
++d2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove now non-existent lines from the selection
|
2014-03-25 01:15:14 +01:00
|
|
|
Selection lines, new_sel;
|
2014-03-07 19:58:51 +01:00
|
|
|
boost::copy(c->ass->Events | agi::address_of, inserter(lines, lines.begin()));
|
2013-06-19 04:24:45 +02:00
|
|
|
boost::set_intersection(lines, sel_set, inserter(new_sel, new_sel.begin()));
|
|
|
|
|
|
|
|
if (new_sel.empty())
|
|
|
|
new_sel.insert(*lines.begin());
|
|
|
|
|
|
|
|
// Restore selection
|
|
|
|
if (!new_sel.count(active_line))
|
|
|
|
active_line = *new_sel.begin();
|
2014-03-12 23:10:47 +01:00
|
|
|
c->selectionController->SetSelectionAndActive(std::move(new_sel), active_line);
|
2013-06-19 04:24:45 +02:00
|
|
|
|
|
|
|
c->ass->Commit(_("combining"), AssFile::COMMIT_DIAG_ADDREM | AssFile::COMMIT_DIAG_FULL);
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_split_by_karaoke final : public validate_sel_nonempty {
|
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
|
|
|
CMD_NAME("edit/line/split/by_karaoke")
|
|
|
|
STR_MENU("Split Lines (by karaoke)")
|
|
|
|
STR_DISP("Split Lines (by karaoke)")
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Use karaoke timing to split line into multiple smaller lines")
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2014-04-17 23:24:26 +02:00
|
|
|
auto sel = c->selectionController->GetSortedSelection();
|
|
|
|
if (sel.empty()) return;
|
|
|
|
|
|
|
|
Selection new_sel;
|
|
|
|
AssKaraoke kara;
|
|
|
|
|
|
|
|
bool did_split = false;
|
|
|
|
for (auto line : sel) {
|
|
|
|
kara.SetLine(line);
|
|
|
|
|
|
|
|
// If there aren't at least two tags there's nothing to split
|
|
|
|
if (kara.size() < 2) continue;
|
|
|
|
|
|
|
|
for (auto const& syl : kara) {
|
|
|
|
auto new_line = new AssDialogue(*line);
|
|
|
|
|
|
|
|
new_line->Start = syl.start_time;
|
|
|
|
new_line->End = syl.start_time + syl.duration;
|
|
|
|
new_line->Text = syl.GetText(false);
|
|
|
|
|
|
|
|
c->ass->Events.insert(c->ass->iterator_to(*line), *new_line);
|
|
|
|
|
|
|
|
new_sel.insert(new_line);
|
|
|
|
}
|
|
|
|
|
|
|
|
delete line;
|
|
|
|
did_split = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!did_split) return;
|
|
|
|
|
|
|
|
c->ass->Commit(_("splitting"), AssFile::COMMIT_DIAG_ADDREM | AssFile::COMMIT_DIAG_FULL);
|
|
|
|
|
|
|
|
AssDialogue *new_active = c->selectionController->GetActiveLine();
|
|
|
|
if (!new_sel.count(c->selectionController->GetActiveLine()))
|
|
|
|
new_active = *sel.begin();
|
|
|
|
c->selectionController->SetSelectionAndActive(std::move(new_sel), new_active);
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-11-18 02:21:23 +01:00
|
|
|
template<typename Func>
|
|
|
|
void split_lines(agi::Context *c, Func&& set_time) {
|
2012-10-30 20:32:47 +01:00
|
|
|
int pos = c->textSelectionController->GetSelectionStart();
|
|
|
|
|
|
|
|
AssDialogue *n1 = c->selectionController->GetActiveLine();
|
2013-11-21 18:13:36 +01:00
|
|
|
auto n2 = new AssDialogue(*n1);
|
2014-04-04 17:11:09 +02:00
|
|
|
c->ass->Events.insert(++c->ass->iterator_to(*n1), *n2);
|
2012-10-30 20:32:47 +01:00
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string orig = n1->Text;
|
|
|
|
n1->Text = boost::trim_right_copy(orig.substr(0, pos));
|
|
|
|
n2->Text = boost::trim_left_copy(orig.substr(pos));
|
2012-10-30 20:32:47 +01:00
|
|
|
|
2013-11-18 02:21:23 +01:00
|
|
|
set_time(n1, n2);
|
2012-10-30 20:32:47 +01:00
|
|
|
|
2013-11-18 02:21:23 +01:00
|
|
|
c->ass->Commit(_("split"), AssFile::COMMIT_DIAG_ADDREM | AssFile::COMMIT_DIAG_FULL);
|
2012-10-30 20:32:47 +01:00
|
|
|
}
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_split_estimate final : public validate_video_and_sel_nonempty {
|
2012-10-30 20:32:47 +01:00
|
|
|
CMD_NAME("edit/line/split/estimate")
|
|
|
|
STR_MENU("Split at cursor (estimate times)")
|
|
|
|
STR_DISP("Split at cursor (estimate times)")
|
|
|
|
STR_HELP("Split the current line at the cursor, dividing the original line's duration between the new ones")
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-11-18 02:21:23 +01:00
|
|
|
split_lines(c, [](AssDialogue *n1, AssDialogue *n2) {
|
|
|
|
size_t len = n1->Text.get().size() + n2->Text.get().size();
|
|
|
|
if (!len) return;
|
|
|
|
double splitPos = double(n1->Text.get().size()) / len;
|
|
|
|
n2->Start = n1->End = (int)((n1->End - n1->Start) * splitPos) + n1->Start;
|
|
|
|
});
|
2012-10-30 20:32:47 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_split_preserve final : public validate_sel_nonempty {
|
2012-10-30 20:32:47 +01:00
|
|
|
CMD_NAME("edit/line/split/preserve")
|
|
|
|
STR_MENU("Split at cursor (preserve times)")
|
|
|
|
STR_DISP("Split at cursor (preserve times)")
|
|
|
|
STR_HELP("Split the current line at the cursor, setting both lines to the original line's times")
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-11-18 02:21:23 +01:00
|
|
|
split_lines(c, [](AssDialogue *, AssDialogue *) { });
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_line_split_video final : public validate_video_and_sel_nonempty {
|
2013-11-18 02:21:23 +01:00
|
|
|
CMD_NAME("edit/line/split/video")
|
|
|
|
STR_MENU("Split at cursor (at video frame)")
|
|
|
|
STR_DISP("Split at cursor (at video frame)")
|
|
|
|
STR_HELP("Split the current line at the cursor, dividing the line's duration at the current video frame")
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-11-18 02:21:23 +01:00
|
|
|
split_lines(c, [&](AssDialogue *n1, AssDialogue *n2) {
|
|
|
|
int cur_frame = mid(
|
|
|
|
c->videoController->FrameAtTime(n1->Start, agi::vfr::START),
|
|
|
|
c->videoController->GetFrameN(),
|
|
|
|
c->videoController->FrameAtTime(n1->End, agi::vfr::END));
|
|
|
|
n1->End = n2->Start = c->videoController->TimeAtFrame(cur_frame, agi::vfr::END);
|
|
|
|
});
|
2012-10-30 20:32:47 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_redo final : public Command {
|
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
|
|
|
CMD_NAME("edit/redo")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(redo_button)
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Redo last undone action")
|
2011-07-15 06:05:56 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE | COMMAND_DYNAMIC_NAME)
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
wxString StrMenu(const agi::Context *c) const override {
|
2013-01-26 02:57:46 +01:00
|
|
|
return c->subsController->IsRedoStackEmpty() ?
|
2011-11-17 03:19:10 +01:00
|
|
|
_("Nothing to &redo") :
|
2013-01-26 02:57:46 +01:00
|
|
|
wxString::Format(_("&Redo %s"), c->subsController->GetRedoDescription());
|
2011-08-27 08:29:36 +02:00
|
|
|
}
|
2013-11-21 18:13:36 +01:00
|
|
|
wxString StrDisplay(const agi::Context *c) const override {
|
2013-01-26 02:57:46 +01:00
|
|
|
return c->subsController->IsRedoStackEmpty() ?
|
2011-11-17 03:19:10 +01:00
|
|
|
_("Nothing to redo") :
|
2013-01-26 02:57:46 +01:00
|
|
|
wxString::Format(_("Redo %s"), c->subsController->GetRedoDescription());
|
2011-08-27 08:29:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
bool Validate(const agi::Context *c) override {
|
2013-01-26 02:57:46 +01:00
|
|
|
return !c->subsController->IsRedoStackEmpty();
|
2011-07-15 06:05:22 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-01-26 02:57:46 +01:00
|
|
|
c->subsController->Redo();
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_undo final : public Command {
|
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
|
|
|
CMD_NAME("edit/undo")
|
2013-12-25 22:36:37 +01:00
|
|
|
CMD_ICON(undo_button)
|
2013-10-25 22:54:20 +02:00
|
|
|
STR_HELP("Undo last action")
|
2011-07-15 06:05:56 +02:00
|
|
|
CMD_TYPE(COMMAND_VALIDATE | COMMAND_DYNAMIC_NAME)
|
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
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
wxString StrMenu(const agi::Context *c) const override {
|
2013-01-26 02:57:46 +01:00
|
|
|
return c->subsController->IsUndoStackEmpty() ?
|
2011-11-17 03:19:10 +01:00
|
|
|
_("Nothing to &undo") :
|
2013-01-26 02:57:46 +01:00
|
|
|
wxString::Format(_("&Undo %s"), c->subsController->GetUndoDescription());
|
2011-08-27 08:29:36 +02:00
|
|
|
}
|
2013-11-21 18:13:36 +01:00
|
|
|
wxString StrDisplay(const agi::Context *c) const override {
|
2013-01-26 02:57:46 +01:00
|
|
|
return c->subsController->IsUndoStackEmpty() ?
|
2011-11-17 03:19:10 +01:00
|
|
|
_("Nothing to undo") :
|
2013-01-26 02:57:46 +01:00
|
|
|
wxString::Format(_("Undo %s"), c->subsController->GetUndoDescription());
|
2011-08-27 08:29:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
bool Validate(const agi::Context *c) override {
|
2013-01-26 02:57:46 +01:00
|
|
|
return !c->subsController->IsUndoStackEmpty();
|
2011-07-15 06:05:22 +02:00
|
|
|
}
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2013-01-26 02:57:46 +01:00
|
|
|
c->subsController->Undo();
|
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
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_revert final : public Command {
|
2012-10-12 01:46:53 +02:00
|
|
|
CMD_NAME("edit/revert")
|
|
|
|
STR_DISP("Revert")
|
|
|
|
STR_MENU("Revert")
|
2013-03-31 17:07:18 +02:00
|
|
|
STR_HELP("Revert the active line to its initial state (shown in the upper editor)")
|
2012-10-12 01:46:53 +02:00
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-12 01:46:53 +02:00
|
|
|
AssDialogue *line = c->selectionController->GetActiveLine();
|
|
|
|
line->Text = c->initialLineState->GetInitialText();
|
|
|
|
c->ass->Commit(_("revert line"), AssFile::COMMIT_DIAG_TEXT, -1, line);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_clear final : public Command {
|
2012-10-12 01:46:53 +02:00
|
|
|
CMD_NAME("edit/clear")
|
|
|
|
STR_DISP("Clear")
|
|
|
|
STR_MENU("Clear")
|
|
|
|
STR_HELP("Clear the current line's text")
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-12 01:46:53 +02:00
|
|
|
AssDialogue *line = c->selectionController->GetActiveLine();
|
|
|
|
line->Text = "";
|
|
|
|
c->ass->Commit(_("clear line"), AssFile::COMMIT_DIAG_TEXT, -1, line);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
std::string get_text(AssDialogueBlock &d) { return d.GetText(); }
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_clear_text final : public Command {
|
2012-11-03 05:24:11 +01:00
|
|
|
CMD_NAME("edit/clear/text")
|
|
|
|
STR_DISP("Clear Text")
|
|
|
|
STR_MENU("Clear Text")
|
|
|
|
STR_HELP("Clear the current line's text, leaving override tags")
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-11-03 05:24:11 +01:00
|
|
|
AssDialogue *line = c->selectionController->GetActiveLine();
|
2014-04-14 19:58:46 +02:00
|
|
|
auto blocks = line->ParseTags();
|
2012-11-03 05:24:11 +01:00
|
|
|
line->Text = join(blocks
|
2014-04-14 19:58:46 +02:00
|
|
|
| indirected
|
2013-06-13 00:54:19 +02:00
|
|
|
| filtered([](AssDialogueBlock const& b) { return b.GetType() != AssBlockType::PLAIN; })
|
2012-11-03 05:24:11 +01:00
|
|
|
| transformed(get_text),
|
2013-01-04 16:01:50 +01:00
|
|
|
"");
|
2012-11-03 05:24:11 +01:00
|
|
|
c->ass->Commit(_("clear line"), AssFile::COMMIT_DIAG_TEXT, -1, line);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-03-13 02:39:07 +01:00
|
|
|
struct edit_insert_original final : public Command {
|
2012-10-12 01:46:53 +02:00
|
|
|
CMD_NAME("edit/insert_original")
|
|
|
|
STR_DISP("Insert Original")
|
|
|
|
STR_MENU("Insert Original")
|
|
|
|
STR_HELP("Insert the original line text at the cursor")
|
|
|
|
|
2013-11-21 18:13:36 +01:00
|
|
|
void operator()(agi::Context *c) override {
|
2012-10-12 01:46:53 +02:00
|
|
|
AssDialogue *line = c->selectionController->GetActiveLine();
|
|
|
|
int sel_start = c->textSelectionController->GetSelectionStart();
|
|
|
|
int sel_end = c->textSelectionController->GetSelectionEnd();
|
|
|
|
|
2013-01-04 16:01:50 +01:00
|
|
|
line->Text = line->Text.get().substr(0, sel_start) + c->initialLineState->GetInitialText() + line->Text.get().substr(sel_end);
|
2012-10-12 01:46:53 +02:00
|
|
|
c->ass->Commit(_("insert original"), AssFile::COMMIT_DIAG_TEXT, -1, line);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-07-15 06:05:01 +02:00
|
|
|
}
|
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-15 06:05:01 +02:00
|
|
|
namespace cmd {
|
|
|
|
void init_edit() {
|
2014-04-23 22:53:24 +02:00
|
|
|
reg(agi::make_unique<edit_color_primary>());
|
|
|
|
reg(agi::make_unique<edit_color_secondary>());
|
|
|
|
reg(agi::make_unique<edit_color_outline>());
|
|
|
|
reg(agi::make_unique<edit_color_shadow>());
|
|
|
|
reg(agi::make_unique<edit_font>());
|
|
|
|
reg(agi::make_unique<edit_find_replace>());
|
|
|
|
reg(agi::make_unique<edit_line_copy>());
|
|
|
|
reg(agi::make_unique<edit_line_cut>());
|
|
|
|
reg(agi::make_unique<edit_line_delete>());
|
|
|
|
reg(agi::make_unique<edit_line_duplicate>());
|
|
|
|
reg(agi::make_unique<edit_line_duplicate_shift>());
|
|
|
|
reg(agi::make_unique<edit_line_duplicate_shift_back>());
|
|
|
|
reg(agi::make_unique<edit_line_join_as_karaoke>());
|
|
|
|
reg(agi::make_unique<edit_line_join_concatenate>());
|
|
|
|
reg(agi::make_unique<edit_line_join_keep_first>());
|
|
|
|
reg(agi::make_unique<edit_line_paste>());
|
|
|
|
reg(agi::make_unique<edit_line_paste_over>());
|
|
|
|
reg(agi::make_unique<edit_line_recombine>());
|
|
|
|
reg(agi::make_unique<edit_line_split_by_karaoke>());
|
|
|
|
reg(agi::make_unique<edit_line_split_estimate>());
|
|
|
|
reg(agi::make_unique<edit_line_split_preserve>());
|
|
|
|
reg(agi::make_unique<edit_line_split_video>());
|
|
|
|
reg(agi::make_unique<edit_style_bold>());
|
|
|
|
reg(agi::make_unique<edit_style_italic>());
|
|
|
|
reg(agi::make_unique<edit_style_underline>());
|
|
|
|
reg(agi::make_unique<edit_style_strikeout>());
|
|
|
|
reg(agi::make_unique<edit_redo>());
|
|
|
|
reg(agi::make_unique<edit_undo>());
|
|
|
|
reg(agi::make_unique<edit_revert>());
|
|
|
|
reg(agi::make_unique<edit_insert_original>());
|
|
|
|
reg(agi::make_unique<edit_clear>());
|
|
|
|
reg(agi::make_unique<edit_clear_text>());
|
2011-07-15 06:05:01 +02:00
|
|
|
}
|
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
|
|
|
}
|