Compare commits

...

5 Commits

Author SHA1 Message Date
robert rozee
df1bc1a802 Merge branch 'main' into 'main'
fix for TControl.GetDefaultColor never recursing up to parent

See merge request freepascal.org/lazarus/lazarus!452
2025-04-03 20:01:58 +00:00
zeljan1
91fbaca370 Qt5,Qt6: Fixed QLineEdit behaviour and automatic selectAll() by Qt when control is focused.Related issue #10155 and issue #41562 2025-04-03 21:57:50 +02:00
robert rozee
d070dd6b88 Edit control.inc,
fix for TControl.GetDefaultColor never recursing up to parent as it should. looks like
the original code was 'mangled' by a bad cut-and-paste a number of years back.
2025-03-16 10:27:54 +00:00
robert rozee
b3ce2c3b9b Merge branch lazarus:main into main 2025-03-16 10:18:25 +00:00
robert rozee
e0cc3cca3e Edit inputdialog.inc 2025-03-05 13:42:31 +00:00
4 changed files with 16 additions and 6 deletions

View File

@ -1434,11 +1434,10 @@ const
); );
begin begin
Result := TWSControlClass(WidgetSetClass).GetDefaultColor(Self, DefaultColorType); Result := TWSControlClass(WidgetSetClass).GetDefaultColor(Self, DefaultColorType);
if (Result = clDefault) then if (Self.Color = clDefault) and ParentColor and Assigned(Parent) then
if ParentColor and Assigned(Parent) then Result := Parent.GetDefaultColor(DefaultColorType) // recursion
Result := Parent.GetDefaultColor(DefaultColorType)
else else
Result := DefColors[DefaultColorType]; if Result = clDefault then Result := DefColors[DefaultColorType]; // backstop
end; end;
function TControl.GetColorResolvingParent: TColor; function TControl.GetColorResolvingParent: TColor;

View File

@ -81,6 +81,7 @@ begin
Parent := Form; Parent := Form;
ShowBevel := False; ShowBevel := False;
ShowButtons := [pbOK, pbCancel]; ShowButtons := [pbOK, pbCancel];
Color:=Parent.GetDefaultColor(dctBrush); // fix for wrong background colour
Align := alTop; Align := alTop;
end; end;

View File

@ -107,6 +107,7 @@ type
TQtWidget = class(TQtObject, IUnknown) TQtWidget = class(TQtObject, IUnknown)
private private
FDefaultFocusReason: QtFocusReason;
FInResizeEvent: boolean; FInResizeEvent: boolean;
FWidgetState: TQtWidgetStates; FWidgetState: TQtWidgetStates;
FWidgetDefaultFont: TQtFont; FWidgetDefaultFont: TQtFont;
@ -319,6 +320,7 @@ type
nil): QPixmapH; nil): QPixmapH;
property ChildOfComplexWidget: TChildOfComplexWidget read FChildOfComplexWidget write FChildOfComplexWidget; property ChildOfComplexWidget: TChildOfComplexWidget read FChildOfComplexWidget write FChildOfComplexWidget;
property Context: HDC read GetContext; property Context: HDC read GetContext;
property DefaultFocusReason: QtFocusReason read FDefaultFocusReason write FDefaultFocusReason;
property HasCaret: Boolean read FHasCaret write SetHasCaret; property HasCaret: Boolean read FHasCaret write SetHasCaret;
property HasPaint: Boolean read FHasPaint write FHasPaint; property HasPaint: Boolean read FHasPaint write FHasPaint;
property InResizeEvent: boolean read FInResizeEvent write FInResizeEvent; property InResizeEvent: boolean read FInResizeEvent write FInResizeEvent;
@ -2161,6 +2163,7 @@ end;
procedure TQtWidget.InitializeWidget; procedure TQtWidget.InitializeWidget;
begin begin
FDefaultFocusReason := QtTabFocusReason;
FInResizeEvent := False; FInResizeEvent := False;
// default states // default states
FWidgetState := []; FWidgetState := [];
@ -5164,7 +5167,7 @@ end;
procedure TQtWidget.setFocus; procedure TQtWidget.setFocus;
begin begin
if getFocusPolicy <> QtNoFocus then if getFocusPolicy <> QtNoFocus then
QWidget_setFocus(Widget, QtTabFocusReason) {issue #10155} QWidget_setFocus(Widget, FDefaultFocusReason) {issue #10155}
else else
QWidget_setFocus(Widget); QWidget_setFocus(Widget);
end; end;
@ -9769,6 +9772,7 @@ begin
FCachedSelectionLen := -1; FCachedSelectionLen := -1;
FIntValidator := nil; FIntValidator := nil;
FNumbersOnly := False; FNumbersOnly := False;
FDefaultFocusReason := QtOtherFocusReason;
if AParams.WndParent <> 0 then if AParams.WndParent <> 0 then
Parent := TQtWidget(AParams.WndParent).GetContainerWidget Parent := TQtWidget(AParams.WndParent).GetContainerWidget
else else
@ -16412,6 +16416,7 @@ end;
procedure TQtMenu.InitializeWidget; procedure TQtMenu.InitializeWidget;
begin begin
FDefaultFocusReason := QtTabFocusReason;
FWidgetState := []; FWidgetState := [];
ChildOfComplexWidget := ccwNone; ChildOfComplexWidget := ccwNone;
WidgetColorRole := QPaletteWindow; WidgetColorRole := QPaletteWindow;

View File

@ -107,6 +107,7 @@ type
TQtWidget = class(TQtObject, IUnknown) TQtWidget = class(TQtObject, IUnknown)
private private
FDefaultFocusReason: QtFocusReason;
FInResizeEvent: boolean; FInResizeEvent: boolean;
FWidgetState: TQtWidgetStates; FWidgetState: TQtWidgetStates;
FWidgetDefaultFont: TQtFont; FWidgetDefaultFont: TQtFont;
@ -316,6 +317,7 @@ type
nil): QPixmapH; nil): QPixmapH;
property ChildOfComplexWidget: TChildOfComplexWidget read FChildOfComplexWidget write FChildOfComplexWidget; property ChildOfComplexWidget: TChildOfComplexWidget read FChildOfComplexWidget write FChildOfComplexWidget;
property Context: HDC read GetContext; property Context: HDC read GetContext;
property DefaultFocusReason: QtFocusReason read FDefaultFocusReason write FDefaultFocusReason;
property HasCaret: Boolean read FHasCaret write SetHasCaret; property HasCaret: Boolean read FHasCaret write SetHasCaret;
property HasPaint: Boolean read FHasPaint write FHasPaint; property HasPaint: Boolean read FHasPaint write FHasPaint;
property InResizeEvent: boolean read FInResizeEvent write FInResizeEvent; property InResizeEvent: boolean read FInResizeEvent write FInResizeEvent;
@ -2158,6 +2160,7 @@ end;
procedure TQtWidget.InitializeWidget; procedure TQtWidget.InitializeWidget;
begin begin
FDefaultFocusReason := QtTabFocusReason;
FInResizeEvent := False; FInResizeEvent := False;
// default states // default states
FWidgetState := []; FWidgetState := [];
@ -5168,7 +5171,7 @@ end;
procedure TQtWidget.setFocus; procedure TQtWidget.setFocus;
begin begin
if getFocusPolicy <> QtNoFocus then if getFocusPolicy <> QtNoFocus then
QWidget_setFocus(Widget, QtTabFocusReason) {issue #10155} QWidget_setFocus(Widget, FDefaultFocusReason) {issue #10155}
else else
QWidget_setFocus(Widget); QWidget_setFocus(Widget);
end; end;
@ -9725,6 +9728,7 @@ begin
FCachedSelectionLen := -1; FCachedSelectionLen := -1;
FIntValidator := nil; FIntValidator := nil;
FNumbersOnly := False; FNumbersOnly := False;
FDefaultFocusReason := QtOtherFocusReason;
if AParams.WndParent <> 0 then if AParams.WndParent <> 0 then
Parent := TQtWidget(AParams.WndParent).GetContainerWidget Parent := TQtWidget(AParams.WndParent).GetContainerWidget
else else
@ -16322,6 +16326,7 @@ end;
procedure TQtMenu.InitializeWidget; procedure TQtMenu.InitializeWidget;
begin begin
FDefaultFocusReason := QtTabFocusReason;
FWidgetState := []; FWidgetState := [];
ChildOfComplexWidget := ccwNone; ChildOfComplexWidget := ccwNone;
WidgetColorRole := QPaletteWindow; WidgetColorRole := QPaletteWindow;