ATGauge

From Free Pascal wiki
Revision as of 19:41, 30 July 2015 by Alextp2 (talk | contribs) (→‎About)
Jump to navigationJump to search

About

ATGauge is OS-independant progress indicator component. It's like D7's TGauge. The same properties (with some addons) but totally new code (it's much smaller that D7's one). It has same class name and same filename "gauges.pas".

"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

Latest version, with demo app, is at https://github.com/Alexey-T/ATGauge/

Requirements

  • Lazarus: 1.4.0.
  • Tested on: Linux gtk2 (Ubuntu 14.04), Win32 (XP).

Installation

  • Download zip file from Github using "Download ZIP" button.
  • Open package file (.lpk), compile and install.
  • Restart ide, see tab "Misc" of component pallete.

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 is not used).