Difference between revisions of "ATGauge"

From Free Pascal wiki
Jump to navigationJump to search
Line 1: Line 1:
 
==About==
 
==About==
  
''ATGauge'' is OS-independant progress indicator component. It's like Delphi TGauge. The same properties (with some addons) but totally new code (it's much smaller that D7's one). It has class name and properties, compatible with Delphi 7 version, but different unit name.
+
''ATGauge'' is OS-independant progress indicator component. It's like Delphi TGauge. The same properties (with some additions) but totally new code (it's smaller that Delphi 7 code). It has class name and properties, compatible with Delphi 7 version, but different unit name.
  
 
[[File:atgauge.png]]
 
[[File:atgauge.png]]

Revision as of 22:34, 28 October 2021

About

ATGauge is OS-independant progress indicator component. It's like Delphi TGauge. The same properties (with some additions) but totally new code (it's smaller that Delphi 7 code). It has class name and properties, compatible with Delphi 7 version, but different unit name.

atgauge.png

"Kind" property supports same kinds as D7:

  • only text
  • horiz bar
  • vert bar
  • needle (half-circle)
  • pie (full circle)

Author: Alexey Torgashin (Russia)

License

MPL 2.0 or LGPL.

Download

Homepage at github: https://github.com/Alexey-T/ATFlatControls

Prop ShowTextInverted

This prop is for look like Delphi.

  • Off: text ("20%") painted with color Font.Color at all places. This is fast.
  • On: text painted with inverted color regarding image under it. Font.Color ignored. Temp bitmap is created (with a size of text), then temp-bitmap is copied over image-bitmap with Canvas.CopyMode=cmSrcInvert. This is slower and don't work on Linux Gtk2 (I see pixelated text over green bar). This's ok on Win32 (note: ClearType not used here) and QT.