Work on webbox

This commit is contained in:
Nikolaj Olsson 2020-11-29 16:08:44 +01:00
parent 66327d2f73
commit b58b03b652
5 changed files with 103 additions and 99 deletions

View File

@ -2181,7 +2181,6 @@ can edit in same subtitle file (collaboration)</Information>
<AlignmentN7>Alignment top left - {\an7}</AlignmentN7> <AlignmentN7>Alignment top left - {\an7}</AlignmentN7>
<AlignmentN8>Alignment top center - {\an8}</AlignmentN8> <AlignmentN8>Alignment top center - {\an8}</AlignmentN8>
<AlignmentN9>Alignment top right - {\an9}</AlignmentN9> <AlignmentN9>Alignment top right - {\an9}</AlignmentN9>
<ColorX>Color {0} ({1})</ColorX>
<CopyTextOnly>Copy text only to clipboard (selected lines)</CopyTextOnly> <CopyTextOnly>Copy text only to clipboard (selected lines)</CopyTextOnly>
<CopyTextOnlyFromOriginalToCurrent>Copy text from original to current</CopyTextOnlyFromOriginalToCurrent> <CopyTextOnlyFromOriginalToCurrent>Copy text from original to current</CopyTextOnlyFromOriginalToCurrent>
<AutoDurationSelectedLines>Auto-duration (selected lines)</AutoDurationSelectedLines> <AutoDurationSelectedLines>Auto-duration (selected lines)</AutoDurationSelectedLines>

View File

@ -5965,9 +5965,6 @@ namespace Nikse.SubtitleEdit.Core
case "Settings/AlignmentN9": case "Settings/AlignmentN9":
language.Settings.AlignmentN9 = reader.Value; language.Settings.AlignmentN9 = reader.Value;
break; break;
case "Settings/ColorX":
language.Settings.ColorX = reader.Value;
break;
case "Settings/CopyTextOnly": case "Settings/CopyTextOnly":
language.Settings.CopyTextOnly = reader.Value; language.Settings.CopyTextOnly = reader.Value;
break; break;

View File

@ -32,7 +32,7 @@ namespace Nikse.SubtitleEdit.Controls
private TextBox _textBox; private TextBox _textBox;
private int _mouseMoveSelectionLength; private int _mouseMoveSelectionLength;
private WebBrowserEditBox _htmlBox; private WebBrowserEditBox _htmlBox;
private bool _useWebBrowser = false; private bool _useWebBrowser = true;
public SETextBox() public SETextBox()
{ {

View File

@ -1,6 +1,7 @@
using Nikse.SubtitleEdit.Core.Common; using Nikse.SubtitleEdit.Core.Common;
using System; using System;
using System.Drawing; using System.Drawing;
using System.Globalization;
using System.IO; using System.IO;
using System.Net; using System.Net;
using System.Reflection; using System.Reflection;
@ -16,7 +17,7 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
private bool _rightToLeft; private bool _rightToLeft;
private bool _center; private bool _center;
private long _lastKeyOrClick = -1; private long _lastKeyOrClick = -1;
private bool _lastKeyOrClickActivity; private string _lastHtml;
private readonly System.Windows.Forms.Timer _timerSyntaxColor; private readonly System.Windows.Forms.Timer _timerSyntaxColor;
public new event EventHandler TextChanged; public new event EventHandler TextChanged;
@ -39,7 +40,7 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
Document?.InvokeScript("initEvents"); Document?.InvokeScript("initEvents");
}; };
_timerSyntaxColor = new System.Windows.Forms.Timer { Interval = 100 }; _timerSyntaxColor = new System.Windows.Forms.Timer { Interval = 100 };
_timerSyntaxColor.Tick += (sender, args) => { UpdateSyntaxColorFromJs(); }; _timerSyntaxColor.Tick += (sender, args) => { UpdateSyntaxColor(Text); };
_timerSyntaxColor.Start(); _timerSyntaxColor.Start();
} }
@ -63,7 +64,7 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
var s = reader.ReadToEnd(); var s = reader.ReadToEnd();
s = s.Replace("color: brown;", "color: " + ColorTranslator.ToHtml(Configuration.Settings.General.SubtitleFontColor) + ";"); s = s.Replace("color: brown;", "color: " + ColorTranslator.ToHtml(Configuration.Settings.General.SubtitleFontColor) + ";");
s = s.Replace("background-color: lightblue;", "background-color: " + ColorTranslator.ToHtml(Configuration.Settings.General.SubtitleBackgroundColor) + ";"); s = s.Replace("background-color: lightblue;", "background-color: " + ColorTranslator.ToHtml(Configuration.Settings.General.SubtitleBackgroundColor) + ";");
DocumentText = s; DocumentText = s;
} }
@ -178,7 +179,16 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
} }
set set
{ {
//TODO: if (Document == null)
{
return;
}
var position = (Document.InvokeScript("getCursorPosition") ?? "0").ToString();
if (position != value.ToString(CultureInfo.InvariantCulture))
{
Document.InvokeScript("setCursorPosition", new object[] { value });
}
} }
} }
@ -281,7 +291,6 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
KeyUp?.Invoke(this, new KeyEventArgs(keyData)); KeyUp?.Invoke(this, new KeyEventArgs(keyData));
TextChanged?.Invoke(this, new KeyEventArgs(0)); TextChanged?.Invoke(this, new KeyEventArgs(0));
_lastKeyOrClick = DateTime.UtcNow.Ticks; _lastKeyOrClick = DateTime.UtcNow.Ticks;
_lastKeyOrClickActivity = true;
} }
public void ClientClick() public void ClientClick()
@ -290,7 +299,6 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
MouseClick?.Invoke(this, new MouseEventArgs(MouseButtons.Left, 1, mp.X, mp.Y, 1)); MouseClick?.Invoke(this, new MouseEventArgs(MouseButtons.Left, 1, mp.X, mp.Y, 1));
TextChanged?.Invoke(this, new KeyEventArgs(0)); TextChanged?.Invoke(this, new KeyEventArgs(0));
_lastKeyOrClick = DateTime.UtcNow.Ticks; _lastKeyOrClick = DateTime.UtcNow.Ticks;
_lastKeyOrClickActivity = true;
} }
public void ClientMouseMove() public void ClientMouseMove()
@ -323,27 +331,8 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
{ {
} }
private string _lastHtml;
public void UpdateSyntaxColor(string text) public void UpdateSyntaxColor(string text)
{ {
_lastKeyOrClick = DateTime.UtcNow.Ticks;
_lastKeyOrClickActivity = false;
var html = HighLightHtml(text);
if (html != _lastHtml && Document != null)
{
Document.InvokeScript("setHtml", new object[] { html });
_lastHtml = html;
}
}
public void UpdateSyntaxColorFromJs()
{
if (!_lastKeyOrClickActivity)
{
return; // exit if not key or click activity
}
var diff = DateTime.UtcNow.Ticks - _lastKeyOrClick; var diff = DateTime.UtcNow.Ticks - _lastKeyOrClick;
if (diff < 10_000 * 750) if (diff < 10_000 * 750)
{ {
@ -351,12 +340,9 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
} }
_lastKeyOrClick = DateTime.UtcNow.Ticks; _lastKeyOrClick = DateTime.UtcNow.Ticks;
var text = Text;
var html = HighLightHtml(text); var html = HighLightHtml(text);
if (html != _lastHtml && Document != null) if (Document != null && (_lastHtml == null || html.Trim() != _lastHtml.Trim()))
{ {
//var oldHtml = (Document.InvokeScript("getHtml") ?? "0").ToString();
Document.InvokeScript("setHtml", new object[] { html }); Document.InvokeScript("setHtml", new object[] { html });
_lastHtml = html; _lastHtml = html;
} }
@ -458,6 +444,5 @@ namespace Nikse.SubtitleEdit.Controls.WebBrowser
return sb.ToString(); return sb.ToString();
} }
} }
} }

View File

@ -68,12 +68,6 @@
return document.getElementById(id); return document.getElementById(id);
} }
//function syntaxColorIfNotActive() {
// setTimeout(function () {
// window.external.UpdateSyntaxColorFromJs(getText(), document.getElementById("myContent").innerHTML);
// }, 1);
//}
function initEvents() { function initEvents() {
getById("myContent").addEventListener("focus", function (e) { getById("myContent").addEventListener("focus", function (e) {
window.external.ClientFocus(); window.external.ClientFocus();
@ -89,12 +83,10 @@
getById("myContent").addEventListener("keyup", function (e) { getById("myContent").addEventListener("keyup", function (e) {
window.external.ClientKeyUp(e.keyCode, e.ctrlKey, e.shiftKey, e.altKey); window.external.ClientKeyUp(e.keyCode, e.ctrlKey, e.shiftKey, e.altKey);
// syntaxColorIfNotActive();
}); });
getById("myContent").addEventListener("click", function (e) { getById("myContent").addEventListener("click", function (e) {
window.external.ClientClick(); window.external.ClientClick();
// syntaxColorIfNotActive();
}); });
getById("myContent").addEventListener("mousemove", function (e) { getById("myContent").addEventListener("mousemove", function (e) {
@ -102,79 +94,69 @@
}); });
} }
function getLengthFromChildren(node, txtObj, top) { function nextNode(node) {
while (node != null) { if (node.hasChildNodes()) {
if (node.firstChild) { return node.firstChild;
if (node.nodeName === "P" || node.nodeName === "DIV") { } else {
txtObj.l += 2; while (node && !node.nextSibling) {
} node = node.parentNode;
getLengthFromChildren(node.firstChild, txtObj, false); if (node.id === "myContent") {
} else { return null;
if (node.nodeType === 3) {
txtObj.l += node.nodeValue.length;
} else if (node.nodeName === "P" || node.nodeName === "DIV") {
txtObj.l += 2;
} else if (node.nodeName === "BR" && node.parentNode.nodeName !== "P" && node.parentNode.nodeName !== "DIV") {
txtObj.l += 2;
} else if (node.innerHTML === "<br>" && node.nodeName !== "P" && node.nodeName !== "DIV") {
txtObj.l += 2;
} }
} }
if (top) { if (!node) {
return; return null;
} }
node = node.nextSibling; return node.nextSibling;
} }
return;
} }
function getNodePosition(node, txtObj) { function getCursorPosInner(findNode, findOffset) {
if (!node) { if (!findNode) {
return txtObj.l; return 0;
} }
while (true) { var node = getById("myContent").firstChild;
if (node.previousSibling) { var l = findOffset;
node = node.previousSibling; var first = true;
} else { while (node) {
var p = node.parentNode; if (!first && node.nodeName === "P" ||
if (p.id === "myContent") { node.innerHTML === "<br>" && node.nodeName !== "P" && node.parentNode.nodeName !== "P") {
return txtObj.l; l += 2;
}
if (p.previousSibling) {
node = p.previousSibling;
} else {
p = node.parentNode.parentNode;
if (p && p.id === "myContent" || (p && p.nodeName === "P" && p.parentNode && p.parentNode.id === "myContent")) {
return txtObj.l;
}
if (p && p.parentNode && p.parentNode.previousSibling) {
node = p.parentNode.previousSibling;
} else {
return txtObj.l;
}
}
} }
getLengthFromChildren(node, txtObj, true); if (findNode.isEqualNode(node)) {
return l;
}
if (node.length) {
l += node.length;
}
node = nextNode(node);
first = false;
} }
return l;
} }
function getCursorPosition() { function getCursorPosition() {
var x = window.getSelection(); var x = window.getSelection();
return getNodePosition(x.focusNode, { l: x.focusOffset }); if (!x || !x.focusNode) {
return 0;
}
return getCursorPosInner(x.focusNode, x.focusOffset);
} }
function getSelectionText() { function getSelectionText() {
return window.getSelection().toString(); return window.getSelection().toString();
} }
function getSelectionStart() { function getSelectionStart() {
var x = window.getSelection(); var x = window.getSelection();
return getNodePosition(x.anchorNode, x.anchorOffset); if (!x || !x.anchorNode) {
return 0;
}
return getCursorPosInner(x.anchorNode, x.anchorOffset);
} }
function getNextNode(node) { function getNextNode(node) {
@ -213,6 +195,7 @@
var firstNode = true; var firstNode = true;
var i = 0; var i = 0;
var idx = 0; var idx = 0;
var lastNode = null;
while (node && i < 100) { while (node && i < 100) {
i++; i++;
if (node.nodeName === "BR") { if (node.nodeName === "BR") {
@ -223,24 +206,64 @@
pos--; pos--;
} else if (node.nodeType === Node.TEXT_NODE && node.nodeValue) { } else if (node.nodeType === Node.TEXT_NODE && node.nodeValue) {
if (node.nodeValue && idx + extra + node.nodeValue.length >= pos) { if (node.nodeValue && idx + extra + node.nodeValue.length >= pos) {
var range = document.createRange();
var sel = window.getSelection();
var newIdx = pos - idx - extra; var newIdx = pos - idx - extra;
if (newIdx < 0) { if (newIdx < 0) {
newIdx = 0; newIdx = 0;
} }
range.setStart(node, newIdx); focusNode(node, newIdx);
range.collapse(true);
sel.removeAllRanges();
sel.addRange(range);
return; return;
} }
idx += node.nodeValue.length; idx += node.nodeValue.length;
} }
if (idx + extra >= pos) {
if (node.hasChildNodes()) {
focusNode(node.lastChild, 0);
} else {
focusNode(node, 0);
}
return;
}
lastNode = node;
node = getNextNode(node); node = getNextNode(node);
firstNode = false; firstNode = false;
} }
if (lastNode && pos >= getText().length) {
if (lastNode.hasChildNodes()) {
focusNode(lastNode.lastChild, 0);
} else {
focusNode(lastNode, 0);
}
return;
}
}
function focusNode(node, offset) {
var r = document.createRange();
var s = window.getSelection();
r.setStart(node, offset);
r.collapse(true);
s.removeAllRanges();
s.addRange(r);
}
function setCaretToEnd() {
var target = document.getElementById("myContent");
var range = document.createRange();
var sel = window.getSelection();
range.selectNodeContents(target);
range.collapse(false);
sel.removeAllRanges();
sel.addRange(range);
target.focus();
range.detach();
// scroll to end
target.scrollTop = target.scrollHeight;
} }
function setTextDirection(align, dir) { function setTextDirection(align, dir) {