-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserInteraction.gs
62 lines (56 loc) · 1.32 KB
/
UserInteraction.gs
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
! ------------------- Class definition for UserInteraction
expectvalue /Class
doit
Object subclass: 'UserInteraction'
instVarNames: #()
classVars: #()
classInstVars: #()
poolDictionaries: #()
inDictionary: UserGlobals
options: #()
%
expectvalue /Class
doit
UserInteraction category: 'Kernel'
%
! ------------------- Remove existing behavior from UserInteraction
expectvalue /Metaclass3
doit
UserInteraction removeAllMethods.
UserInteraction class removeAllMethods.
%
! ------------------- Class methods for UserInteraction
! ------------------- Instance methods for UserInteraction
set compile_env: 0
category: 'other'
method: UserInteraction
alert: aString
^(System __sessionStateAt: 3)
message: aString
caption: 'Jade'
icon: #prompt
buttons: #yesNoCancel.
%
category: 'other'
method: UserInteraction
message: messageString caption: captionString icon: iconSymbol buttons: buttonSymbol
^(System __sessionStateAt: 3)
message: messageString
caption: captionString
icon: iconSymbol
buttons: buttonSymbol.
%
category: 'other'
method: UserInteraction
prompt: promptString
^(System __sessionStateAt: 3)
prompt: promptString
caption: 'Jade'.
%
category: 'other'
method: UserInteraction
prompt: promptString caption: captionString
^(System __sessionStateAt: 3)
prompt: promptString
caption: captionString
%