1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
|
unit CocoaConfig;
{$mode objfpc}{$H+}
{$modeswitch objectivec2}
{$interfaces corba}
{$include cocoadefines.inc}
interface
uses
Forms, SysUtils,
Menus,
CocoaAll, Cocoa_Extra, CocoaConst;
type
TCocoaConfigToolBarItemClassAbstract = class
public
function identifier: NSString; virtual; abstract;
function createItem: NSToolBarItem; virtual; abstract;
end;
TCocoaConfigToolBarItems = Array of TCocoaConfigToolBarItemClassAbstract;
type
TCocoaToolBarItemCreator = function ( const identifier: String;
const items: TCocoaConfigToolBarItems ): NSToolbarItem;
TCocoaToolBarItemActionHandler = procedure ( const Sender: id );
TCocoaToolBarItemMenuOnGetMenu = procedure ( const menu: TMenu );
TCocoaToolBarItemSharingOnGetItems = function ( item: NSToolBarItem ): TStringArray;
type
{ TCocoaConfigToolBarItemBase }
TCocoaConfigToolBarItemBase = object
identifier: String;
priority: NSInteger;
navigational: Boolean;
end;
{ TCocoaConfigToolBarItemWithUI }
TCocoaConfigToolBarItemWithUI = object( TCocoaConfigToolBarItemBase )
iconName: String;
title: String;
tips: String;
bordered: Boolean;
end;
{ TCocoaConfigToolBarItemWithAction }
TCocoaConfigToolBarItemWithAction = object( TCocoaConfigToolBarItemWithUI )
onAction: TCocoaToolBarItemActionHandler;
end;
TCocoaConfigToolBarItem = TCocoaConfigToolBarItemWithAction;
TCocoaConfigToolBarItemSharing = object( TCocoaConfigToolBarItemWithUI )
onGetItems: TCocoaToolBarItemSharingOnGetItems;
end;
TCocoaConfigToolBarItemSearch = object( TCocoaConfigToolBarItemWithAction )
sendWhole: Boolean;
sendImmediately: Boolean;
resignsWithCancel: Boolean;
preferredWidth: Double;
end;
TCocoaConfigToolBarItemMenu = object( TCocoaConfigToolBarItemWithAction )
showsIndicator: Boolean;
dynamic: Boolean; // dynamically load each time before displaying the menu
menu: TMenu;
onGetMenu: TCocoaToolBarItemMenuOnGetMenu;
end;
TCocoaConfigToolBarItemGroup = object( TCocoaConfigToolBarItemWithAction )
representation: NSToolbarItemGroupControlRepresentation;
selectionMode: NSToolbarItemGroupSelectionMode;
selectedIndex: NSInteger;
subitems: TCocoaConfigToolBarItems;
end;
TCocoaConfigTitleBar = record
transparent: Boolean;
separatorStyle: NSTitlebarSeparatorStyle;
end;
TCocoaConfigToolBar = record
identifier: String;
style: NSWindowToolbarStyle;
displayMode: NSToolbarDisplayMode;
allowsUserCustomization: Boolean;
autosavesConfiguration: Boolean;
items: TCocoaConfigToolBarItems;
defaultItemsIdentifiers: TStringArray;
allowedItemsIdentifiers: TStringArray;
itemCreator: Pointer;
end;
TCocoaConfigForm = record
name: String;
className: String;
isMainForm: Boolean;
titleBar: TCocoaConfigTitleBar;
toolBar: TCocoaConfigToolBar;
end;
TCocoaConfigForms = Array of TCocoaConfigForm;
var
CocoaConfigForms: TCocoaConfigForms;
type
TCocoaConfigMenuItem = record
defaultCheckImageName: NSString;
defaultRadioImageName: NSString;
end;
TCocoaConfigAppMenuOnCreate = procedure ( appMenu: NSMenu );
// Application interface provided to facilitate APP to operate App Menu.
// it's easy to set About, Preferences, and customized menus,
// only the LCL TMenuItem is needed to pass in.
// and we can control whether Cocoa is needed to automatically add
// Hide, Hide Others, Show All, and Quit menu items.
TCocoaConfigAppMenu = record
aboutItem: TMenuItem;
preferencesItem: TMenuItem;
customMenus: TMenuItem;
onCreate: TCocoaConfigAppMenuOnCreate;
dontAutoCreateItems: Boolean;
end;
// Application interface provided to facilitate APP to operate Dock Menu.
// only the LCL TMenuItem is needed to pass in.
TCocoaConfigDockMenu = record
customMenus: TMenuItem;
end;
TCocoaConfigMenu = record
menuItem: TCocoaConfigMenuItem;
appMenu: TCocoaConfigAppMenu;
dockMenu: TCocoaConfigDockMenu;
end;
type
// return True for event Handled, bypass post system processing
TCocoaApplicationEventHandler = function( event: NSEvent ): Boolean of object;
// Need to pass to QueueAsyncCall which takes TDataEvent
TCocoaApplicationOnAppQuitEvent = TDataEvent;
// Platform specific NSEvent key translation to VK Keycode function
TCocoaApplicationEventToVK = function(AEvent: NSEvent): Word;
TCocoaConfigApplicationEvents = record
highestHandler: TCocoaApplicationEventHandler;
onQuitApp: TCocoaApplicationOnAppQuitEvent;
keyEventToVK: TCocoaApplicationEventToVK;
end;
TCocoaConfigApplication = record
events: TCocoaConfigApplicationEvents;
end;
type
TCocoaConfigGlobal = record
basePPI: Integer;
useIcon: Boolean;
useLocalizedFontName: Boolean;
end;
type
TCocoaConfigReadOnlyComboBoxItem = record
defaultHeight: Integer;
end;
TCocoaConfigReadOnlyComboBox = record
item: TCocoaConfigReadOnlyComboBoxItem;
end;
TCocoaConfigComboBox = record
readOnly: TCocoaConfigReadOnlyComboBox;
end;
type
TCocoaConfigSize = record
width: Double;
height: Double;
end;
TCocoaConfigTableRow = record
defaultHeight: Integer;
imageLineSpacing: Integer;
end;
TCocoaConfigTableColumn = record
controlSpacing: Integer;
textFieldMinWidth: Integer;
end;
TCocoaConfigTableColumnAutoFit = record
// for performance, when the column divider is double-clicked to automatically
// calculate the column width, the maximum number of rows calculated
maxCalcRows: Integer;
// min Column Width when the column divider is double-clicked
minWidth: Double;
// additional width for header
headerAdditionalWidth: Double;
end;
TCocoaConfigTable = record
// default NSTableViewStyle
tableViewStyle: NSTableViewStyle;
row: TCocoaConfigTableRow;
column: TCocoaConfigTableColumn;
columnAutoFit: TCocoaConfigTableColumnAutoFit;
end;
TCocoaConfigCollectionItem = record
minSize: TCocoaConfigSize;
controlSpacing: Double;
textFieldAlignment: NSTextAlignment;
checkBoxOccupiedWidth: Double;
end;
TCocoaConfigCollection = object
interitemSpacing: Double;
lineSpacing: Double;
item: TCocoaConfigCollectionItem;
end;
TCocoaConfigCollectionIconImageView = record
minSize: TCocoaConfigSize;
padding: Double;
end;
TCocoaConfigCollectionLargeIconTextField = record
defaultHeight: Double;
end;
TCocoaConfigCollectionSmallIconTextField = record
iconWidthFactor: Double;
baseWidth: Double;
minWidth: Double;
end;
TCocoaConfigCollectionIcon = object( TCocoaConfigCollection )
imageView: TCocoaConfigCollectionIconImageView;
end;
TCocoaConfigCollectionLargeIcon = object( TCocoaConfigCollectionIcon )
textField: TCocoaConfigCollectionLargeIconTextField;
end;
TCocoaConfigCollectionSmallIcon = object( TCocoaConfigCollectionIcon )
textField: TCocoaConfigCollectionSmallIconTextField;
end;
TCocoaConfigListView = record
vsReport: TCocoaConfigTable;
vsIcon: TCocoaConfigCollectionLargeIcon;
vsSmallIcon: TCocoaConfigCollectionSmallIcon;
vsList: TCocoaConfigCollection;
end;
type
NSColorFunction = Function(): NSColor;
function getCocoaScrollerDefaultKnobColor: NSColor;
type
TCocoaConfgiScrollerKnob = object
radius: Double;
color: NSColorFunction;
pos: Double;
shrunkSize: Double;
end;
TCocoaConfgiScrollerLegacyKnob = object( TCocoaConfgiScrollerKnob )
alpha: Double;
alphaBlack: Double;
fadeStep: Double;
end;
TCocoaConfgiScrollerOverlayKnob = object( TCocoaConfgiScrollerKnob )
minSize: Double;
end;
TCocoaConfigScrollerLegacy = record
knob: TCocoaConfgiScrollerLegacyKnob;
end;
TCocoaConfigScrollerOverlayBar = record
autoShowDelayTime: Double;
autoHideDelayTime: Double;
alpha: Double;
alphaFadeStep: Double;
alphaFadeTo: Double;
expandTimeInterval: Double;
expandSize: Double;
end;
TCocoaConfigScrollerOverlay = record
bar: TCocoaConfigScrollerOverlayBar;
knob: TCocoaConfgiScrollerOverlayKnob;
end;
TCocoaConfigScroller = record
preferredStyle: NSScrollerStyle;
fadeTimeInterval: Double;
legacy: TCocoaConfigScrollerLegacy;
overlay: TCocoaConfigScrollerOverlay;
end;
type
TCocoaConfigToggleBox = record
bezelStyle: NSBezelStyle;
buttonType: NSButtonType;
end;
type
TCocoaConfigPanel = record
classicFrame3d: Boolean;
end;
type
TCocoaConfigMouse = record
controlLeftToRightClick: Boolean;
end;
type
TCocoaConfigNotification = record
alwaysPresent: Boolean;
end;
type
{ TCocoaConfigFocusRing }
// on macOS, the FocusRing takes up extra space, which may cause strange
// display in some cases. it may block other controls, or be partially cut off.
// for example, in the Lazarus IDE - About dialog, the FocusRing of the
// Tab of TPageControl is partially cut off.
// by providing a configurable infrastructure, FocusRing can be controlled
// for different control types.
TCocoaConfigFocusRing = class
{$scopedEnums on}
type Strategy = (
default, // by macOS Default
none, // no FoucsRing
required, // have FocusRing
border // by LCL Control Border
);
private
_strategies: NSMutableDictionary;
public
constructor Create;
destructor Destroy; override;
// set the FocusRing strategy of the control according to ClassName
// (eg. 'TCocoaTabControl')
// APP can change the default setting of Cocoa WidgetSet
// by calling setStrategy() too.
procedure setStrategy( frs: Strategy; AClassName: NSString );
// getStrategy() is mainly used internally by Cocoa WidgetSet
function getStrategy( AClassName: NSString ): Strategy;
end;
// config data is stored in CocoaConfig.inc
{$include cocoaconfig.inc}
var
CocoaConfigFocusRing: TCocoaConfigFocusRing;
implementation
constructor TCocoaConfigFocusRing.Create;
begin
_strategies:= NSMutableDictionary.alloc.initWithCapacity( 16 );
// FocusRing config data is stored in CocoaConfigFocusRing.inc
{$include cocoaconfigfocusring.inc}
end;
destructor TCocoaConfigFocusRing.Destroy;
begin
inherited Destroy;
_strategies.release;
end;
procedure TCocoaConfigFocusRing.setStrategy(
frs: Strategy; AClassName: NSString);
var
valueObject: NSNumber;
begin
valueObject:= NSNumber.numberWithInt( Ord(frs) );
_strategies.setValue_forKey( valueObject , AClassName );
end;
function TCocoaConfigFocusRing.getStrategy(
AClassName: NSString): Strategy;
var
valueObject: NSNumber;
begin
Result:= TCocoaConfigFocusRing.Strategy.default;
valueObject:= NSNumber( _strategies.valueForKey(AClassName) );
if Assigned(valueObject) then
Result:= TCocoaConfigFocusRing.Strategy(valueObject.intValue);
end;
function getCocoaScrollerDefaultKnobColor: NSColor;
begin
Result:= NSColor.controlTextColor;
end;
initialization
CocoaConfigMenu.menuItem.defaultCheckImageName:= NSSTR('NSMenuCheckmark');
CocoaConfigMenu.menuItem.defaultRadioImageName:= NSSTR('NSDatePickerCalendarHome');
CocoaConfigFocusRing:= TCocoaConfigFocusRing.Create;
finalization
FreeAndNil( CocoaConfigFocusRing );
end.
|