-
Content Count
2751 -
Joined
-
Last visited
-
Days Won
146
Everything posted by Anders Melander
-
Any tool to convert C# to Delphi ?
Anders Melander replied to William23668's topic in Delphi Third-Party
Nowadays you could just use one of the many LLMs. It's one of the few things they are actually good at. https://medium.com/@kapoorchinmay231/large-language-models-llms-for-code-conversion-new-age-of-ai-72ebd2c8918d -
How to calculate Unicode text width?
Anders Melander replied to luebbe's topic in RTL and Delphi Object Pascal
You are talking about shaping which is not relevant to the problem here. Shaping translates a stream of Unicode code points into glyph IDs and the result 100% depends on the font used to do the shaping. That is the whole point of shaping. FWIW, I've written a shaper so I know a bit about these things... Anyway I just realized that I forgot to explain why it is that... three characters occupy five columns ...even though the font is monospaced. The reason is that the font doesn't contain a mapping for the three Unicode codepoints (U+7F16, U+7801, U+FF1A). So what Windows (or whatever) does, instead of just giving up and display � or □, it searches its fallback font list for a font that 1) supports the Unicode script of the characters (Han in this case) and 2) contains a mapping for the characters (i.e. can map codepoint to glyph id) and then it uses that font to display the glyphs. Since the fallback font isn't monospaced, or at least isn't monospaced with the same character width, you get a different glyph width. -
How to calculate Unicode text width?
Anders Melander replied to luebbe's topic in RTL and Delphi Object Pascal
...or one could just use TCanvas.TextWidth (VCL) TCanvas.TextWidth (FMX) -
How to calculate Unicode text width?
Anders Melander replied to luebbe's topic in RTL and Delphi Object Pascal
Here's a good explainer on the problem you are facing: https://stackoverflow.com/questions/27331819/whats-the-difference-between-a-character-a-code-point-a-glyph-and-a-grapheme -
How to calculate Unicode text width?
Anders Melander replied to luebbe's topic in RTL and Delphi Object Pascal
That doesn't help with aligning text in a text file. -
How to calculate Unicode text width?
Anders Melander replied to luebbe's topic in RTL and Delphi Object Pascal
I can't see how it can be done. Even if you roll your own, which you would have to, and even with a monospaced font, the width will depend on how the particular font composes Unicode code points into graphemes (individual graphical units) and then glyphs (the visual representation the font produces). -
You really shouldn't prevent the user from moving the focus; It's one of the most annoying ways to do validation. Instead do your validation in the OK handler. If you use TActionList you can also do the validation in the OnUpdate event handler and only enable the OK button when all validations pass. If you want to be really nice to your users do the validation while they are entering data but instead of blocking them just indicate errors with color or a symbol.
-
memory; The function of EmptyWorkingSet
Anders Melander replied to DelphiUdIT's topic in Windows API
Nope. It's there so that a process which Knows that its access and allocation patterns will have caused the working set to grow. Knows that it will no longer need that working set for the foreseeable future. Has virtual memory backing store (i.e. page file). can trim the working set in order to lessen the memory pressure on the rest of the system. But you don't have virtual memory so this don't apply to you. By trimming your working set the only thing you have accomplished is to move pages to the working set cache. Since you don't have virtual memory, nobody else can use those pages anyway because their content can't be saved anywhere. So the only thing that can happen to them is that they will be paged back into your working set at some point when your process needs them. End result: Nothing but overhead. -
memory; The function of EmptyWorkingSet
Anders Melander replied to DelphiUdIT's topic in Windows API
You still haven't understood how this works. The memory in your working set isn't "owned" by the process; It's owned by Windows and the process only has it on loan. If Windows needs the memory for something else (e.g. another process) it will take it back without any action needed (or possible) from your process. The working set pages that you are trimming are unused by the process but was assigned to it at some point because it needed them. The reason that the OS hasn't removed them from your working set by itself is that there has been no need for it; Nobody else has made a memory request that couldn't be satisfied elsewhere. The whole idea behind the working set model is to allow the system to grow and shrink the working sets based on demand. Why not spend 30 minutes to read up on how it works. Just Google windows working set. Or simply search for EmptyWorkSet and see if you can find a single person who thinks it's a good solution. -
memory; The function of EmptyWorkingSet
Anders Melander replied to DelphiUdIT's topic in Windows API
You are. The working set are the pages of a process' virtual memory that resides in physical memory. They are there because the process has a need for them to be there (e.g. it has referenced an address in virtual memory causing a working set page to be mapped to that address). If something else in the system has a need for physical memory, and it's all in use (which, by design, is normally is - because why not) then the least recently used pages will be paged out and eventually written to the page file, so the physical page can be mapped to the other process' working set. The above is just a simplification of the virtual memory management but the point is that, unless what you are doing is really extreme, then you don't have to think about it; It just magically works. I know everybody has to go through the phase of thinking that they can outsmart the OS virtual memory management by messing with the working set but you really should leave it alone. The OS virtual memory system was designed 50 years ago by people who actually knew what they were doing. You might very well be having memory issues but look to the memory manager instead. The working set isn't the problem. -
memory; The function of EmptyWorkingSet
Anders Melander replied to DelphiUdIT's topic in Windows API
It would be so sweet if people voicing opinions about how [insert topic here] should work actually understood the topic. -
ANN HelpNDoc 9.2 is available: AI-Powered Technical Writing, improved documentation import, and more...
Anders Melander replied to HelpNDoc's topic in Delphi Third-Party
That's up to you. I just need the three parts separate: layout, structure, content. Layout is provided by some kind of customizable templates. Structure data is provided by the source code parser. The user provide the content via some nice editors. I don't care if the content format is XML as I can easily migrate any existing data to another format. Here's a small example of some documentation built with DI: https://github.com/andersmelander/DWScriptStudio/tree/master/Documentation And another: https://developer.sigmaestimates.com/api-reference/ Both of these were built by generating pascal source code from DWScript meta data and then let DI have a go at that source. Since the source is generated, the help content has to be external to the source. However, the big problem with the output generated by DI is that it is impossible to integrate it properly into an existing website since it must be embedded in an iframe. For example I have another site where the main content of the site is conceptual help. I would like to have the API documentation integrated in this but because of the iframe it is impossible to link from the conceptual help directly into the API help and vice versa.- 7 replies
-
- helpndoc
- help authoring tools
-
(and 1 more)
Tagged with:
-
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Anders Melander replied to sp0987's topic in General Help
Yes. -
ANN HelpNDoc 9.2 is available: AI-Powered Technical Writing, improved documentation import, and more...
Anders Melander replied to HelpNDoc's topic in Delphi Third-Party
The integration isn't really the important part although it's nice to be able to navigate the source while the help editor/navigator follows along. Extracting comments from the source can already be done by the compiler so that isn't that interesting for me personally. Also, I find that, although it appears to make sense to document the API in the source, it ends up completely obfuscating the source. I prefer to have the help text separate from the source. DI has an option to either maintain in-source comments or store the data in external files. Like this: <?xml version="1.0"?> <doc> <members> <member name="AnsiCompareText(string,string)"> <summary>Compares strings based on the current locale without case sensitivity.<br></br> <br></br> AnsiCompareText compares str1 to str2, without case sensitivity. The comparison operation is controlled by the current locale.<br></br> </summary> <param name="str1">The first string to be compared.</param> <param name="str2">The second string to be compared.</param> <returns> <list type="table"> <listheader> <term>Condition</term> <description>Return value</description> </listheader> <item> <term>str1 = str2</term> <description>Zero.</description> </item> <item> <term>str1 > str2</term> <description>Positive value.</description> </item> <item> <term>str1 < str2</term> <description>Negative value.</description> </item> </list> </returns> <seealso cref="CompareText"></seealso> <seealso cref="AnsiCompareStr"></seealso> <seealso cref="CompareStr"></seealso> </member> ... If your project/document architecture allows for separating layout (the way it looks), structure (classes, members, functions, types, etc) and content (help text per structure item), then "all you need" is a parser and some UI to manage the parts. Easy-peasy, when can I have it 🙂- 7 replies
-
- helpndoc
- help authoring tools
-
(and 1 more)
Tagged with:
-
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Anders Melander replied to sp0987's topic in General Help
Assuming you have saved sysutils.pas to "C:\Testprojects\SampleApp\system" that part is okay. Now you just need to add the path of all the VCL/RTL units that use that unit so you can avoid "F2051 Unit XXX was compiled with a different version of YYY" - or make sure that you don't modify the interface section. I'm guessing the compiler options used to compile your sysutils copy might also have importance. Maybe someone else knows that. ...or solve the problem in some other way... -
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Anders Melander replied to sp0987's topic in General Help
I've not done any serious FMX development so I can't speak to that, but given how much code I write and the number and size of projects I work on, I do think I have had more than my fair share of problems with almost all areas of the RTL and VCL over the years. Editing the source files has never been an option I would consider. -
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Anders Melander replied to sp0987's topic in General Help
I can't recall when I last had the need for editing the source files. There are almost always other ways to solve a problem. -
ANN HelpNDoc 9.2 is available: AI-Powered Technical Writing, improved documentation import, and more...
Anders Melander replied to HelpNDoc's topic in Delphi Third-Party
While I have your attention 🙂 Have you considered adding functionality, or creating a new product, that solves the same needs as Documentation Insight? I.e. API documentation. I really like the way DI works but it seems like it went into maintenance mode many years ago. Probably because its HTML editor is based on Internet Explorer. Also, I've been waiting a decade for template support which was promised but never delivered.- 7 replies
-
- helpndoc
- help authoring tools
-
(and 1 more)
Tagged with:
-
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Anders Melander replied to sp0987's topic in General Help
The project search path has precedence. Post your .dproj file if you can. ...or you could explain what your end goal is; Why do you need to modify sysutils.pas? We might help you with a better solution. -
ANN HelpNDoc 9.2 is available: AI-Powered Technical Writing, improved documentation import, and more...
Anders Melander replied to HelpNDoc's topic in Delphi Third-Party
...depending on your definition of "smarter"- 7 replies
-
- helpndoc
- help authoring tools
-
(and 1 more)
Tagged with:
-
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Anders Melander replied to sp0987's topic in General Help
Don't do that. Leave Delphi's files and folder alone. This should work. Just make sure that the path to that file is before any other place where the compiler might find sysutils.pas or sysutils.dcu -
Changes in System.sysutils.pas were not reflecting in other unit in Delphi 11
Anders Melander replied to sp0987's topic in General Help
There's no difference between Delphi 7 and 11 with regard to modifying sysutils that I can think of. You have most likely not specified the correct project search path. Where have you placed the modified sysutils.pas ? -
Delphi and "Use only memory safe languages"
Anders Melander replied to Die Holländer's topic in General Help
ISO7185 (anno 1982) would like a word with you about that: There weren't, to my knowledge, any formal standards before this (the ANSI standard came 1983) but strings has been 1-based since the beginning. -
Create a class that implements a DispInterface
Anders Melander replied to michastro's topic in Algorithms, Data Structures and Class Design
Okay, so you are trying to interface to an external COM library. From the name of the interface I'm guessing this is the interface: https://ascom-standards.org/Help/Developer/html/T_ASCOM_DeviceInterface_ITelescopeV3.htm As you can read in the documentation... https://ascom-standards.org/Help/Developer/html/e7734c14-0562-4010-b0c9-ddb5055cd318.htm ...there should be a type library that you can use. The easiest way to use this type library is to have Delphi create a wrapper for you: From the Delphi IDE menu, select Component->Import Component... Select Import a Type Library Find the type library in the list or select Add and find it on your disk. Edit the Unit Dir Name to place the generated wrapper source code in your project source folder. I do not recommend that you select "Generate Component Wrappers". Select Add unit to <name of your project> project. Delphi will now have created a source file containing all the interfaces, dispinterfaces, enums, coclasses, etc. of the type library. In order to communicate with the library you will first have to create an instance of a COM object from it. There should be a function in the generated source that will do that for you but since I don't know the library I can't tell what the name of that function is. If you have some example code, in C, C++ or VB, it should be easy to see from that what you need to do. Post it if you have it and we can take it from there. -
Create a class that implements a DispInterface
Anders Melander replied to michastro's topic in Algorithms, Data Structures and Class Design
dispinterface isn't a keyword; Use interface instead: ITelescopeV3 = interface ['{A007D146-AE3D-4754-98CA-199FEC03CF68}'] . . end;