Difference between revisions of "ATButton"

From Free Pascal wiki
Jump to navigationJump to search
Line 28: Line 28:
 
     ColorBgChecked,
 
     ColorBgChecked,
 
     ColorBgDisabled,
 
     ColorBgDisabled,
 +
    ColorArrow,
 
     ColorBorderPassive,
 
     ColorBorderPassive,
 
     ColorBorderOver,
 
     ColorBorderOver,

Revision as of 23:50, 21 July 2016

About

ATButton is OS-independant button component, flat look. Button as usual has Caption, OnClick.

  • button state can be: usual (default: light gray), mouse-over (light gray), checked (dark gray), disabled (red-gray)
  • buttons have border of 1..n pixels
  • prop Checkable means that click toggles Checked
  • prop Focusable means that button can focus (and paint frame of other color if focused)
  • prop Bitmap takes bitmap for button image
  • prop Flat (default False): passive (not under cursor) button don't paint its backgnd and border

Author: Alexey Torgashin

Theme

Colors/fonts of all buttons defined by global var, of type like this

type
  TATButtonTheme = record
    FontName: string;
    FontSize: integer;
    FontStyles: TFontStyles;
    ColorFont,
    ColorFontDisabled,
    ColorBgPassive,
    ColorBgOver,
    ColorBgChecked,
    ColorBgDisabled,
    ColorArrow,
    ColorBorderPassive,
    ColorBorderOver,
    ColorBorderFocused: TColor;
    MouseoverBorderWidth: integer;
    PressedBorderWidth: integer;
    PressedCaptionShiftY: integer;
    PressedCaptionShiftX: integer;
  end;  
  
var
  ATButtonTheme: TATButtonTheme;

License

MPL 2.0 or LGPL.

Download

Homepage at github is https://github.com/Alexey-T/ATButtons

Requirements

Lazarus: 1.4.0.

Tested on: Win32 (Windows 7), Linux GTK2 or QT (Ubuntu 14.04), macOS (10.8).