-
Content Count
966 -
Joined
-
Last visited
-
Days Won
61
Everything posted by pyscripter
-
What is wrong with TStringList
pyscripter replied to pyscripter's topic in RTL and Delphi Object Pascal
Agree. In the old days (pre Unicode) I wrote the attached Strmtxt.pas (converts a stream to a text file). It would need to be updated to work with recent versions of Delphi. And it works great with buffered streams such as @David Heffernan's TReadOnlyCachedFileStream. With that you could do something like: var Stream := TReadOnlyCachedFileStream.Create('c:\temp\t'); AssignStream(Txt, Stream); while not EOF(Txt) do begin Readln(Txt,S); Writeln(MemoText, S); end; However when you build a text editor such as SynEdit, you typically load the whole file in memory. In any case, the focus of this topic was the limitations of TStringList with regards to dealing with encodings, BOM and Line breaks. It was not about what is the most efficient way to do text processing in Delphi. STRMTXT.PAS -
Delphi 10.4.1 LIBSUFFIX AUTO
pyscripter replied to pyscripter's topic in RTL and Delphi Object Pascal
Already reported by @Remy Lebeau!😀 https://quality.embarcadero.com/browse/RSP-30820?jql= -
Delphi 10.4.1 LIBSUFFIX AUTO
pyscripter replied to pyscripter's topic in RTL and Delphi Object Pascal
Thanks Darian. I did. The problem only happens when you have a dpk file without a project file. If the dpk file contains the new directive {$LIBSUFFIX AUTO} the IDE does not recognize that and thinks the actual suffix is "AUTO". -
I would like to add that if you change the default Windows page to 65001 and have pas files containing ASCII characters > 127 then your files will be messed up when you open them in Delphi. Also if you build your Delphi projects you will get warnings or even worse produce erroneous executables without warnings. Try to compile SynEdit for example. Having said that, this option is great for interacting with console applications and system processes and being able to at last handle unicode console input/output.
-
Agree with all the above, except that UTF8String is an an AnsiString with a Code Page 65001 and is also Unicode compliant and incurs no conversion loss. It is the default string type in FPC. In Linux systems everything is UTF8. And nowadays 65001 it can be set as the default code page in Windows.
-
Delphi 10.4.1 LIBSUFFIX AUTO
pyscripter replied to pyscripter's topic in RTL and Delphi Object Pascal
During building the package from inside the IDE, -
Amazing! After installing a few packages in 10.4.1 (Synedit was one of them) Gexperts Grep Results now works! Nice because Grep Search and Unit Clause Manager are my favorite Gexperts.
-
Running the stand-alone grep reports: "Failed to load any of the possible GExpert.dlls"
-
Help: preview of Svg image in Open-Dialog works only with VCLStyle active.
pyscripter replied to Carlo Barazzetta's topic in VCL
It should be mentioned that one of the package units registers the new file format: initialization TPicture.RegisterFileFormat('SVG', 'Scalable Vector Graphics', TSVGGraphic); Use PowerToys to get SVG preview at run time when you disable Vcl styles. (Also in File Explorer) -
10.4.1 Released today
pyscripter replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
Wow! And a fix for Threading - Incorrect calculation of IdleWorkerThreadCount. See https://en.delphipraxis.net/topic/2428-threads-in-ppl-thread-pool-not-returning-to-idle-as-expected/ -
10.4.1 Released today
pyscripter replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
The fix to TMonitor discussed in is in. -
... of TXMLDocument. Fully agree. MSXML contains a SAX reader/writer. Delphi implementation examples at http://www.craigmurphy.com/bug/. XMLLite is a good alternative to SAX on Windows. See the note about push and pull parsers. Similar speed and much easier to program with. And there is a Delphi wrapper (just a single unit to add to your project).
-
OmniXML is included in Delphi, but I am not sure how it compares to the standalone one. If you look at the benchmarks of OXml you will see that if you access the library through Delphi XML and the OXml vendor you would consume almost 10 times more memory and 5.7 times more CPU time compared to raw access. The navigation time increases 32 times!! Which is exactly the point I was trying to make.
-
Where exactly do we disagree? I started by saying the features are great. But if xml processing is a performance bottleneck you can improve performance drastically (see below) by accessing the underlying implementation directly with minimal changes to your code, since implementations follow the standard DOM interfaces.
-
imagelist Looking for Icon Fonts support in Delphi for High-DPI and Themed app?
pyscripter replied to Carlo Barazzetta's topic in VCL
Indeed: From https://docs.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-addfontmemresourceex -
dic.Items['aaa']:=l2; dic.Items['aaa'] already contains l2 and l2 is freed before it is readded, since you set doOwnsValues Also an issue would occur if you do dic.Items['bbb']:=l2; When the dictionary is destroyed the list will be freed twice.
-
See https://github.com/akramhussein/Mute
-
Generic circular buffer library released
pyscripter replied to TurboMagic's topic in Algorithms, Data Structures and Class Design
Has this been released? Is that the develop branch? -
PyScripter reached 1 million downloads from Sourceforge
pyscripter replied to pyscripter's topic in I made this
True, but it is kind of hard to keep track of them (count, geographic distribution etc.). -
August 2020 GM Blog post
pyscripter replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
It refers to the intention to promote Python4Delphi as a means of bringing Python and Delphi closer together: Python for Delphi (P4D) is a set of free components that wrap up the Python dll into Delphi and Lazarus (FPC). They let you easily execute Python scripts, create new Python modules and new Python types. You can create Python extensions as dlls and much more. P4D provides different levels of functionality: Low-level access to the python API High-level bi-directional interaction with Python Access to Python objects using Delphi custom variants (VarPyth.pas) Wrapping of Delphi objects for use in python scripts using RTTI (WrapDelphi.pas) Creating python extension modules with Delphi classes and functions P4D makes it very easy to use python as a scripting language for Delphi applications. It comes with an extensive range of demos and tutorials. -
Java terminology... https://www.programcreek.com/2011/12/monitors-java-synchronization-mechanism/
-
High-level interface-based encapsulation of Direct2D Svg functionality
pyscripter replied to pyscripter's topic in Windows API
@Attila KovacsThanks. Just replace D2D1_DRAW_TEXT_OPTIONS_ENABLE_COLOR_FONT with $00000004. And of course both LPCWSTR and LPWSTR are cast to PWideChar. But you are right! I would like to add that the purpose of Winapi.D2DMissing is not to provide for the missing D2D API, but to include just enough to serve the purpose of handling svg files. Warning: there are many translation errors in the the parts not used in this project. "TOSVersion.Build returns 0 on my system". Any idea why? Is this a Delphi bug? A more reliable way would be: if Supports(RenderTarget, ID2D1DeviceContext5) then //Supported But that would involve creating the Factory and the Render Target. Any other suggestions? -
High-level interface-based encapsulation of Direct2D Svg functionality
pyscripter replied to pyscripter's topic in Windows API
The attached fixes both issues. Svg.zip -
High-level interface-based encapsulation of Direct2D Svg functionality
pyscripter replied to pyscripter's topic in Windows API
Thanks. The aim is to integrate it with https://github.com/EtheaDev/SVGIconImageList -
Is there a way to check whether the Windows version is 10 with the Creators Update or later installed, using the RTL? I know that Jcl provides support for that.