mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 09:18:02 +02:00
Gtk3: update should update only gtklayout of custom control.
This commit is contained in:
parent
d750a3d027
commit
9ba82ba4e0
@ -855,6 +855,7 @@ type
|
||||
function CreateWidget(const {%H-}Params: TCreateParams):PGtkWidget; override;
|
||||
function EatArrowKeys(const {%H-}AKey: Word): Boolean; override;
|
||||
public
|
||||
procedure Update(ARect: PRect); override;
|
||||
procedure DoBeforeLCLPaint; override;
|
||||
procedure InitializeWidget; override;
|
||||
function getViewport: PGtkViewport; override;
|
||||
@ -8806,6 +8807,22 @@ begin
|
||||
Result := False;
|
||||
end;
|
||||
|
||||
procedure TGtk3CustomControl.Update(ARect: PRect);
|
||||
begin
|
||||
if IsWidgetOK then
|
||||
begin
|
||||
if (ARect <> nil) then
|
||||
begin
|
||||
if (aRect^.Width > 0) and (ARect^.Height > 0) then
|
||||
begin
|
||||
with ARect^ do
|
||||
GetContainerWidget^.queue_draw_area(Left, Top, Right - Left, Bottom - Top);
|
||||
end;
|
||||
end else
|
||||
GetContainerWidget^.queue_draw;
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TGtk3CustomControl.DoBeforeLCLPaint;
|
||||
var
|
||||
DC: TGtk3DeviceContext;
|
||||
|
Loading…
Reference in New Issue
Block a user