2008-04-11 23:33:01 -04:00
|
|
|
! Copyright (C) 2006, 2008 Slava Pestov
|
2007-09-20 18:09:08 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-07-10 21:32:17 -04:00
|
|
|
USING: accessors alien alien.c-types arrays assocs cocoa kernel
|
|
|
|
math cocoa.messages cocoa.subclassing cocoa.classes cocoa.views
|
|
|
|
cocoa.application cocoa.pasteboard cocoa.types cocoa.windows
|
|
|
|
sequences ui ui.gadgets ui.gadgets.worlds ui.gestures
|
2009-01-19 17:29:52 -05:00
|
|
|
core-foundation.strings core-graphics core-graphics.types
|
|
|
|
threads combinators math.geometry.rect ;
|
2009-01-26 01:36:37 -05:00
|
|
|
IN: ui.backend.cocoa.views
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: send-mouse-moved ( view event -- )
|
2008-11-28 01:02:02 -05:00
|
|
|
[ mouse-location ] [ drop window ] 2bi move-hand fire-motion ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: button ( event -- n )
|
|
|
|
#! Cocoa -> Factor UI button mapping
|
|
|
|
-> buttonNumber H{ { 0 1 } { 2 2 } { 1 3 } } at ;
|
|
|
|
|
2009-01-19 17:29:52 -05:00
|
|
|
CONSTANT: modifiers
|
2007-09-20 18:09:08 -04:00
|
|
|
{
|
|
|
|
{ S+ HEX: 20000 }
|
|
|
|
{ C+ HEX: 40000 }
|
2008-11-21 23:03:14 -05:00
|
|
|
{ A+ HEX: 100000 }
|
|
|
|
{ M+ HEX: 80000 }
|
2009-01-19 17:29:52 -05:00
|
|
|
}
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2009-01-19 17:29:52 -05:00
|
|
|
CONSTANT: key-codes
|
2007-09-20 18:09:08 -04:00
|
|
|
H{
|
|
|
|
{ 71 "CLEAR" }
|
|
|
|
{ 36 "RET" }
|
|
|
|
{ 76 "ENTER" }
|
|
|
|
{ 53 "ESC" }
|
|
|
|
{ 48 "TAB" }
|
|
|
|
{ 51 "BACKSPACE" }
|
|
|
|
{ 115 "HOME" }
|
|
|
|
{ 117 "DELETE" }
|
|
|
|
{ 119 "END" }
|
|
|
|
{ 122 "F1" }
|
|
|
|
{ 120 "F2" }
|
|
|
|
{ 99 "F3" }
|
|
|
|
{ 118 "F4" }
|
|
|
|
{ 96 "F5" }
|
|
|
|
{ 97 "F6" }
|
|
|
|
{ 98 "F7" }
|
|
|
|
{ 100 "F8" }
|
|
|
|
{ 123 "LEFT" }
|
|
|
|
{ 124 "RIGHT" }
|
|
|
|
{ 125 "DOWN" }
|
|
|
|
{ 126 "UP" }
|
|
|
|
{ 116 "PAGE_UP" }
|
|
|
|
{ 121 "PAGE_DOWN" }
|
2009-01-19 17:29:52 -05:00
|
|
|
}
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: key-code ( event -- string ? )
|
|
|
|
dup -> keyCode key-codes at
|
|
|
|
[ t ] [ -> charactersIgnoringModifiers CF>string f ] ?if ;
|
|
|
|
|
|
|
|
: event-modifiers ( event -- modifiers )
|
|
|
|
-> modifierFlags modifiers modifier ;
|
|
|
|
|
|
|
|
: key-event>gesture ( event -- modifiers keycode action? )
|
2009-01-19 17:29:52 -05:00
|
|
|
[ event-modifiers ] [ key-code ] bi ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
2008-11-21 23:03:14 -05:00
|
|
|
: send-key-event ( view gesture -- )
|
2008-12-10 17:40:05 -05:00
|
|
|
swap window propagate-key-gesture ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: interpret-key-event ( view event -- )
|
|
|
|
NSArray swap -> arrayWithObject: -> interpretKeyEvents: ;
|
|
|
|
|
|
|
|
: send-key-down-event ( view event -- )
|
2008-11-21 23:03:14 -05:00
|
|
|
[ key-event>gesture <key-down> send-key-event ]
|
|
|
|
[ interpret-key-event ]
|
|
|
|
2bi ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: send-key-up-event ( view event -- )
|
2008-11-21 23:03:14 -05:00
|
|
|
key-event>gesture <key-up> send-key-event ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: mouse-event>gesture ( event -- modifiers button )
|
2009-01-19 17:29:52 -05:00
|
|
|
[ event-modifiers ] [ button ] bi ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: send-button-down$ ( view event -- )
|
2008-11-30 18:47:29 -05:00
|
|
|
[ nip mouse-event>gesture <button-down> ]
|
|
|
|
[ mouse-location ]
|
|
|
|
[ drop window ]
|
|
|
|
2tri send-button-down ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: send-button-up$ ( view event -- )
|
2008-11-30 18:47:29 -05:00
|
|
|
[ nip mouse-event>gesture <button-up> ]
|
|
|
|
[ mouse-location ]
|
|
|
|
[ drop window ]
|
|
|
|
2tri send-button-up ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: send-wheel$ ( view event -- )
|
2008-11-30 18:47:29 -05:00
|
|
|
[ nip [ -> deltaX ] [ -> deltaY ] bi [ sgn neg ] bi@ 2array ]
|
|
|
|
[ mouse-location ]
|
|
|
|
[ drop window ]
|
|
|
|
2tri send-wheel ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: send-action$ ( view event gesture -- junk )
|
2008-11-28 01:02:02 -05:00
|
|
|
[ drop window ] dip send-action f ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: add-resize-observer ( observer object -- )
|
2008-11-28 01:02:02 -05:00
|
|
|
[
|
|
|
|
"updateFactorGadgetSize:"
|
|
|
|
"NSViewFrameDidChangeNotification" <NSString>
|
|
|
|
] dip add-observer ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: string-or-nil? ( NSString -- ? )
|
|
|
|
[ CF>string NSStringPboardType = ] [ t ] if* ;
|
|
|
|
|
|
|
|
: valid-service? ( gadget send-type return-type -- ? )
|
2009-01-19 17:29:52 -05:00
|
|
|
2dup [ string-or-nil? ] [ string-or-nil? ] bi* and
|
2008-11-30 18:47:29 -05:00
|
|
|
[ drop [ gadget-selection? ] [ drop t ] if ] [ 3drop f ] if ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: NSRect>rect ( NSRect world -- rect )
|
2009-01-19 17:29:52 -05:00
|
|
|
[ [ [ CGRect-x ] [ CGRect-y ] bi ] [ dim>> second ] bi* swap - 2array ]
|
|
|
|
[ drop [ CGRect-w ] [ CGRect-h ] bi 2array ]
|
2008-11-30 18:47:29 -05:00
|
|
|
2bi <rect> ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
: rect>NSRect ( rect world -- NSRect )
|
2008-11-30 18:47:29 -05:00
|
|
|
[ [ rect-loc first2 ] [ dim>> second ] bi* swap - ]
|
|
|
|
[ drop rect-dim first2 ]
|
2009-01-19 17:29:52 -05:00
|
|
|
2bi <CGRect> ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
CLASS: {
|
|
|
|
{ +superclass+ "NSOpenGLView" }
|
|
|
|
{ +name+ "FactorView" }
|
|
|
|
{ +protocols+ { "NSTextInput" } }
|
|
|
|
}
|
2008-04-23 02:31:32 -04:00
|
|
|
|
|
|
|
! Rendering
|
2008-09-10 23:19:57 -04:00
|
|
|
{ "drawRect:" "void" { "id" "SEL" "NSRect" }
|
|
|
|
[ 2drop window relayout-1 ]
|
2008-04-23 02:31:32 -04:00
|
|
|
}
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
! Events
|
2008-09-12 23:01:07 -04:00
|
|
|
{ "acceptsFirstMouse:" "char" { "id" "SEL" "id" }
|
2007-09-20 18:09:08 -04:00
|
|
|
[ 3drop 1 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "mouseEntered:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-mouse-moved ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "mouseExited:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ 3drop forget-rollover ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "mouseMoved:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-mouse-moved ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "mouseDragged:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-mouse-moved ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "rightMouseDragged:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-mouse-moved ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "otherMouseDragged:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-mouse-moved ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "mouseDown:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-button-down$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "mouseUp:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-button-up$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "rightMouseDown:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-button-down$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "rightMouseUp:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-button-up$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "otherMouseDown:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-button-down$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "otherMouseUp:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-button-up$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "scrollWheel:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-wheel$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "keyDown:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-key-down-event ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "keyUp:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ nip send-key-up-event ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
2009-01-28 01:30:57 -05:00
|
|
|
{ "undo:" "id" { "id" "SEL" "id" }
|
|
|
|
[ nip undo-action send-action$ ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "redo:" "id" { "id" "SEL" "id" }
|
|
|
|
[ nip redo-action send-action$ ]
|
|
|
|
}
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
{ "cut:" "id" { "id" "SEL" "id" }
|
2009-01-28 01:30:57 -05:00
|
|
|
[ nip cut-action send-action$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "copy:" "id" { "id" "SEL" "id" }
|
2009-01-28 01:30:57 -05:00
|
|
|
[ nip copy-action send-action$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "paste:" "id" { "id" "SEL" "id" }
|
2009-01-28 01:30:57 -05:00
|
|
|
[ nip paste-action send-action$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "delete:" "id" { "id" "SEL" "id" }
|
2009-01-28 01:30:57 -05:00
|
|
|
[ nip delete-action send-action$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "selectAll:" "id" { "id" "SEL" "id" }
|
2009-01-28 01:30:57 -05:00
|
|
|
[ nip select-all-action send-action$ ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
2008-04-11 23:33:01 -04:00
|
|
|
! Multi-touch gestures: this is undocumented.
|
|
|
|
! http://cocoadex.com/2008/02/nsevent-modifications-swipe-ro.html
|
|
|
|
{ "magnifyWithEvent:" "void" { "id" "SEL" "id" }
|
|
|
|
[
|
|
|
|
nip
|
|
|
|
dup -> deltaZ sgn {
|
2009-01-28 01:30:57 -05:00
|
|
|
{ 1 [ zoom-in-action send-action$ ] }
|
|
|
|
{ -1 [ zoom-out-action send-action$ ] }
|
2008-04-11 23:33:01 -04:00
|
|
|
{ 0 [ 2drop ] }
|
|
|
|
} case
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "swipeWithEvent:" "void" { "id" "SEL" "id" }
|
|
|
|
[
|
|
|
|
nip
|
|
|
|
dup -> deltaX sgn {
|
2009-01-28 01:30:57 -05:00
|
|
|
{ 1 [ left-action send-action$ ] }
|
|
|
|
{ -1 [ right-action send-action$ ] }
|
2008-04-11 23:33:01 -04:00
|
|
|
{ 0
|
|
|
|
[
|
|
|
|
dup -> deltaY sgn {
|
2009-01-28 01:30:57 -05:00
|
|
|
{ 1 [ up-action send-action$ ] }
|
|
|
|
{ -1 [ down-action send-action$ ] }
|
2008-04-11 23:33:01 -04:00
|
|
|
{ 0 [ 2drop ] }
|
|
|
|
} case
|
|
|
|
]
|
|
|
|
}
|
|
|
|
} case
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2008-04-12 17:21:23 -04:00
|
|
|
! "rotateWithEvent:" "void" { "id" "SEL" "id" }}
|
|
|
|
|
2008-09-12 23:01:07 -04:00
|
|
|
{ "acceptsFirstResponder" "char" { "id" "SEL" }
|
2007-09-20 18:09:08 -04:00
|
|
|
[ 2drop 1 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
! Services
|
|
|
|
{ "validRequestorForSendType:returnType:" "id" { "id" "SEL" "id" "id" }
|
|
|
|
[
|
|
|
|
! We return either self or nil
|
2008-11-28 01:02:02 -05:00
|
|
|
[ over window-focus ] 2dip
|
2007-09-20 18:09:08 -04:00
|
|
|
valid-service? [ drop ] [ 2drop f ] if
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2008-09-12 23:01:07 -04:00
|
|
|
{ "writeSelectionToPasteboard:types:" "char" { "id" "SEL" "id" "id" }
|
2007-09-20 18:09:08 -04:00
|
|
|
[
|
|
|
|
CF>string-array NSStringPboardType swap member? [
|
2008-12-10 17:25:57 -05:00
|
|
|
[ drop window-focus gadget-selection ] dip over
|
|
|
|
[ set-pasteboard-string 1 ] [ 2drop 0 ] if
|
|
|
|
] [ 3drop 0 ] if
|
2007-09-20 18:09:08 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2008-09-12 23:01:07 -04:00
|
|
|
{ "readSelectionFromPasteboard:" "char" { "id" "SEL" "id" }
|
2007-09-20 18:09:08 -04:00
|
|
|
[
|
|
|
|
pasteboard-string dup [
|
2008-12-10 17:40:05 -05:00
|
|
|
[ drop window ] dip swap user-input 1
|
2008-12-10 17:25:57 -05:00
|
|
|
] [ 3drop 0 ] if
|
2007-09-20 18:09:08 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
! Text input
|
|
|
|
{ "insertText:" "void" { "id" "SEL" "id" }
|
2008-12-10 17:40:05 -05:00
|
|
|
[ nip CF>string swap window user-input ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
2008-09-12 23:01:07 -04:00
|
|
|
{ "hasMarkedText" "char" { "id" "SEL" }
|
2007-09-20 18:09:08 -04:00
|
|
|
[ 2drop 0 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "markedRange" "NSRange" { "id" "SEL" }
|
|
|
|
[ 2drop 0 0 <NSRange> ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "selectedRange" "NSRange" { "id" "SEL" }
|
|
|
|
[ 2drop 0 0 <NSRange> ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "setMarkedText:selectedRange:" "void" { "id" "SEL" "id" "NSRange" }
|
|
|
|
[ 2drop 2drop ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "unmarkText" "void" { "id" "SEL" }
|
|
|
|
[ 2drop ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "validAttributesForMarkedText" "id" { "id" "SEL" }
|
|
|
|
[ 2drop NSArray -> array ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "attributedSubstringFromRange:" "id" { "id" "SEL" "NSRange" }
|
|
|
|
[ 3drop f ]
|
|
|
|
}
|
|
|
|
|
2008-09-12 23:01:07 -04:00
|
|
|
{ "characterIndexForPoint:" "NSUInteger" { "id" "SEL" "NSPoint" }
|
2007-09-20 18:09:08 -04:00
|
|
|
[ 3drop 0 ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "firstRectForCharacterRange:" "NSRect" { "id" "SEL" "NSRange" }
|
2009-01-19 17:29:52 -05:00
|
|
|
[ 3drop 0 0 0 0 <CGRect> ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
2008-09-11 00:40:41 -04:00
|
|
|
{ "conversationIdentifier" "NSInteger" { "id" "SEL" }
|
2007-09-20 18:09:08 -04:00
|
|
|
[ drop alien-address ]
|
|
|
|
}
|
|
|
|
|
|
|
|
! Initialization
|
|
|
|
{ "updateFactorGadgetSize:" "void" { "id" "SEL" "id" }
|
2008-11-22 00:01:20 -05:00
|
|
|
[ 2drop dup view-dim swap window (>>dim) yield ]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "doCommandBySelector:" "void" { "id" "SEL" "SEL" }
|
|
|
|
[ 3drop ]
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
{ "initWithFrame:pixelFormat:" "id" { "id" "SEL" "NSRect" "id" }
|
|
|
|
[
|
2008-11-30 18:47:29 -05:00
|
|
|
[ drop ] 2dip
|
2007-09-20 18:09:08 -04:00
|
|
|
SUPER-> initWithFrame:pixelFormat:
|
|
|
|
dup dup add-resize-observer
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "dealloc" "void" { "id" "SEL" }
|
|
|
|
[
|
|
|
|
drop
|
2008-11-30 18:47:29 -05:00
|
|
|
[ unregister-window ]
|
|
|
|
[ remove-observer ]
|
|
|
|
[ SUPER-> dealloc ]
|
|
|
|
tri
|
2007-09-20 18:09:08 -04:00
|
|
|
]
|
|
|
|
} ;
|
|
|
|
|
2008-05-16 10:57:27 -04:00
|
|
|
: sync-refresh-to-screen ( GLView -- )
|
|
|
|
-> openGLContext -> CGLContextObj NSOpenGLCPSwapInterval 1 <int>
|
|
|
|
CGLSetParameter drop ;
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
: <FactorView> ( world -- view )
|
2008-05-16 10:57:27 -04:00
|
|
|
FactorView over rect-dim <GLView>
|
|
|
|
[ sync-refresh-to-screen ] keep
|
|
|
|
[ register-window ] keep ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
CLASS: {
|
|
|
|
{ +superclass+ "NSObject" }
|
|
|
|
{ +name+ "FactorWindowDelegate" }
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "windowDidMove:" "void" { "id" "SEL" "id" }
|
|
|
|
[
|
|
|
|
2nip -> object
|
2009-01-19 17:29:52 -05:00
|
|
|
[ -> contentView window ]
|
|
|
|
[ window-content-rect CGRect-x-y 2array ] bi
|
|
|
|
>>window-loc drop
|
2007-09-20 18:09:08 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "windowDidBecomeKey:" "void" { "id" "SEL" "id" }
|
|
|
|
[
|
|
|
|
2nip -> object -> contentView window focus-world
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "windowDidResignKey:" "void" { "id" "SEL" "id" }
|
|
|
|
[
|
|
|
|
forget-rollover
|
|
|
|
2nip -> object -> contentView window unfocus-world
|
|
|
|
]
|
2007-11-24 15:41:27 -05:00
|
|
|
}
|
|
|
|
|
2008-09-12 23:01:07 -04:00
|
|
|
{ "windowShouldClose:" "char" { "id" "SEL" "id" }
|
2007-11-24 15:41:27 -05:00
|
|
|
[
|
2008-09-12 23:01:07 -04:00
|
|
|
3drop 1
|
2008-03-19 15:25:53 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
{ "windowWillClose:" "void" { "id" "SEL" "id" }
|
|
|
|
[
|
|
|
|
2nip -> object -> contentView window ungraft
|
2007-11-24 15:41:27 -05:00
|
|
|
]
|
2007-09-20 18:09:08 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
: install-window-delegate ( window -- )
|
|
|
|
FactorWindowDelegate install-delegate ;
|