Posted inUncategorized

CsScintilla – CopperSpice Port of Scintilla Now Available

There is now a CopperSpice port of Scintilla available on SourceForge: CsScintilla. Currently it is configured to only build for Linux. If you wish to submit a pull request for something to build both the library and the examples natively on Windows, Mac, or other, please feel free.

The only additional restriction the license includes is that you cannot use this library to create an editor/IDE that uses any kind of plug-in/add-on support. Just look at Emacs, Atom, VSCode, insert-editor-using-plug-ins-here. Hundreds of plug-ins/add-ons that do almost the same thing, none of which do it well. Half of the plug-ins conflict with others. Thousands of plug-ins that no longer work at all. A plug-in library littered with landmines that will completely trash your editor installation if you even attempt to install them.

No, I didn’t endure all of the pain creating this and all of the example programs so that you can create something that perpetually inflicts pain on others long after your death. You’ve got to compile & link your features into your editor/IDE.

The Journey

Regular readers are well aware of my CopperSpice journey. Now that Qt really isn’t OpenSource anymore (community does not control direction of project and is barred from releasing any LTS version) people are leaving Qt in droves. Debian doesn’t even have Qt maintainers anymore. They are relying on whatever KDE provides which isn’t everything. Most Linux distros have dropped KDE and many will be dropping all things Qt in the not-too-distant-future. A good number now no longer install anything using Qt by default I’m told.

I started hitting performance walls with CopperSpice QPlainTextEdit and the regular expression based syntax highlighting while creating RedDiamond (initially based on CopperSpice Diamond.) Having started my career on the DEC platforms I have wanted EDT keypad navigation in a PC editor forever. Emacs has almost passing EDT Keypad Navigation, but it fails by not being able to map NumLock as GOLD unless you hack your terminal definition. That’s fallout from an age-old feud.

CsScintilla is born

Scintilla is the reason most PC based texted editors and IDEs exist. You can find a partial list here. A better list can be found here. Odds are high one of your favorites is listed. When I started hitting performance problems with source files > 5000 lines reaching for Scintilla was a natural thing. There was already a Qt port of Scintilla. There just wasn’t a CopperSpice port and the two projects have forked far enough apart to make it a bit of work.

When you need it, you build it. The Scintilla community was helpful in answering questions but they did not want to add CopperSpice as an officially supported port. Too many still clinging to the dead Qt platform. No problem. CsScintilla is born.

Much Needed Examples

One of the big problems with the Scintilla project is lack of decent examples. Yes, I’m sure they were considered decent at one time. Yes, I use Scite from time to time. The problem is the minimal examples exploded out into “expert friendly” things. There so much extra stuff that someone new to the library simply couldn’t get started, especially using a different platform or GUI library.

A big chunk of my time was spent creating a series of examples that build upon one another. Yes, there are some much needed enhancements/extensions for Scintilla in this lib. Yes, they were offered back. CsScintilla appears to be growing into more than just a port.

Example1 – Minimal

Example 1 – Minimal

An absolute minimal example. It just puts the widget in a QMainWindow with a simplistic menu to Open/Save a file. The constructor for MainWindow shows you just how little you really need.

MainWindow constructor

Technically, if you don’t want a menu you don’t need the createMenus() or the connect() call. I made certain to put a comment in there too.

If someone takes on the task of building CsScintilla for MAC or Windows, Example1 should build and run just fine. It does as little as possible.

Example2 – Tabs

Like I said, baby steps. Example2 just changes Example1 to use tabs instead of a single edit instance.

Example 2 – Tabs

You will notice there is no syntax highlighting. I did turn on line numbering though.

Example3 – EDT Keypad Support

This is the first to provide some level of EDT Keypad navigation and command support. It adds a Show Clipboard option so you can see what happens to the Clipboard with various EDT Keypad actions. EDT has separate buffers for:

DEL CHAR – UNDEL CHAR

DEL WORD – UNDEL WORD

DEL LINE / DEL EOL – UNDEL LINE / UNDEL EOL

The only one that uses the traditional PC OS Clipboard is CUT/PASTE. Don’t worry a big help window is included on the Help menu.

EDT keypad help

Example4 – Font and Colors

Choose font and colors

This isn’t syntax highlighting font and color selection. Just letting you set something other than your OS UI default. There is not an example showing syntax highlighting font and color. For that you have to wait for the new RedDiamond release. (It’s close, just a couple of nit-pick things.) For people who care nothing about syntax highlighting (yes, they exist) and don’t need an editor to print, Example4 may be more than enough. It has more capabilities than LeafPad but doesn’t go overboard. LeafPad was included with just about every Linux distro until the version of GTK it used was no longer supported.

As more an more Linux distros drop Qt some flavor of Example4 may well become the “minimal” editor. Well, unless they go whole hog and included RedDiamond as the default editor.

Example5 – Show KeyMap

Example5 really exists simply to show one of the major improvements CsScintilla made over base Scintilla.

Generates the keymap text

It generates the keymap text. The Scintilla editor widget has a bunch of built in functions mapped to various keystrokes. For years everyone wanted a “list” function and for years everyone had to roll their own. There are several format flavors one can choose when using the function from within CsScintilla.

Note: This example doesn’t go to the level of allowing the user to change keymap for a specific function. Believe it or not, getting a list of all the current key mappings and text of the function associated with them was the hard part. There already was a function to actually map keystrokes.

We need to talk about “minimal”

LeafPad and many other editors of that era have gone away or are going away. Many of them handled only ASCII. For us English users that was great! You could select text from a word processing document, Web page, whatever, and when you pasted into the “minimal” editor you only got the text. You didn’t get all of those bizarre unseen formatting characters that could jack things like a compiler up.

Today “minimal” tends to mean at least UTF-8 if not UTF-32 support. You have to now filter stuff out with your paste function.

Paste special

Very few editors do this. The example editors certainly don’t. You need to be aware of it because Scintilla has UTF support. That means you can accidentally paste in non-visible format information from one source that will hose up your compiler or other software parsing your text file.

Another Tweak Worth Mentioning

CsScintillaEditBase.cpp has the following around line 750 or so.

Difference from Qt version

The Qt version has this around line 580 or so

Qt version

There is no way this works with codeset that exceeds UTF-16. There are a lot of 24-bit and higher Unicode codesets out there. CopperSpice has a QChar32 character type it uses. Yes, this wastes a lot of space when working with just ASCII. When I started with C programming, 640K was the physical maximum we could have in a desktop computer. The machine I’m typing this on has 128GB and God only knows how much “virtual RAM” in the form of a swap file. A 64-bit processor is going to have to transfer two 32-bit values in a register anyway.

Wasting RAM isn’t the sin it used to be.

Roland Hughes started his IT career in the early 1980s. He quickly became a consultant and president of Logikal Solutions, a software consulting firm specializing in OpenVMS application and C++/Qt touchscreen/embedded Linux development. Early in his career he became involved in what is now called cross platform development. Given the dearth of useful books on the subject he ventured into the world of professional author in 1995 writing the first of the "Zinc It!" book series for John Gordon Burke Publisher, Inc.

A decade later he released a massive (nearly 800 pages) tome "The Minimum You Need to Know to Be an OpenVMS Application Developer" which tried to encapsulate the essential skills gained over what was nearly a 20 year career at that point. From there "The Minimum You Need to Know" book series was born.

Three years later he wrote his first novel "Infinite Exposure" which got much notice from people involved in the banking and financial security worlds. Some of the attacks predicted in that book have since come to pass. While it was not originally intended to be a trilogy, it became the first book of "The Earth That Was" trilogy:
Infinite Exposure
Lesedi - The Greatest Lie Ever Told
John Smith - Last Known Survivor of the Microsoft Wars

When he is not consulting Roland Hughes posts about technology and sometimes politics on his blog. He also has regularly scheduled Sunday posts appearing on the Interesting Authors blog.