Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add back BLCursor as deprecated #404

Merged
merged 2 commits into from
Jan 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 90 additions & 0 deletions src/Bloc/BLCursor.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
Class {
#name : 'BLCursor',
#superclass : 'Object',
#category : 'Bloc-Utilities - Selection',
#package : 'Bloc',
#tag : 'Utilities - Selection'
}

{ #category : 'accessing' }
BLCursor class >> crosshair [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv crosshair' -> 'Cursor crossHair'.
^ Cursor crossHair
]

{ #category : 'accessing' }
BLCursor class >> default [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv default' -> 'Cursor normal'.
^ Cursor normal
]

{ #category : 'accessing' }
BLCursor class >> hand [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv hand' -> 'Cursor webLink'.
^ Cursor webLink
]

{ #category : 'testing' }
BLCursor class >> isDeprecated [

^ true
]

{ #category : 'accessing' }
BLCursor class >> overEditableText [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv overEditableText' -> 'Cursor overEditableText'.
^ Cursor overEditableText
]

{ #category : 'accessing' }
BLCursor class >> resizeBottom [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv resizeBottom' -> 'Cursor resizeBottom'.
^ Cursor resizeBottom
]

{ #category : 'accessing' }
BLCursor class >> resizeBottomLeft [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv resizeBottomLeft' -> 'Cursor resizeBottomLeft'.
^ Cursor resizeBottomLeft
]

{ #category : 'accessing' }
BLCursor class >> resizeBottomRight [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv resizeBottomRight' -> 'Cursor resizeBottomRight'.
^ Cursor resizeBottomRight
]

{ #category : 'accessing' }
BLCursor class >> resizeTop [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv resizeTop' -> 'Cursor resizeTop'.
^ Cursor resizeTop
]

{ #category : 'accessing' }
BLCursor class >> resizeTopLeft [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv resizeTopLeft' -> 'Cursor resizeTopLeft'.
^ Cursor resizeTopLeft
]

{ #category : 'accessing' }
BLCursor class >> resizeTopRight [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv resizeTopRight' -> 'Cursor resizeTopRight'.
^ Cursor resizeTopRight
]

{ #category : 'accessing' }
BLCursor class >> wait [

self deprecated: 'Use Cursor instead.' transformWith: '`@rcv wait' -> 'Cursor wait'.
^ Cursor wait
]