mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:58:02 +02:00
Compare commits
3 Commits
ef065bd6d7
...
cd7aa23874
Author | SHA1 | Date | |
---|---|---|---|
![]() |
cd7aa23874 | ||
![]() |
91fbaca370 | ||
![]() |
6955f7af5a |
@ -15,6 +15,7 @@
|
|||||||
unit Cocoa_Extra;
|
unit Cocoa_Extra;
|
||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
{$modeswitch cblocks}
|
||||||
{$modeswitch objectivec1}
|
{$modeswitch objectivec1}
|
||||||
{$include cocoadefines.inc}
|
{$include cocoadefines.inc}
|
||||||
|
|
||||||
@ -645,6 +646,14 @@ type
|
|||||||
patchVersion: NSInteger;
|
patchVersion: NSInteger;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
NSUndoManagerUndoWithTargetCBlock = reference to procedure(target: id); cblock; cdecl;
|
||||||
|
|
||||||
|
NSUndoManagerFix = objccategory external (NSUndoManager)
|
||||||
|
procedure registerUndoWithTarget_handler(target: id;
|
||||||
|
handler: NSUndoManagerUndoWithTargetCBlock);
|
||||||
|
message 'registerUndoWithTarget:handler:';
|
||||||
|
end;
|
||||||
|
|
||||||
const
|
const
|
||||||
// defined in NSApplication.h
|
// defined in NSApplication.h
|
||||||
NSAppKitVersionNumber10_5 = 949;
|
NSAppKitVersionNumber10_5 = 949;
|
||||||
|
@ -23,6 +23,9 @@ unit CocoaTextEdits;
|
|||||||
{.$DEFINE COCOA_DEBUG_SETBOUNDS}
|
{.$DEFINE COCOA_DEBUG_SETBOUNDS}
|
||||||
{.$DEFINE COCOA_SPIN_DEBUG}
|
{.$DEFINE COCOA_SPIN_DEBUG}
|
||||||
{.$DEFINE COCOA_SPINEDIT_INSIDE_CONTAINER}
|
{.$DEFINE COCOA_SPINEDIT_INSIDE_CONTAINER}
|
||||||
|
{$IFDEF COCOALOOPHIJACK}
|
||||||
|
{$DEFINE COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
@ -31,7 +34,7 @@ uses
|
|||||||
Math, // needed for MinDouble, MaxDouble
|
Math, // needed for MinDouble, MaxDouble
|
||||||
LCLType,
|
LCLType,
|
||||||
MacOSAll, CocoaAll, CocoaConfig, CocoaUtils, CocoaGDIObjects,
|
MacOSAll, CocoaAll, CocoaConfig, CocoaUtils, CocoaGDIObjects,
|
||||||
CocoaPrivate, CocoaCallback;
|
CocoaPrivate, CocoaCallback, Cocoa_Extra;
|
||||||
|
|
||||||
const
|
const
|
||||||
SPINEDIT_DEFAULT_STEPPER_WIDTH = 15;
|
SPINEDIT_DEFAULT_STEPPER_WIDTH = 15;
|
||||||
@ -64,7 +67,10 @@ type
|
|||||||
callback: ICommonCallback;
|
callback: ICommonCallback;
|
||||||
maxLength: Integer;
|
maxLength: Integer;
|
||||||
fixedInitSetting: Boolean;
|
fixedInitSetting: Boolean;
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
FUndoManager: NSUndoManager;
|
||||||
|
procedure dealloc; override;
|
||||||
|
{$ENDIF}
|
||||||
function acceptsFirstResponder: LCLObjCBoolean; override;
|
function acceptsFirstResponder: LCLObjCBoolean; override;
|
||||||
function lclGetCallback: ICommonCallback; override;
|
function lclGetCallback: ICommonCallback; override;
|
||||||
procedure lclClearCallback; override;
|
procedure lclClearCallback; override;
|
||||||
@ -83,6 +89,10 @@ type
|
|||||||
procedure scrollWheel(event: NSEvent); override;
|
procedure scrollWheel(event: NSEvent); override;
|
||||||
|
|
||||||
procedure lclSetMaxLength(amax: integer);
|
procedure lclSetMaxLength(amax: integer);
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
function undoManagerForTextView(view: NSTextView): NSUndoManager; message 'undoManagerForTextView:';
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TCocoaSecureTextField }
|
{ TCocoaSecureTextField }
|
||||||
@ -91,6 +101,10 @@ type
|
|||||||
public
|
public
|
||||||
maxLength: Integer;
|
maxLength: Integer;
|
||||||
callback: ICommonCallback;
|
callback: ICommonCallback;
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
FUndoManager: NSUndoManager;
|
||||||
|
procedure dealloc; override;
|
||||||
|
{$ENDIF}
|
||||||
function acceptsFirstResponder: LCLObjCBoolean; override;
|
function acceptsFirstResponder: LCLObjCBoolean; override;
|
||||||
function lclGetCallback: ICommonCallback; override;
|
function lclGetCallback: ICommonCallback; override;
|
||||||
procedure lclClearCallback; override;
|
procedure lclClearCallback; override;
|
||||||
@ -108,6 +122,9 @@ type
|
|||||||
procedure scrollWheel(event: NSEvent); override;
|
procedure scrollWheel(event: NSEvent); override;
|
||||||
|
|
||||||
procedure lclSetMaxLength(amax: integer);
|
procedure lclSetMaxLength(amax: integer);
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
function undoManagerForTextView(view: NSTextView): NSUndoManager; message 'undoManagerForTextView:';
|
||||||
|
{$ENDIF}
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TCocoaTextView }
|
{ TCocoaTextView }
|
||||||
@ -458,6 +475,20 @@ type
|
|||||||
end;
|
end;
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
|
{ TCocoaUndoManager }
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
TCocoaUndoManager = objcclass(NSUndoManager)
|
||||||
|
lastEvent: NSEvent; // weak reference
|
||||||
|
function init: id; override;
|
||||||
|
procedure undo; override;
|
||||||
|
procedure registerUndoWithTarget_selector_object(target: id; selector: SEL;
|
||||||
|
anObject: id); override;
|
||||||
|
procedure registerUndoWithTarget_handler(target: id;
|
||||||
|
handler: NSUndoManagerUndoWithTargetCBlock); override;
|
||||||
|
procedure lclCheckGrouping; message 'lclCheckGrouping';
|
||||||
|
end;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
// these constants are missing from CocoaAll for some reason
|
// these constants are missing from CocoaAll for some reason
|
||||||
const
|
const
|
||||||
NSTextAlignmentLeft = 0;
|
NSTextAlignmentLeft = 0;
|
||||||
@ -983,6 +1014,15 @@ end;
|
|||||||
|
|
||||||
{ TCocoaTextField }
|
{ TCocoaTextField }
|
||||||
|
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
procedure TCocoaTextField.dealloc;
|
||||||
|
begin
|
||||||
|
if Assigned(FUndoManager) then
|
||||||
|
FUndoManager.release;
|
||||||
|
inherited dealloc;
|
||||||
|
end;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
function TCocoaTextField.acceptsFirstResponder: LCLObjCBoolean;
|
function TCocoaTextField.acceptsFirstResponder: LCLObjCBoolean;
|
||||||
begin
|
begin
|
||||||
Result := NSViewCanFocus(Self);
|
Result := NSViewCanFocus(Self);
|
||||||
@ -1090,6 +1130,15 @@ begin
|
|||||||
maxLength := amax;
|
maxLength := amax;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
function TCocoaTextField.undoManagerForTextView(view: NSTextView): NSUndoManager;
|
||||||
|
begin
|
||||||
|
if not Assigned(FUndoManager) then
|
||||||
|
FUndoManager := TCocoaUndoManager.alloc.init;
|
||||||
|
Result := FUndoManager;
|
||||||
|
end;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
{ TCocoaTextView }
|
{ TCocoaTextView }
|
||||||
|
|
||||||
procedure TCocoaTextView.changeColor(sender: id);
|
procedure TCocoaTextView.changeColor(sender: id);
|
||||||
@ -1244,12 +1293,25 @@ end;
|
|||||||
function TCocoaTextView.undoManagerForTextView(view: NSTextView): NSUndoManager;
|
function TCocoaTextView.undoManagerForTextView(view: NSTextView): NSUndoManager;
|
||||||
begin
|
begin
|
||||||
if not Assigned(FUndoManager) then
|
if not Assigned(FUndoManager) then
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
FUndoManager := TCocoaUndoManager.alloc.init;
|
||||||
|
{$ELSE}
|
||||||
FUndoManager := NSUndoManager.alloc.init;
|
FUndoManager := NSUndoManager.alloc.init;
|
||||||
|
{$ENDIF}
|
||||||
Result := FUndoManager;
|
Result := FUndoManager;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
{ TCocoaSecureTextField }
|
{ TCocoaSecureTextField }
|
||||||
|
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
procedure TCocoaSecureTextField.dealloc;
|
||||||
|
begin
|
||||||
|
if Assigned(FUndoManager) then
|
||||||
|
FUndoManager.release;
|
||||||
|
inherited dealloc;
|
||||||
|
end;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
function TCocoaSecureTextField.acceptsFirstResponder: LCLObjCBoolean;
|
function TCocoaSecureTextField.acceptsFirstResponder: LCLObjCBoolean;
|
||||||
begin
|
begin
|
||||||
Result := NSViewCanFocus(Self);
|
Result := NSViewCanFocus(Self);
|
||||||
@ -1338,6 +1400,15 @@ begin
|
|||||||
MaxLength := amax;
|
MaxLength := amax;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
function TCocoaSecureTextField.undoManagerForTextView(view: NSTextView): NSUndoManager;
|
||||||
|
begin
|
||||||
|
if not Assigned(FUndoManager) then
|
||||||
|
FUndoManager := TCocoaUndoManager.alloc.init;
|
||||||
|
Result := FUndoManager;
|
||||||
|
end;
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
{ TCocoaEditComboBoxList }
|
{ TCocoaEditComboBoxList }
|
||||||
|
|
||||||
procedure TCocoaEditComboBoxList.InsertItem(Index: Integer; const S: string;
|
procedure TCocoaEditComboBoxList.InsertItem(Index: Integer; const S: string;
|
||||||
@ -2369,5 +2440,54 @@ end;
|
|||||||
|
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
|
|
||||||
|
{$IFDEF COCOA_OVERRIDE_UNDOMANAGER}
|
||||||
|
|
||||||
|
{ TCocoaUndoManager }
|
||||||
|
|
||||||
|
function TCocoaUndoManager.init: id;
|
||||||
|
begin
|
||||||
|
// This manages top-level undo groups automatically to work around an issue
|
||||||
|
// where, if we hijack the run loop, all undoable actions are combined into a
|
||||||
|
// single undo group. It isn't necessary for correct behavior in the other
|
||||||
|
// modes.
|
||||||
|
Result := inherited init;
|
||||||
|
Result.setGroupsByEvent(False);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TCocoaUndoManager.undo;
|
||||||
|
begin
|
||||||
|
if not groupsByEvent and (groupingLevel = 1) then
|
||||||
|
endUndoGrouping;
|
||||||
|
inherited;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TCocoaUndoManager.registerUndoWithTarget_selector_object(target: id;
|
||||||
|
selector: SEL; anObject: id);
|
||||||
|
begin
|
||||||
|
lclCheckGrouping;
|
||||||
|
inherited;
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TCocoaUndoManager.registerUndoWithTarget_handler(target: id;
|
||||||
|
handler: NSUndoManagerUndoWithTargetCBlock);
|
||||||
|
begin
|
||||||
|
lclCheckGrouping;
|
||||||
|
inherited registerUndoWithTarget_handler(target, handler);
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure TCocoaUndoManager.lclCheckGrouping;
|
||||||
|
begin
|
||||||
|
if groupsByEvent or isUndoing or isRedoing then
|
||||||
|
Exit;
|
||||||
|
if (groupingLevel = 1) and (lastEvent <> NSApp.currentEvent) then
|
||||||
|
endUndoGrouping;
|
||||||
|
if groupingLevel = 0 then begin
|
||||||
|
lastEvent := NSApp.currentEvent;
|
||||||
|
beginUndoGrouping;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
{$ENDIF}
|
||||||
|
|
||||||
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