mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:58:02 +02:00
Compare commits
3 Commits
da170ea768
...
8273a08530
Author | SHA1 | Date | |
---|---|---|---|
![]() |
8273a08530 | ||
![]() |
91fbaca370 | ||
![]() |
b692996666 |
@ -69,6 +69,7 @@ type
|
|||||||
{ TCocoaApplication }
|
{ TCocoaApplication }
|
||||||
|
|
||||||
TCocoaApplication = objcclass(NSApplication)
|
TCocoaApplication = objcclass(NSApplication)
|
||||||
|
syncCheckEventRef: EventRef;
|
||||||
aloop : TApplicationMainLoop;
|
aloop : TApplicationMainLoop;
|
||||||
isrun : Boolean;
|
isrun : Boolean;
|
||||||
modals : NSMutableDictionary;
|
modals : NSMutableDictionary;
|
||||||
@ -89,6 +90,7 @@ type
|
|||||||
function nextEventMatchingMask_untilDate_inMode_dequeue(mask: NSUInteger; expiration: NSDate; mode: NSString; deqFlag: LCLObjCBoolean): NSEvent; override;
|
function nextEventMatchingMask_untilDate_inMode_dequeue(mask: NSUInteger; expiration: NSDate; mode: NSString; deqFlag: LCLObjCBoolean): NSEvent; override;
|
||||||
|
|
||||||
function runModalForWindow(theWindow: NSWindow): NSInteger; override;
|
function runModalForWindow(theWindow: NSWindow): NSInteger; override;
|
||||||
|
procedure lclPostSyncCheckEvent; message 'lclPostSyncCheckEvent';
|
||||||
procedure lclSyncCheck(arg: id); message 'lclSyncCheck:';
|
procedure lclSyncCheck(arg: id); message 'lclSyncCheck:';
|
||||||
{$ifdef COCOAPPRUNNING_OVERRIDEPROPERTY}
|
{$ifdef COCOAPPRUNNING_OVERRIDEPROPERTY}
|
||||||
function isRunning: objc.ObjCBOOL; override;
|
function isRunning: objc.ObjCBOOL; override;
|
||||||
@ -687,6 +689,13 @@ begin
|
|||||||
Exit;
|
Exit;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
if (not Assigned(Result) and ((mask and NSPeriodicMask) <> 0)) or
|
||||||
|
(Assigned(Result) and (Result.eventRef = syncCheckEventRef)) then
|
||||||
|
begin
|
||||||
|
syncCheckEventRef := nil;
|
||||||
|
lclSyncCheck(nil);
|
||||||
|
end;
|
||||||
|
|
||||||
if (Result.type_=NSApplicationDefined) and (Result.subtype=LazarusApplicationDefinedSubtypeWakeup) then
|
if (Result.type_=NSApplicationDefined) and (Result.subtype=LazarusApplicationDefinedSubtypeWakeup) then
|
||||||
Result:= nil;
|
Result:= nil;
|
||||||
|
|
||||||
@ -730,6 +739,21 @@ begin
|
|||||||
Result:=inherited runModalForWindow(theWindow);
|
Result:=inherited runModalForWindow(theWindow);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure TCocoaApplication.lclPostSyncCheckEvent;
|
||||||
|
var ev: NSEvent;
|
||||||
|
begin
|
||||||
|
if not Assigned(syncCheckEventRef) then
|
||||||
|
begin
|
||||||
|
ev := NSEvent.otherEventWithType_location_modifierFlags_timestamp_windowNumber_context_subtype_data1_data2(
|
||||||
|
NSPeriodic, NSPoint(CGPointZero), 0, 0, 0, nil, 0, 0, 0);
|
||||||
|
syncCheckEventRef := ev.eventRef;
|
||||||
|
postEvent_atStart(ev, False);
|
||||||
|
end
|
||||||
|
else
|
||||||
|
performSelectorOnMainThread_withObject_waitUntilDone(
|
||||||
|
ObjCSelector('lclSyncCheck:'), nil, false);
|
||||||
|
end;
|
||||||
|
|
||||||
procedure TCocoaApplication.lclSyncCheck(arg: id);
|
procedure TCocoaApplication.lclSyncCheck(arg: id);
|
||||||
begin
|
begin
|
||||||
{$ifdef COCOALOOPNATIVE}
|
{$ifdef COCOALOOPNATIVE}
|
||||||
|
@ -50,9 +50,7 @@ end;
|
|||||||
|
|
||||||
procedure TCocoaWidgetSet.SendCheckSynchronizeMessage;
|
procedure TCocoaWidgetSet.SendCheckSynchronizeMessage;
|
||||||
begin
|
begin
|
||||||
InitApplication
|
TCocoaApplication(NSApp).lclPostSyncCheckEvent;
|
||||||
.performSelectorOnMainThread_withObject_waitUntilDone(
|
|
||||||
ObjCSelector('lclSyncCheck:'), nil, false);
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{------------------------------------------------------------------------------
|
{------------------------------------------------------------------------------
|
||||||
|
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user