Jump to content

Uwe Raabe

Members
  • Content Count

    2833
  • Joined

  • Last visited

  • Days Won

    168

Everything posted by Uwe Raabe

  1. Uwe Raabe

    VCL Form Designer Zoom

    You can as well simply scroll the form as needed, but the need to scroll was exactly the complaint.
  2. Indeed, but they still reside in the interface section and thus may need some units being used in the interface section instead of the implementation section.
  3. Uwe Raabe

    Localization of VCL Dialogs

    Another option could be calling SetLocaleOverride with the desired value. It just has to be done quite early as long as no resources are being loaded.
  4. Uwe Raabe

    Localization of VCL Dialogs

    You can add a registry entry under HKEY_CURRENT_USER\SOFTWARE\Embarcadero\Locales for that. Of course that only works at application start, so no change at runtime possible. One tool supporting changing languages at runtime is Korzh Localizer.
  5. IMHO, having local procedures/functions using outer-scope local variables is often a hint for having a separate class for this functionality. I wish we were able to declare something like a local class type inside a method, just as we can declare a simple record type. In the moment I work around that limitation by nested classes unless I want it hidden from the interface, which forces me to make it a regular private class.
  6. Uwe Raabe

    VCL Form Designer Zoom

    Scaling forms is always problematic. We can see this every day with applications (not only Delphi ones) when used in a mixed DPI environment. Although I don't actually suggest to use it, there is an option to switch the form designer using a special PPI. The drawback is that it is used for all forms and not only for the large ones. Naively thinking that scaling the form display could easily be done by drawing onto a bitmap and simply display that downscaled, but that would imply that the whole user interaction has to be made with a bitmap instead of real controls. The effort to implement that with all its edge cases is way more than one would expect.
  7. Uwe Raabe

    Delphi 11.3 not including version info

    One reason can be a missing {$R *.res} in the dpr file.
  8. It must also be compiled with the same settings as the original unit. Hence my hint to the BuildRTL projects.
  9. Uwe Raabe

    Slow rendering with SKIA on Windows

    At least not short term.
  10. Uwe Raabe

    Slow rendering with SKIA on Windows

    Looks similar to this report: https://quality.embarcadero.com/browse/RSP-42714
  11. This little utility always worked pretty well for me: RunAsDate
  12. What are you trying to achieve with this?
  13. The source\rtl folder contains projects to build the RTL for different platforms.
  14. Uwe Raabe

    Possible Delphi 12.1 inheritance bug, could someone test also

    I cannot reproduce here with project and steps from the QP issue. Looks like it is caused by something in your system.
  15. That is true for strings, but nor for dynamic arrays.
  16. Uwe Raabe

    Bug: Lock Controls is not restored at IDE start!

    Seems someone already filed a report 8 years ago: https://quality.embarcadero.com/browse/RSP-13448
  17. Edit the internal build configuration and add __BuilderGUI to Conditions.
  18. Uwe Raabe

    ActionList Editor: New Standard Action...

    Perhaps they aren't working with standard actions either?
  19. Uwe Raabe

    ActionList Editor: New Standard Action...

    The new QP doesn't support voting and I cannot see a benefit in sharing this.
  20. Uwe Raabe

    ActionList Editor: New Standard Action...

    I am happily taking that task for you. Can you just list the installed packages accountable for that number of standard actions? I'm not sure if I was able to identify all of them.
  21. Uwe Raabe

    ActionList Editor: New Standard Action...

    That is probably true, but it isn't wrong in the first place. As real-worlds tend to differ significantly between users, it would be tedious and most likely incomplete what Embarcadero can do about simulating these scenarios and test every and all IDE functionality with it. Usually these real-world problems show up in beta tests, where a bunch of developers test in their own environment, but obviously in this case they didn't. This can be caused by people with multiple libraries installed registering a lot of standard actions just not using standard actions. That is the point where QP reports from normal users come into play. Without anyone complaining about an issue via the official channel there is no trigger to analyze the problem and fix it. I suggest to file a QP report about the visual delay and a separate report about the search/filter box. The request for a busy indicator would be moot when the performance problem is be fixed, which I would favor over that indicator.
  22. Uwe Raabe

    ActionList Editor: New Standard Action...

    There are several QP entries about that. It has been fixed in Delphi 12. It is one of the driving issues for me for moving to D12.
  23. Uwe Raabe

    ActionList Editor: New Standard Action...

    I still suggest to file a QP report if it doesn't exist yet. Embarcadero will never see this delay as long as they only test with their standard actions. Without such a QP report nothing will change.
  24. Uwe Raabe

    ActionList Editor: New Standard Action...

    Is anyone aware of a QP entry for that?
  25. Uwe Raabe

    Allow tabs to use custom colors

    You can find some hints in the release notes for 11.2: 11 Alexandria - Release 2
×