mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-02-19 19:36:32 +01:00
- Fixed text metrics is now rounded instead of truncated as suggested by Phil J. Hess - GetTextExtent accepts empty strings and returns zero size - scrolling should now partially work!!!, implemented TScrollingWinControl.ScrollBy - force 32-bit bitmaps to allow supported context creation git-svn-id: trunk@11928 -
272 lines
9.2 KiB
ObjectPascal
272 lines
9.2 KiB
ObjectPascal
{ $Id$}
|
|
{
|
|
*****************************************************************************
|
|
* CarbonWSForms.pp *
|
|
* ------------ *
|
|
* *
|
|
* *
|
|
*****************************************************************************
|
|
|
|
*****************************************************************************
|
|
* *
|
|
* This file is part of the Lazarus Component Library (LCL) *
|
|
* *
|
|
* See the file COPYING.modifiedLGPL, included in this distribution, *
|
|
* for details about the copyright. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
*****************************************************************************
|
|
}
|
|
unit CarbonWSForms;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
// debugging defines
|
|
{$I carbondebug.inc}
|
|
|
|
uses
|
|
// Libs
|
|
FPCMacOSAll, CarbonUtils,
|
|
// LCL
|
|
Controls, Forms, Graphics, LCLType, LMessages, LCLProc, Classes,
|
|
// Widgetset
|
|
WSForms, WSLCLClasses, WSProc,
|
|
// LCL Carbon
|
|
CarbonDef, CarbonPrivate, CarbonWSControls;
|
|
|
|
type
|
|
|
|
{ TCarbonWSScrollingWinControl }
|
|
|
|
TCarbonWSScrollingWinControl = class(TWSScrollingWinControl)
|
|
private
|
|
protected
|
|
public
|
|
class function CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLIntfHandle; override;
|
|
class procedure ScrollBy(const AWinControl: TScrollingWinControl; const DeltaX, DeltaY: integer); override;
|
|
end;
|
|
|
|
{ TCarbonWSScrollBox }
|
|
|
|
TCarbonWSScrollBox = class(TWSScrollBox)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSCustomFrame }
|
|
|
|
TCarbonWSCustomFrame = class(TWSCustomFrame)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSFrame }
|
|
|
|
TCarbonWSFrame = class(TWSFrame)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSCustomForm }
|
|
TCarbonWSCustomFormClass = class of TCarbonWSCustomForm;
|
|
TCarbonWSCustomForm = class(TWSCustomForm)
|
|
private
|
|
protected
|
|
public
|
|
class function CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLIntfHandle; override;
|
|
|
|
class procedure CloseModal(const ACustomForm: TCustomForm); override;
|
|
class procedure ShowModal(const ACustomForm: TCustomForm); override;
|
|
|
|
class procedure SetBorderIcons(const AForm: TCustomForm; const ABorderIcons: TBorderIcons); override;
|
|
class procedure SetFormBorderStyle(const AForm: TCustomForm; const AFormBorderStyle: TFormBorderStyle); override;
|
|
end;
|
|
|
|
{ TCarbonWSForm }
|
|
|
|
TCarbonWSForm = class(TWSForm)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSHintWindow }
|
|
|
|
TCarbonWSHintWindow = class(TWSHintWindow)
|
|
private
|
|
protected
|
|
public
|
|
class function CreateHandle(const AWinControl: TWinControl; const AParams: TCreateParams): TLCLIntfHandle; override;
|
|
end;
|
|
|
|
{ TCarbonWSScreen }
|
|
|
|
TCarbonWSScreen = class(TWSScreen)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
{ TCarbonWSApplicationProperties }
|
|
|
|
TCarbonWSApplicationProperties = class(TWSApplicationProperties)
|
|
private
|
|
protected
|
|
public
|
|
end;
|
|
|
|
|
|
implementation
|
|
|
|
uses
|
|
CarbonProc, CarbonDbgConsts;
|
|
|
|
|
|
{ TCarbonWSScrollingWinControl }
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSScrollingWinControl.CreateHandle
|
|
Params: AWinControl - LCL control
|
|
AParams - Creation parameters
|
|
Returns: Handle to the window in Carbon interface
|
|
|
|
Creates new scrolling window control in Carbon interface with the specified
|
|
parameters
|
|
------------------------------------------------------------------------------}
|
|
class function TCarbonWSScrollingWinControl.CreateHandle(const AWinControl: TWinControl;
|
|
const AParams: TCreateParams): TLCLIntfHandle;
|
|
begin
|
|
Result := TLCLIntfHandle(TCarbonScrollingWinControl.Create(AWinControl, AParams));
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSScrollingWinControl.ScrollBy
|
|
Params: AWinControl - LCL scrolling win control
|
|
DX, DY -
|
|
|
|
Scrolls the content of the passed window
|
|
------------------------------------------------------------------------------}
|
|
class procedure TCarbonWSScrollingWinControl.ScrollBy(const AWinControl: TScrollingWinControl; const DeltaX, DeltaY: integer);
|
|
begin
|
|
if not CheckHandle(AWinControl, Self, 'ScrollBy') then Exit;
|
|
|
|
TCarbonWidget(AWinControl.Handle).ScrollBy(DeltaX, DeltaY);
|
|
end;
|
|
|
|
{ TCarbonWSCustomForm }
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSCustomForm.CreateHandle
|
|
Params: AWinControl - LCL control
|
|
AParams - Creation parameters
|
|
Returns: Handle to the window in Carbon interface
|
|
|
|
Creates new window in Carbon interface with the specified parameters
|
|
------------------------------------------------------------------------------}
|
|
class function TCarbonWSCustomForm.CreateHandle(const AWinControl: TWinControl;
|
|
const AParams: TCreateParams): TLCLIntfHandle;
|
|
begin
|
|
Result := TLCLIntfHandle(TCarbonWindow.Create(AWinControl, AParams));
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSCustomForm.CloseModal
|
|
Params: ACustomForm - LCL custom form
|
|
|
|
Closes modal window in Carbon interface
|
|
------------------------------------------------------------------------------}
|
|
class procedure TCarbonWSCustomForm.CloseModal(const ACustomForm: TCustomForm);
|
|
begin
|
|
if not CheckHandle(ACustomForm, Self, 'CloseModal') then Exit;
|
|
|
|
TCarbonWindow(ACustomForm.Handle).CloseModal;
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSCustomForm.ShowModal
|
|
Params: ACustomForm - LCL custom form
|
|
|
|
Shows modal window in Carbon interface
|
|
------------------------------------------------------------------------------}
|
|
class procedure TCarbonWSCustomForm.ShowModal(const ACustomForm: TCustomForm);
|
|
begin
|
|
if not CheckHandle(ACustomForm, Self, SShowModal) then Exit;
|
|
|
|
TCarbonWindow(ACustomForm.Handle).ShowModal;
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSCustomForm.SetBorderIcons
|
|
Params: AForm - LCL custom form
|
|
ABorderIcons - Border icons
|
|
|
|
Sets the border icons of window in Carbon interface
|
|
------------------------------------------------------------------------------}
|
|
class procedure TCarbonWSCustomForm.SetBorderIcons(const AForm: TCustomForm;
|
|
const ABorderIcons: TBorderIcons);
|
|
begin
|
|
if not CheckHandle(AForm, Self, 'SetBorderIcons') then Exit;
|
|
|
|
TCarbonWindow(AForm.Handle).SetBorderIcons(ABorderIcons);
|
|
end;
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSCustomForm.SetFormBorderStyle
|
|
Params: AForm - LCL custom form
|
|
AFormBorderStyle - Form border style
|
|
|
|
Sets the form border style of window in Carbon interface
|
|
------------------------------------------------------------------------------}
|
|
class procedure TCarbonWSCustomForm.SetFormBorderStyle(const AForm: TCustomForm;
|
|
const AFormBorderStyle: TFormBorderStyle);
|
|
begin
|
|
if not CheckHandle(AForm, Self, 'SetFormBorderStyle') then Exit;
|
|
|
|
TCarbonWindow(AForm.Handle).SetFormBorderStyle(AFormBorderStyle);
|
|
end;
|
|
|
|
{ TCarbonWSHintWindow }
|
|
|
|
{------------------------------------------------------------------------------
|
|
Method: TCarbonWSHintWindow.CreateHandle
|
|
Params: AWinControl - LCL control
|
|
AParams - Creation parameters
|
|
Returns: Handle to the window in Carbon interface
|
|
|
|
Creates new hint window in Carbon interface with the specified parameters
|
|
------------------------------------------------------------------------------}
|
|
class function TCarbonWSHintWindow.CreateHandle(const AWinControl: TWinControl;
|
|
const AParams: TCreateParams): TLCLIntfHandle;
|
|
begin
|
|
Result := TLCLIntfHandle(TCarbonHintWindow.Create(AWinControl, AParams));
|
|
end;
|
|
|
|
initialization
|
|
|
|
////////////////////////////////////////////////////
|
|
// I M P O R T A N T
|
|
////////////////////////////////////////////////////
|
|
// To improve speed, register only classes
|
|
// which actually implement something
|
|
////////////////////////////////////////////////////
|
|
RegisterWSComponent(TScrollingWinControl, TCarbonWSScrollingWinControl);
|
|
// RegisterWSComponent(TScrollBox, TCarbonWSScrollBox);
|
|
// RegisterWSComponent(TCustomFrame, TCarbonWSCustomFrame);
|
|
// RegisterWSComponent(TFrame, TCarbonWSFrame);
|
|
RegisterWSComponent(TCustomForm, TCarbonWSCustomForm);
|
|
// RegisterWSComponent(TForm, TCarbonWSForm);
|
|
RegisterWSComponent(THintWindow, TCarbonWSHintWindow);
|
|
// RegisterWSComponent(TScreen, TCarbonWSScreen);
|
|
// RegisterWSComponent(TApplicationProperties, TCarbonWSApplicationProperties);
|
|
////////////////////////////////////////////////////
|
|
|
|
end.
|