mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-26 03:18:22 +01:00
52 lines
792 B
Smalltalk
52 lines
792 B
Smalltalk
Class {
|
|
#name : #DiyaEvent,
|
|
#superclass : #DiyaBaseObject,
|
|
#instVars : [
|
|
'enable',
|
|
'mapped',
|
|
'target'
|
|
],
|
|
#category : #'Diya-Events'
|
|
}
|
|
|
|
{ #category : #'instance creation' }
|
|
DiyaEvent class >> from: mappedEvt [
|
|
^ self new mapped: mappedEvt; yourself
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
DiyaEvent >> enable [
|
|
^ enable
|
|
]
|
|
|
|
{ #category : #initialization }
|
|
DiyaEvent >> initialize [
|
|
super initialize.
|
|
enable := true.
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
DiyaEvent >> mapped [
|
|
^ mapped
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
DiyaEvent >> mapped: anObject [
|
|
mapped := anObject
|
|
]
|
|
|
|
{ #category : #initialization }
|
|
DiyaEvent >> preventDefault [
|
|
enable := false
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
DiyaEvent >> target [
|
|
^ target
|
|
]
|
|
|
|
{ #category : #accessing }
|
|
DiyaEvent >> target: anObject [
|
|
target := anObject
|
|
]
|