mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:38:25 +02:00
LCL: Allow access to buttons in CheckGroup and RadioGroup. Issue #40738, patch by n7800.
This commit is contained in:
parent
d4f86c3268
commit
b4061b200f
@ -287,7 +287,7 @@ end;
|
||||
|
||||
function TCustomCheckGroup.GetCheckEnabled(Index: integer): boolean;
|
||||
begin
|
||||
if (Index < -1) or (Index >= FItems.Count) then
|
||||
if (Index < 0) or (Index >= FItems.Count) then
|
||||
RaiseIndexOutOfBounds(Index);
|
||||
Result:=TCheckBox(FButtonList[Index]).Enabled;
|
||||
end;
|
||||
@ -295,7 +295,7 @@ end;
|
||||
procedure TCustomCheckGroup.SetCheckEnabled(Index: integer;
|
||||
const AValue: boolean);
|
||||
begin
|
||||
if (Index < -1) or (Index >= FItems.Count) then
|
||||
if (Index < 0) or (Index >= FItems.Count) then
|
||||
RaiseIndexOutOfBounds(Index);
|
||||
TCheckBox(FButtonList[Index]).Enabled:=AValue;
|
||||
end;
|
||||
@ -313,19 +313,21 @@ end;
|
||||
|
||||
function TCustomCheckGroup.GetChecked(Index: integer): boolean;
|
||||
begin
|
||||
if (Index < -1) or (Index >= FItems.Count) then
|
||||
if (Index < 0) or (Index >= FItems.Count) then
|
||||
RaiseIndexOutOfBounds(Index);
|
||||
Result:=TCheckBox(FButtonList[Index]).Checked;
|
||||
end;
|
||||
|
||||
function TCustomCheckGroup.GetButton(Index: integer): TCheckBox;
|
||||
begin
|
||||
if (Index < 0) or (Index >= FItems.Count) then
|
||||
RaiseIndexOutOfBounds(Index);
|
||||
result := TCheckBox(FButtonList[Index]);
|
||||
end;
|
||||
|
||||
procedure TCustomCheckGroup.SetChecked(Index: integer; const AValue: boolean);
|
||||
begin
|
||||
if (Index < -1) or (Index >= FItems.Count) then
|
||||
if (Index < 0) or (Index >= FItems.Count) then
|
||||
RaiseIndexOutOfBounds(Index);
|
||||
// disable OnClick
|
||||
TCheckBox(FButtonList[Index]).OnClick:=nil;
|
||||
@ -425,7 +427,7 @@ begin
|
||||
//if triggered by Items.Delete, then
|
||||
// * it will always be the last CheckBox('s) that will be removed
|
||||
// * Items.Count will already have been decremented, so Idx will be equal to Items.Count
|
||||
if (Idx <> -1) and (Idx < Items.Count) then
|
||||
if (Idx >= 0) and (Idx < Items.Count) then
|
||||
begin
|
||||
FButtonList.Delete(Idx);
|
||||
Items.Delete(Idx);
|
||||
|
@ -116,7 +116,7 @@ procedure TCustomRadioGroup.InitializeWnd;
|
||||
var
|
||||
i: Integer;
|
||||
begin
|
||||
if (FItemIndex <> -1) and (FItemIndex<FButtonList.Count) then
|
||||
if (FItemIndex >= 0) and (FItemIndex < FButtonList.Count) then
|
||||
TRadioButton(FButtonList[FItemIndex]).Checked := true
|
||||
else if FHiddenButton<>nil then
|
||||
FHiddenButton.Checked:=true;
|
||||
@ -235,7 +235,7 @@ begin
|
||||
Self.InsertControl(FHiddenButton);
|
||||
if HandleAllocated then
|
||||
FHiddenButton.HandleNeeded;
|
||||
FHiddenButton.Checked := (FItemIndex = -1);
|
||||
FHiddenButton.Checked := FItemIndex < 0;
|
||||
UpdateTabStops;
|
||||
end;
|
||||
finally
|
||||
@ -381,8 +381,9 @@ begin
|
||||
if FReading then
|
||||
FItemIndex:=Value
|
||||
else begin
|
||||
// -1 allowed
|
||||
if (Value < -1) or (Value >= FItems.Count) then
|
||||
raise Exception.CreateFmt(rsIndexOutOfBounds,[ClassName,Value,FItems.Count-1]);
|
||||
raise Exception.CreateFmt(rsIndexOutOfBoundsMinusOne, [ClassName, Value, FItems.Count - 1]);
|
||||
|
||||
if (HandleAllocated) then
|
||||
begin
|
||||
@ -393,13 +394,13 @@ begin
|
||||
OldIgnoreClicks:=FIgnoreClicks;
|
||||
FIgnoreClicks:=true;
|
||||
try
|
||||
if (FItemIndex <> -1) then
|
||||
if FItemIndex >= 0 then
|
||||
TRadioButton(FButtonList[FItemIndex]).Checked := true
|
||||
else
|
||||
FHiddenButton.Checked:=true;
|
||||
// uncheck old radiobutton
|
||||
if (OldItemIndex <> -1) then begin
|
||||
if (OldItemIndex>=0) and (OldItemIndex<FButtonList.Count) then
|
||||
if OldItemIndex >= 0 then begin
|
||||
if OldItemIndex < FButtonList.Count then
|
||||
TRadioButton(FButtonList[OldItemIndex]).Checked := false
|
||||
end else
|
||||
FHiddenButton.Checked:=false;
|
||||
@ -473,7 +474,7 @@ begin
|
||||
//if triggered by Items.Delete, then
|
||||
// * it will always be the last radiobutton(s) that will be removed
|
||||
// * Items.Count will already have been decremented, so Idx will be equal to Items.Count
|
||||
if (Idx <> -1) and (Idx < Items.Count) then
|
||||
if (Idx >= 0) and (Idx < Items.Count) then
|
||||
begin
|
||||
FButtonList.Delete(Idx);
|
||||
Items.Delete(Idx);
|
||||
@ -503,6 +504,7 @@ begin
|
||||
FReading := True;
|
||||
inherited ReadState(Reader);
|
||||
FReading := False;
|
||||
// -1 allowed
|
||||
if (fItemIndex<-1) or (fItemIndex>=FItems.Count) then fItemIndex:=-1;
|
||||
FLastClickedItemIndex:=FItemIndex;
|
||||
end;
|
||||
@ -529,6 +531,9 @@ end;
|
||||
|
||||
function TCustomRadioGroup.GetButton(Index: integer): TRadioButton;
|
||||
begin
|
||||
if (Index < 0) or (Index >= FItems.Count) then
|
||||
raise Exception.CreateFmt(rsIndexOutOfBounds, [ClassName, Index, FItems.Count - 1]);
|
||||
|
||||
result := TRadioButton(FButtonList[Index]);
|
||||
end;
|
||||
|
||||
|
@ -255,6 +255,7 @@ resourceString
|
||||
+' See the global variable RequireDerivedFormResource.';
|
||||
rsErrorCreatingDeviceContext = 'Error creating device context for %s.%s';
|
||||
rsIndexOutOfBounds = '%s Index %d out of bounds 0 .. %d';
|
||||
rsIndexOutOfBoundsMinusOne = '%s Index %d out of bounds -1 .. %d';
|
||||
rsUnknownPictureExtension = 'Unknown picture extension';
|
||||
rsUnknownPictureFormat = 'Unknown picture format';
|
||||
rsBitmaps = 'Bitmap Files';
|
||||
|
Loading…
Reference in New Issue
Block a user