1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
| unit Govel.BindNavigator;
interface
uses
System.SysUtils, System.Classes,
System.UITypes,
FMX.Types, FMX.Controls, FMX.Layouts, FMX.Objects, FMX.StdCtrls,
Data.Bind.Controls, Data.Bind.Components,
FMX.Bind.Navigator;
/// range TNavigateButton in three groups
const NavigatorScrollings = [nbFirst, nbPrior, nbNext, nbLast,nbRefresh];
NavigatorValidations = [nbInsert, nbDelete, nbEdit, nbPost, nbCancel,
nbApplyUpdates];
NavigatorCancelations = [nbDelete,nbCancel,nbCancelUpdates];
type
TColoredBindNavigator = class;
TGlyphColors = class(TPersistent)
private
FOwner : TColoredBindNavigator;
FColors: array [0 .. 2] of TAlphaColor;
procedure SetColor(Index: Integer; Value: TAlphaColor);
function GetCancelColor: TAlphaColor;
function GetEditColor: TAlphaColor;
function GetNavigationColor: TAlphaColor;
procedure SetCancelColor(const Value: TAlphaColor);
procedure SetEditColor(const Value: TAlphaColor);
procedure SetNavigationColor(const Value: TAlphaColor);
function IsColorsStored: Boolean;
procedure SetDefaultColor(const Value: TAlphaColor);
public
constructor Create(aOwner : TColoredBindNavigator);
destructor Destroy; override;
function GetColor(Index: Integer): TAlphaColor;
published
property Navigation: TAlphaColor read FColors[0] write SetNavigationColor default TAlphaColors.Blue;
property Edit: TAlphaColor read FColors[1] write SetEditColor default TAlphaColors.Green;
property Cancel: TAlphaColor read FColors[2] write SetCancelColor default TAlphaColors.Red;
end;
TColorNavButton = class helper for TBindNavButton
/// set the color of the Tpath.fill.color property
procedure setcolor(const c : TAlphaColor);
/// apply the custom colors corresponding to the TNavigateButton type
/// Three groups NavigatorScrollings,NavigatorValidations,NavigatorCancelations
/// see const part
procedure ApplyColorStyle(const customcolors : TGlyphColors);
///
end;
TColoredBindNavigator = class(TCustomBindNavigator)
private
FController: TBindNavigatorController;
FNavigatorGlyphColors: TGlyphColors;
function GetGlyphColor(const Index: Integer): TAlphaColor;
procedure SetGlyphColor(const Index: Integer; const Value: TAlphaColor);
procedure SetGlyphColors(const Value: TGlyphColors);
procedure Loaded; override;
procedure Paint ; override;
public
{ Déclarations publiques }
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure customcolors(scrollcolor, Updatecolor, cancelcolor : TAlphaColor);
procedure ApplyColors;
function GetDefaultGlyphColor : TAlphaColor;
published
property NavigatorGlyphColors: TGlyphColors read FNavigatorGlyphColors write SetGlyphColors; // stored true;
property DataSource;
property VisibleButtons;
property Align;
property Enabled;
property CornerType;
property Corners;
property xRadius;
property yRadius;
property ConfirmDelete;
property Visible;
property BeforeAction;
property OnClick;
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents('Govel', [TColoredBindNavigator]);
end;
{ TColoredBindNavigator }
procedure TColoredBindNavigator.ApplyColors;
begin
for var aButton in Buttons do
aButton.ApplyColorStyle(NavigatorGlyphColors);
end;
constructor TColoredBindNavigator.Create(AOwner: TComponent);
begin
inherited;
if not assigned(FNavigatorGlyphColors)
then FNavigatorGlyphColors:=TGlyphColors.Create(Self);
ApplyColors;
end;
destructor TColoredBindNavigator.Destroy;
begin
FNavigatorGlyphColors.Free;
inherited;
end;
function TColoredBindNavigator.GetDefaultGlyphColor: TAlphaColor;
begin
var d := TCornerButton.Create(Self);
d.Parent:=Self;
d.ApplyStyleLookup;
var S := d.FindStyleResource('text');
if (S <> nil) and (S is TText) then
result:= TText(S).Color
else result:=TAlphaColors.Null;
FreeAndNil(d);
end;
function TColoredBindNavigator.GetGlyphColor(const Index: Integer): TAlphaColor;
begin
if index in [0 .. 2] then
Result := FNavigatorGlyphColors.GetColor(index)
else
Result := GetDefaultGlyphColor; // défaut TAlphaColors.Null
end;
procedure TColoredBindNavigator.Loaded;
begin
inherited Loaded;
ApplyColors;
end;
procedure TColoredBindNavigator.Paint;
begin
inherited Paint;
ApplyColors;
end;
procedure TColoredBindNavigator.SetGlyphColor(const Index: Integer;
const Value: TAlphaColor);
begin
NavigatorGlyphColors.SetColor(index,Value);
ApplyColors;
end;
procedure TColoredBindNavigator.SetGlyphColors(const Value: TGlyphColors);
begin
FNavigatorGlyphColors.Assign(Value);
ApplyColors;
end;
procedure TColoredBindNavigator.customcolors(scrollcolor, Updatecolor,
cancelcolor: TAlphaColor);
begin
FNavigatorGlyphColors.Navigation:=ScrollColor;
FNavigatorGlyphColors.Edit:=UpdateColor;
FNavigatorGlyphColors.Cancel:=CancelColor;
ApplyColors;
end;
{ TGlyphColors }
constructor TGlyphColors.Create(aOwner : TColoredBindNavigator);
begin
FOwner:=aOwner;
FColors[0] := TAlphaColors.Blue;
FColors[1] := TAlphaColors.Green;
FColors[2] := TAlphaColors.Red;
end;
destructor TGlyphColors.Destroy;
begin
inherited;
end;
function TGlyphColors.GetCancelColor: TAlphaColor;
begin
result:=GetColor(2);
end;
function TGlyphColors.GetColor(Index: Integer): TAlphaColor;
begin
if index in [0..2] then
Result := FColors[Index]
else Result:=TAlphaColors.Null
end;
function TGlyphColors.GetEditColor: TAlphaColor;
begin
Result:=GetColor(1);
end;
function TGlyphColors.GetNavigationColor: TAlphaColor;
begin
Result:=GetColor(0);
end;
function TGlyphColors.IsColorsStored: Boolean;
begin
result:=True;
end;
procedure TGlyphColors.SetCancelColor(const Value: TAlphaColor);
begin
SetColor(2,Value);
FOwner.ApplyColors;
end;
procedure TGlyphColors.SetColor(Index: Integer; Value: TAlphaColor);
begin
FColors[Index] := Value;
end;
procedure TGlyphColors.SetDefaultColor(const Value: TAlphaColor);
var acolor : TAlphaColor;
begin
var S:=FOwner.FindStyleResource('text');
if Assigned(s) then acolor:=TText(S).Color
else acolor:=TAlphaColors.Alpha;
end;
procedure TGlyphColors.SetEditColor(const Value: TAlphaColor);
begin
SetColor(1,Value);
FOwner.ApplyColors;
end;
procedure TGlyphColors.SetNavigationColor(const Value: TAlphaColor);
begin
SetColor(0,Value);
FOwner.ApplyColors;
end;
{ TColorNavButton }
procedure TColorNavButton.ApplyColorStyle(const customcolors : TGlyphColors);
var defaultstylecolor : TAlphaColor;
begin
if (TNavigateButton(Self.index) in NavigatorScrollings)
AND (customcolors.Navigation<>TAlphacolors.Null)
// AND (customcolors.scroll<>DefaultStyleColor) // todo test
then Setcolor(customcolors.Navigation);
if (TNavigateButton(Self.index) in NavigatorValidations)
AND (customcolors.Edit<>TAlphacolors.Null)
then Setcolor(customcolors.Edit);
if (TNavigateButton(Self.index) in NavigatorCancelations)
AND (customcolors.cancel<>TAlphacolors.null)
then Setcolor(customcolors.cancel);
end;
procedure TColorNavButton.setcolor(const c: TAlphaColor);
begin
with Self do
FPath.Fill.Color:=c;
end;
end. |
Partager