Behind the scenes we have been very busy adapting our entire codebase so it compiles with both Delphi and Lazarus, with the aim of delivering a fully native IDE for MacOS, Windows and Linux – under both x64 and ARM chipsets.
Tag Archives: Quartex Pascal
Platform specific defines
Today we added a new token to the “APP::” magic namespace, namely “config”. As the name hints at this provides information about the current build configuration.
Using LLM’s with Quartex Pascal
Nico Wouterse is no stranger to anyone in the Quartex community and have been with us since the project’s inception. He has worked quite closely with LLM technologies the past few years, building his own design library and design principle framework.
Datamodules are now here!
In the previous post I talked about our support for non-visual components. This is now in place and I moved on to the next ticket on our list: datamodules! And we already have this working!
Support for non-visual components
Up until now the form designer in Quartex Pascal has focused purely on visual controls. But as the IDE matures -more and more features common to RAD development tools are surfacing. Non visual components are finally supported by the IDE!
Quartex Pascal v1.0.1.0 is out!
We hope we have managed to fix most of the hiccups people have experienced, and we will of course continue to polish and add more and more features according to our plans and roadmap.
From handle to widget
In the Quartex Pascal RTL we support both traditional pascal events, like people are used to from Delphi or Freepascal, as well as delegate objects native to JavaScript. Most widgets exposes standard events like OnClick when it’s useful, and if you need more specific event handling you can attach a delegate for it.
Creating a scrolltext widget
In this article we will be creating a scrolltext widget from scratch, which is a good way to demonstrate how easy it is to write your own controls in QTX. It is a lot easier than under Delphi or Lazarus since the browser provides most of the functionality out of the box for you, and the QTX runtime library provides the rest.
Using Font-Awesome in Quartex Pascal
When creating websites or mobile applications there is always the issue of glyphs and button graphics. In the past couple of decades or so both Android and iOS have introduced standardized glyphs for buttons, lists and toolbars that are intuitive to understand and which has become somewhat universal. The same can be said for websites.Continue reading “Using Font-Awesome in Quartex Pascal”
Two new controls: table and stringgrid
We have two new widgets in the RTL this week! Namely TQTXTable and TQTXStringGrid which does exactly what you think they do.