diff --git a/README.md b/README.md index 9835cf2..20b575f 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Nothing is planned for it at this time. ## 12.0 -Released: January 2025 +Released: Planned for some time between January and May 2025 minigui's `defaultEventHandler_*` functions take more specific objects. So if you see errors like: diff --git a/core.d b/core.d index 6a8b2bf..9d443b2 100644 --- a/core.d +++ b/core.d @@ -422,6 +422,46 @@ struct stringz { } } +/+ +/++ + A runtime tagged union, aka a sumtype. + + History: + Added February 15, 2025 ++/ +struct Union(T...) { + private uint contains_; + private union { + private T payload; + } + + static foreach(index, type; T) + @implicit public this(type t) { + contains_ = index; + payload[index] = t; + } + + bool contains(Part)() const { + static assert(indexFor!Part != -1); + return contains_ == indexFor!Part; + } + + inout(Part) get(Part)() inout { + if(!contains!Part) { + throw new ArsdException!"Dynamic type mismatch"(indexFor!Part, contains_); + } + return payload[indexFor!Part]; + } + + private int indexFor(Part)() { + foreach(idx, thing; T) + static if(is(T == Part)) + return idx; + return -1; + } +} ++/ + /+ DateTime year: 16 bits (-32k to +32k) diff --git a/database.d b/database.d index 7d21c75..0d2d16f 100644 --- a/database.d +++ b/database.d @@ -217,6 +217,7 @@ struct DatabaseDatum { alias toString this; /// ditto + version(D_OpenD) {} else // opend enables -preview=rvaluerefparam which makes this conflict with the rvalue toString in matching to!T stuff T opCast(T)() { import std.conv; return to!T(this.toString); diff --git a/docx.d b/docx.d new file mode 100644 index 0000000..d0480a7 --- /dev/null +++ b/docx.d @@ -0,0 +1,66 @@ +/++ + Bare minimum support for reading Microsoft Word files. + + History: + Added February 19, 2025 ++/ +module arsd.docx; + +import arsd.core; +import arsd.zip; +import arsd.dom; +import arsd.color; + +/++ + ++/ +class DocxFile { + private ZipFile zipFile; + private XmlDocument document; + + /++ + + +/ + this(FilePath file) { + this.zipFile = new ZipFile(file); + + load(); + } + + /// ditto + this(immutable(ubyte)[] rawData) { + this.zipFile = new ZipFile(rawData); + + load(); + } + + /++ + Converts the document to a plain text string that gives you + the jist of the document that you can view in a plain editor. + + Most formatting is stripped out. + +/ + string toPlainText() { + string ret; + foreach(paragraph; document.querySelectorAll("w\\:p")) { + if(ret.length) + ret ~= "\n\n"; + ret ~= paragraph.innerText; + } + return ret; + } + + // FIXME: to RTF, markdown, html, and terminal sequences might also be useful. + + private void load() { + loadXml("word/document.xml", (document) { + this.document = document; + }); + } + + private void loadXml(string filename, scope void delegate(XmlDocument document) handler) { + auto document = new XmlDocument(cast(string) zipFile.getContent(filename)); + handler(document); + } + +} diff --git a/ini.d b/ini.d index f4d83af..4d7c689 100644 --- a/ini.d +++ b/ini.d @@ -169,7 +169,7 @@ module arsd.ini; } /++ - Determines whether a type `T` is a string type compatible with this library. + Determines whether a type `T` is a string type compatible with this library. +/ enum isCompatibleString(T) = (is(T == immutable(char)[]) || is(T == const(char)[]) || is(T == char[])); diff --git a/minigui.d b/minigui.d index 366596f..30d68c8 100644 --- a/minigui.d +++ b/minigui.d @@ -13718,6 +13718,7 @@ class TextDisplayHelper : Widget { override void defaultEventHandler_dblclick(scope DoubleClickEvent dce) { if(dce.button == MouseButton.left) { with(l.selection()) { + // FIXME: for a url or file picker i might wanna use / as a separator intead scope dg = delegate const(char)[] (scope return const(char)[] ch) { if(ch == " " || ch == "\t" || ch == "\n" || ch == "\r") return ch; @@ -13912,7 +13913,8 @@ class TextDisplayHelper : Widget { return super.maxHeight(); } - void drawTextSegment(WidgetPainter painter, Point upperLeft, scope const(char)[] text) { + void drawTextSegment(MyTextStyle myStyle, WidgetPainter painter, Point upperLeft, scope const(char)[] text) { + painter.setFont(myStyle.font); painter.drawText(upperLeft, text); } @@ -13929,12 +13931,6 @@ class TextDisplayHelper : Widget { //writeln("Segment: ", txt); assert(style !is null); - auto myStyle = cast(MyTextStyle) style; - assert(myStyle !is null); - - painter.setFont(myStyle.font); - // defaultColor = myStyle.color; // FIXME: so wrong - if(info.selections && info.boundingBox.width > 0) { auto color = this.isFocused ? cs.selectionBackgroundColor : Color(128, 128, 128); // FIXME don't hardcode painter.fillColor = color; @@ -13957,7 +13953,11 @@ class TextDisplayHelper : Widget { } if(txt.stripInternal.length) { - drawTextSegment(painter, info.boundingBox.upperLeft - smw.position() + bounds.upperLeft, txt.stripRightInternal); + // defaultColor = myStyle.color; // FIXME: so wrong + if(auto myStyle = cast(MyTextStyle) style) + drawTextSegment(myStyle, painter, info.boundingBox.upperLeft - smw.position() + bounds.upperLeft, txt.stripRightInternal); + else if(auto myStyle = cast(MyImageStyle) style) + myStyle.draw(painter, info.boundingBox.upperLeft - smw.position() + bounds.upperLeft, txt.stripRightInternal); } if(info.boundingBox.upperLeft.y - smw.position().y > this.height) { @@ -13991,6 +13991,33 @@ class TextDisplayHelper : Widget { return font_; } } + + static class MyImageStyle : TextStyle, MeasurableFont { + MemoryImage image_; + Image converted; + this(MemoryImage image) { + this.image_ = image; + this.converted = Image.fromMemoryImage(image); + } + + bool isMonospace() { return false; } + int averageWidth() { return image_.width; } + int height() { return image_.height; } + int ascent() { return image_.height; } + int descent() { return 0; } + + int stringWidth(scope const(char)[] s, SimpleWindow window = null) { + return image_.width; + } + + override MeasurableFont font() { + return this; + } + + void draw(WidgetPainter painter, Point upperLeft, scope const(char)[] text) { + painter.drawImage(upperLeft, converted); + } + } } /+ @@ -14059,6 +14086,8 @@ abstract class EditableTextWidget : Widget { void wordWrapEnabled(bool enabled) { if(useCustomWidget) { wordWrapEnabled_ = enabled; + if(tdh) + tdh.wordWrapEnabled_ = true; textLayout.wordWrapWidth = enabled ? this.width : 0; // FIXME } else version(win32_widgets) { SendMessageW(hwnd, EM_FMTLINES, enabled ? 1 : 0, 0); @@ -14431,11 +14460,12 @@ class PasswordEdit : EditableTextWidget { super(textLayout, smw); } - override void drawTextSegment(WidgetPainter painter, Point upperLeft, scope const(char)[] text) { + override void drawTextSegment(MyTextStyle myStyle, WidgetPainter painter, Point upperLeft, scope const(char)[] text) { char[256] buffer = void; int bufferLength = 0; foreach(dchar ch; text) buffer[bufferLength++] = '*'; + painter.setFont(myStyle.font); painter.drawText(upperLeft, buffer[0..bufferLength]); } } diff --git a/pptx.d b/pptx.d new file mode 100644 index 0000000..0c4c595 --- /dev/null +++ b/pptx.d @@ -0,0 +1,93 @@ +/++ + Bare minimum support for reading Microsoft PowerPoint files. + + History: + Added February 19, 2025 ++/ +module arsd.pptx; + +// see ~/zip/ppt + +import arsd.core; +import arsd.zip; +import arsd.dom; +import arsd.color; + +/++ + ++/ +class PptxFile { + private ZipFile zipFile; + private XmlDocument document; + + /++ + + +/ + this(FilePath file) { + this.zipFile = new ZipFile(file); + + load(); + } + + /// ditto + this(immutable(ubyte)[] rawData) { + this.zipFile = new ZipFile(rawData); + + load(); + } + + /// public for now but idk forever. + PptxSlide[] slides; + + private string[string] contentTypes; + private struct Relationship { + string id; + string type; + string target; + } + private Relationship[string] relationships; + + private void load() { + loadXml("[Content_Types].xml", (document) { + foreach(element; document.querySelectorAll("Override")) + contentTypes[element.attrs.PartName] = element.attrs.ContentType; + }); + loadXml("ppt/_rels/presentation.xml.rels", (document) { + foreach(element; document.querySelectorAll("Relationship")) + relationships[element.attrs.Id] = Relationship(element.attrs.Id, element.attrs.Type, element.attrs.Target); + }); + + loadXml("ppt/presentation.xml", (document) { + this.document = document; + + foreach(element; document.querySelectorAll("p\\:sldIdLst p\\:sldId")) + loadXml("ppt/" ~ relationships[element.getAttribute("r:id")].target, (document) { + slides ~= new PptxSlide(this, document); + }); + }); + + // then there's slide masters and layouts and idk what that is yet + } + + private void loadXml(string filename, scope void delegate(XmlDocument document) handler) { + auto document = new XmlDocument(cast(string) zipFile.getContent(filename)); + handler(document); + } + +} + +class PptxSlide { + private PptxFile file; + private XmlDocument document; + private this(PptxFile file, XmlDocument document) { + this.file = file; + this.document = document; + } + + /++ + +/ + string toPlainText() { + // FIXME: need to handle at least some of the layout + return document.root.innerText; + } +} diff --git a/rtf.d b/rtf.d new file mode 100644 index 0000000..5016e67 --- /dev/null +++ b/rtf.d @@ -0,0 +1,390 @@ +/++ + Some support for the RTF file format - rich text format, like produced by Windows WordPad. + + History: + Added February 13, 2025 ++/ +module arsd.rtf; + +// https://www.biblioscape.com/rtf15_spec.htm +// https://latex2rtf.sourceforge.net/rtfspec_62.html +// https://en.wikipedia.org/wiki/Rich_Text_Format + +// spacing is in "twips" or 1/20 of a point (as in text size unit). aka 1/1440th of an inch. + +import arsd.core; +import arsd.color; + +/++ + ++/ +struct RtfDocument { + RtfGroup root; + + /++ + There are two helper functions to process a RTF file: one that does minimal processing + and sends you the data as it appears in the file, and one that sends you preprocessed + results upon significant state changes. + + The former makes you do more work, but also exposes (almost) the whole file to you (it is still partially processed). The latter lets you just get down to business processing the text, but is not a complete implementation. + +/ + void process(void delegate(RtfPiece piece, ref RtfState state) dg) { + recurseIntoGroup(root, RtfState.init, dg); + } + + private static void recurseIntoGroup(RtfGroup group, RtfState parentState, void delegate(RtfPiece piece, ref RtfState state) dg) { + // might need to copy... + RtfState state = parentState; + auto newDestination = group.destination; + if(newDestination.length) + state.currentDestination = newDestination; + + foreach(piece; group.pieces) { + if(piece.contains == RtfPiece.Contains.group) { + recurseIntoGroup(piece.group, state, dg); + } else { + dg(piece, state); + } + } + + } + + //Color[] colorTable; + //Object[] fontTable; +} + +/// ditto +RtfDocument readRtfFromString(const(char)[] s) { + return readRtfFromBytes(cast(const(ubyte)[]) s); +} + +/// ditto +RtfDocument readRtfFromBytes(const(ubyte)[] s) { + RtfDocument document; + + if(s.length < 7) + throw new ArsdException!"not a RTF file"("too short"); + if((cast(char[]) s[0..6]) != `{\rtf1`) + throw new ArsdException!"not a RTF file"("wrong magic number"); + + document.root = parseRtfGroup(s); + + return document; +} + +/// ditto +struct RtfState { + string currentDestination; +} + +unittest { + auto document = readRtfFromString("{\\rtf1Hello\nWorld}"); + //import std.file; auto document = readRtfFromString(readText("/home/me/test.rtf")); + document.process((piece, ref state) { + final switch(piece.contains) { + case RtfPiece.Contains.controlWord: + // writeln(state.currentDestination, ": ", piece.controlWord); + break; + case RtfPiece.Contains.text: + // writeln(state.currentDestination, ": ", piece.text); + break; + case RtfPiece.Contains.group: + assert(0); + } + }); + + // writeln(toPlainText(document)); +} + +string toPlainText(RtfDocument document) { + string ret; + document.process((piece, ref state) { + if(state.currentDestination.length) + return; + + final switch(piece.contains) { + case RtfPiece.Contains.controlWord: + if(piece.controlWord.letterSequence == "par") + ret ~= "\n\n"; + else if(piece.controlWord.toDchar != dchar.init) + ret ~= piece.controlWord.toDchar; + break; + case RtfPiece.Contains.text: + ret ~= piece.text; + break; + case RtfPiece.Contains.group: + assert(0); + } + }); + + return ret; +} + +private RtfGroup parseRtfGroup(ref const(ubyte)[] s) { + RtfGroup group; + + assert(s[0] == '{'); + s = s[1 .. $]; + if(s.length == 0) + throw new ArsdException!"bad RTF file"("premature end after {"); + while(s[0] != '}') { + group.pieces ~= parseRtfPiece(s); + if(s.length == 0) + throw new ArsdException!"bad RTF file"("premature end before {"); + } + s = s[1 .. $]; + return group; +} + +private RtfPiece parseRtfPiece(ref const(ubyte)[] s) { + while(true) + switch(s[0]) { + case '\\': + return RtfPiece(parseRtfControlWord(s)); + case '{': + return RtfPiece(parseRtfGroup(s)); + case '\t': + s = s[1 .. $]; + return RtfPiece(RtfControlWord.tab); + case '\r': + case '\n': + // skip irrelevant characters + s = s[1 .. $]; + continue; + default: + return RtfPiece(parseRtfText(s)); + } +} + +private RtfControlWord parseRtfControlWord(ref const(ubyte)[] s) { + assert(s[0] == '\\'); + s = s[1 .. $]; + + if(s.length == 0) + throw new ArsdException!"bad RTF file"("premature end after \\"); + + RtfControlWord ret; + + size_t pos; + do { + pos++; + } while(pos < s.length && isAlpha(cast(char) s[pos])); + + ret.letterSequence = (cast(const char[]) s)[0 .. pos].idup; + s = s[pos .. $]; + + if(isAlpha(ret.letterSequence[0])) { + if(s.length == 0) + throw new ArsdException!"bad RTF file"("premature end after control word"); + + int readNumber() { + if(s.length == 0) + throw new ArsdException!"bad RTF file"("premature end when reading number"); + int count; + while(s[count] >= '0' && s[count] <= '9') + count++; + if(count == 0) + throw new ArsdException!"bad RTF file"("expected negative number, got something else"); + + auto buffer = cast(const(char)[]) s[0 .. count]; + s = s[count .. $]; + + int accumulator; + foreach(ch; buffer) { + accumulator *= 10; + accumulator += ch - '0'; + } + + return accumulator; + } + + if(s[0] == '-') { + ret.hadNumber = true; + s = s[1 .. $]; + ret.number = - readNumber(); + + // negative number + } else if(s[0] >= '0' && s[0] <= '9') { + // non-negative number + ret.hadNumber = true; + ret.number = readNumber(); + } + + if(s[0] == ' ') { + ret.hadSpaceAtEnd = true; + s = s[1 .. $]; + } + + } else { + // it was a control symbol + if(ret.letterSequence == "\r" || ret.letterSequence == "\n") + ret.letterSequence = "par"; + } + + return ret; +} + +private string parseRtfText(ref const(ubyte)[] s) { + size_t end = s.length; + foreach(idx, ch; s) { + if(ch == '\\' || ch == '{' || ch == '\t' || ch == '\n' || ch == '\r' || ch == '}') { + end = idx; + break; + } + } + auto ret = s[0 .. end]; + s = s[end .. $]; + + // FIXME: charset conversion? + return (cast(const char[]) ret).idup; +} + +// \r and \n chars w/o a \\ before them are ignored. but \ at the end of al ine is a \par +// \t is read but you should use \tab generally +// when reading, ima translate the ascii tab to \tab control word +// and ignore +struct RtfPiece { + /++ + +/ + Contains contains() { + return contains_; + } + /// ditto + enum Contains { + controlWord, + group, + text + } + + this(RtfControlWord cw) { + this.controlWord_ = cw; + this.contains_ = Contains.controlWord; + } + this(RtfGroup g) { + this.group_ = g; + this.contains_ = Contains.group; + } + this(string s) { + this.text_ = s; + this.contains_ = Contains.text; + } + + /++ + +/ + RtfControlWord controlWord() { + if(contains != Contains.controlWord) + throw ArsdException!"RtfPiece type mismatch"(contains); + return controlWord_; + } + /++ + +/ + RtfGroup group() { + if(contains != Contains.group) + throw ArsdException!"RtfPiece type mismatch"(contains); + return group_; + } + /++ + +/ + string text() { + if(contains != Contains.text) + throw ArsdException!"RtfPiece type mismatch"(contains); + return text_; + } + + private Contains contains_; + + private union { + RtfControlWord controlWord_; + RtfGroup group_; + string text_; + } +} + +// a \word thing +struct RtfControlWord { + bool hadSpaceAtEnd; + bool hadNumber; + string letterSequence; // what the word is + int number; + + bool isDestination() { + switch(letterSequence) { + case + "author", "comment", "subject", "title", + "buptim", "creatim", "printim", "revtim", + "doccomm", + "footer", "footerf", "footerl", "footerr", + "footnote", + "ftncn", "ftnsep", "ftnsepc", + "header", "headerf", "headerl", "headerr", + "info", "keywords", "operator", + "pict", + "private", + "rxe", + "stylesheet", + "tc", + "txe", + "xe": + return true; + case "colortbl": + return true; + case "fonttbl": + return true; + + default: return false; + } + } + + dchar toDchar() { + switch(letterSequence) { + case "{": return '{'; + case "}": return '}'; + case `\`: return '\\'; + case "~": return '\ '; + case "tab": return '\t'; + case "line": return '\n'; + default: return dchar.init; + } + } + + bool isTurnOn() { + return !hadNumber || number != 0; + } + + // take no delimiters + bool isControlSymbol() { + // if true, the letterSequence is the symbol + return letterSequence.length && !isAlpha(letterSequence[0]); + } + + // letterSequence == ~ is a non breaking space + + static RtfControlWord tab() { + RtfControlWord w; + w.letterSequence = "tab"; + return w; + } +} + +private bool isAlpha(char c) { + return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'); +} + +// a { ... } thing +struct RtfGroup { + RtfPiece[] pieces; + + string destination() { + return isStarred() ? + ((pieces.length > 1 && pieces[1].contains == RtfPiece.Contains.controlWord) ? pieces[1].controlWord.letterSequence : null) + : ((pieces.length && pieces[0].contains == RtfPiece.Contains.controlWord && pieces[0].controlWord.isDestination) ? pieces[0].controlWord.letterSequence : null); + } + + bool isStarred() { + return (pieces.length && pieces[0].contains == RtfPiece.Contains.controlWord && pieces[0].controlWord.letterSequence == "*"); + } +} + +/+ + \pard = paragraph defaults ++/ diff --git a/textlayouter.d b/textlayouter.d index 219a1f2..211495f 100644 --- a/textlayouter.d +++ b/textlayouter.d @@ -24,8 +24,26 @@ +/ module arsd.textlayouter; -// see: https://harfbuzz.github.io/a-simple-shaping-example.html +// FIXME: elastic tabstops https://nick-gravgaard.com/elastic-tabstops/ +/+ +Each cell ends with a tab character. A column block is a run of uninterrupted vertically adjacent cells. A column block is as wide as the widest piece of text in the cells it contains or a minimum width (plus padding). Text outside column blocks is ignored. ++/ +// opening tabs work as indentation just like they do now, but wrt the algorithm are just considered one unit. +// then groups of lines with more tabs than the opening ones are processed together but only if they all right next to each other +// FIXME: soft word wrap w/ indentation preserved +// FIXME: line number stuff? + +// want to support PS (new paragraph), LS (forced line break), FF (next page) +// and GS =
FS = |