[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-users] In place right click menus



Stefan, thanks for the code! I was wondering if there was a way of opening a menu that is native to the default GUI kit. Something like this would be a second resort but too bad removing crashes SC.

However, there is a simple workaround that seems to work fine, but I don't really know if that is safe. Forking a different thread for removal with a little bit of a wait time works without crashes:

fork {  0.01.wait; contextMenu.remove; };

Since I don't really know what the problem is with the intuitive approach, can't say if this is a safe way of doing this.

Batuhan

On Jun 15, 2009, at 6:10 PM, Scott Wilson wrote:

I raised this issue on the dev list awhile back. The problem has to do with the way SC.app tracks mouse events. Generally you can't safely remove a view from one of its own action functions. Unfortunately there is not a good solution for this at the moment.

As a workaround I'd recommend showing/hiding the context view instead.

A proper contextual menu implementation would be a nice idea IAC.

S.

On 15 Jun 2009, at 15:56, Stefan Nussbaumer (SC list) wrote:

Batuhan Bozkurt schrieb:
Hi all,

Is there a way of making right click menus that pop up at the place of click? For example, right clicking on a ListView item to open a contextual menu etc.

interests me as well. I just tried the following approach:


(
var contextMenu;
w = Window.new.front;
v = ListView(w,Rect(10,10,120,200));
v.items_([ "item 1", "item 2", "item 3", "item 4", "item 5"]);
v.action_({ arg q; [ q.value, v.items[ q.value ] ].postln });
v.mouseDownAction_({ |view, x, y, mod, mouseBut, cCount|
 [view, x, y, mod, mouseBut, cCount].postln;
 if(mouseBut == 1, {
     contextMenu = ListView(w, Rect(x, y, 100, 100))
     .background_(Color.white)
     .items_([
         "yes",
         "no",
         "maybe"
     ])
     .mouseDownAction_({ |cm, x, y, mod, mBut, cCount|
         [cm.value, cm.items[cm.value]].postln; // posts the item that has been selected _before_ the click ...
//            contextMenu.remove; // crashes the app!
//            cm.rmove; // crashes the app too!
     });
 });
})
)

I failed in removing the context-menu after clicking an item resp. the application crashes! Guess, I'm doing it wrong, but what?

thanks, Stefan


Date/Time:      2009-06-15 16:49:12.536 +0200
OS Version:     10.4.11 (Build 8S165)
Report Version: 4

Command: SuperCollider
Path:    /Applications/SuperCollider3/build/SuperCollider.app/Contents/MacOS/SuperCollider
Parent:  WindowServer [62]

Version: ??? (-Unofficial Build-)

PID:    907
Thread: 0

Exception:  EXC_BAD_ACCESS (0x0001)
Codes:      KERN_PROTECTION_FAILURE (0x0002) at 0x00000000

Thread 0 Crashed:
0   <<00000000>>     0x00000000 0 + 0
1   com.apple.AppKit                   0x938204e0 -[NSWindow sendEvent:] + 4616
2   com.apple.AppKit                   0x937c9524 -[NSApplication sendEvent:] + 4172
3   com.apple.AppKit                   0x937c0960 -[NSApplication run] + 508
4   com.apple.AppKit                   0x938b1458 NSApplicationMain + 452
5   net.sourceforge.supercollider      0x00002d6c _start + 760
6   net.sourceforge.supercollider      0x00002a70 start + 48

Thread 1:
0   libSystem.B.dylib                  0x9000af48 mach_msg_trap + 8
1   libSystem.B.dylib                  0x9000ae9c mach_msg + 60
2   com.unsanity.ape                   0xc0001b54 __ape_agent + 296
3   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 2:
0   libSystem.B.dylib                  0x90023860 recvfrom + 12
1   net.sourceforge.supercollider      0x000dc2f4 SC_UdpInPort::Run() + 88
2   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 3:
0   libSystem.B.dylib                  0x90040df8 mach_wait_until + 8
1   libSystem.B.dylib                  0x90040bc4 nanosleep + 388
2   libSystem.B.dylib                  0x900409f0 sleep + 144
3   net.sourceforge.supercollider      0x0007d6b4 resyncThread(void*) + 60
4   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 4:
0   libSystem.B.dylib                  0x9002bfc8 semaphore_wait_signal_trap + 8
1   libSystem.B.dylib                  0x90030aac pthread_cond_wait + 480
2   net.sourceforge.supercollider      0x0007f150 TempoClock::Run() + 60
3   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 5:
0   libSystem.B.dylib                  0x9002bfc8 semaphore_wait_signal_trap + 8
1   libSystem.B.dylib                  0x90030aac pthread_cond_wait + 480
2   net.sourceforge.supercollider      0x0007ef14 schedRunFunc(void*) + 92
3   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 6:
0   libSystem.B.dylib                  0x9001f48c select + 12
1   com.apple.CoreFoundation           0x907f1240 __CFSocketManager + 472
2   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 7:
0   libSystem.B.dylib                  0x9002ec8c kevent + 12
1   com.apple.DesktopServices          0x92b0ae50 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
2   ...ple.CoreServices.CarbonCore     0x90bc4734 PrivateMPEntryPoint + 76
3   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 8:
0   libSystem.B.dylib                  0x9002bfc8 semaphore_wait_signal_trap + 8
1   libSystem.B.dylib                  0x90030aac pthread_cond_wait + 480
2   ...ple.CoreServices.CarbonCore     0x90bc4924 MPWaitOnQueue + 224
3   com.apple.DesktopServices          0x92b0b4cc TNodeSyncTask::SyncTaskProc(void*) + 116
4   ...ple.CoreServices.CarbonCore     0x90bc4734 PrivateMPEntryPoint + 76
5   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 9:
0   libSystem.B.dylib                  0x9002bfc8 semaphore_wait_signal_trap + 8
1   libSystem.B.dylib                  0x90030aac pthread_cond_wait + 480
2   com.apple.Foundation               0x92bfe644 -[NSConditionLock lockWhenCondition:] + 68
3   com.apple.AppKit                   0x93861358 -[NSUIHeartBeat _heartBeatThread:] + 324
4   com.apple.Foundation               0x92bf74d8 forkThreadForFunction + 108
5   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 10:
0   libSystem.B.dylib                  0x9000af48 mach_msg_trap + 8
1   libSystem.B.dylib                  0x9000ae9c mach_msg + 60
2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
4   com.apple.Foundation               0x92c1fb7c +[NSURLCache _diskCacheSyncLoop:] + 152
5   com.apple.Foundation               0x92bf74d8 forkThreadForFunction + 108
6   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 11:
0   libSystem.B.dylib                  0x9000af48 mach_msg_trap + 8
1   libSystem.B.dylib                  0x9000ae9c mach_msg + 60
2   com.apple.CoreFoundation           0x907de9ac __CFRunLoopRun + 832
3   com.apple.CoreFoundation           0x907de2b0 CFRunLoopRunSpecific + 268
4   com.apple.Foundation               0x92c1ea3c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
5   com.apple.Foundation               0x92bf74d8 forkThreadForFunction + 108
6   libSystem.B.dylib                  0x9002b908 _pthread_body + 96

Thread 0 crashed with PPC Thread State 64:
srr0: 0x0000000000000000 srr1: 0x000000004200f030                        vrsave: 0x0000000000000000
 cr: 0x22002244          xer: 0x0000000020000004   lr: 0x0000000000027da8  ctr: 0x0000000000000000
 r0: 0x0000000000000000   r1: 0x00000000bfffed60   r2: 0x000000000064575b   r3: 0x0000000007630ba0
 r4: 0x0000000042960000   r5: 0x0000000042d40000   r6: 0x0000000000000100   r7: 0x00000000065b3be0
 r8: 0x00000000001d7404   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x00000000001c8618
r12: 0x0000000000000000  r13: 0x00000000a37ef2d8  r14: 0x0000000000000100  r15: 0x0000000000000000
r16: 0x00000000a37ef2d8  r17: 0x00000000a37ff2d8  r18: 0x00000000a37ef2d8  r19: 0x00000000a37ef2d8
r20: 0x0000000000240000  r21: 0x0000000000240000  r22: 0x0000000000240000  r23: 0x0000000000240000
r24: 0x00000000a37ef2d8  r25: 0x00000000065b3be0  r26: 0x0000000000000100  r27: 0x0000000007630ba0
r28: 0x00000000065b3be0  r29: 0x0000000090a8d9c4  r30: 0x00000000065ad3c0  r31: 0x0000000042960000

Binary Images Description:
 0x1000 -   0x1c0fff net.sourceforge.supercollider ??? (-Unofficial Build-)    /Applications/SuperCollider3/build/SuperCollider.app/Contents/MacOS/SuperCollider
0x574000 -   0x576fff net.culater.SIMBL 0.8 (8)    /Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
0x1030000 -  0x1037fff com.unsanity.smartcrashreports Smart Crash Reports version 1.2.1 (1.2.1)    /Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
0x103d000 -  0x103dfff com.growl.GrowlSafariLoader 1.0    /Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/MacOS/GrowlSafariLoader
0x8fe00000 - 0x8fe52fff dyld 46.16    /usr/lib/dyld
0x90000000 - 0x901bcfff libSystem.B.dylib     /usr/lib/libSystem.B.dylib
0x90214000 - 0x90219fff libmathCommon.A.dylib     /usr/lib/system/libmathCommon.A.dylib
0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90293000 - 0x90344fff ATS     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.84 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35)    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???)    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x908e0000 - 0x909e2fff libicucore.A.dylib     /usr/lib/libicucore.A.dylib
0x90a3c000 - 0x90ac0fff libobjc.A.dylib     /usr/lib/libobjc.A.dylib
0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4.1 (???)    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90b70000 - 0x90b82fff libauto.dylib     /usr/lib/libauto.dylib
0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36)    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91111000 - 0x9111ffff libz.1.dylib     /usr/lib/libz.1.dylib
0x91122000 - 0x912ddfff com.apple.security 4.6 (29770)    /System/Library/Frameworks/Security.framework/Versions/A/Security
0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x913ec000 - 0x913f4fff libbsm.dylib     /usr/lib/libbsm.dylib
0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91433000 - 0x9143efff libgcc_s.1.dylib     /usr/lib/libgcc_s.1.dylib
0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x914fd000 - 0x91535fff com.apple.AE 312.2    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91550000 - 0x91622fff com.apple.ColorSync 4.4.11    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???)    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x91906000 - 0x9192bfff com.apple.FindByContent 1.5    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.8    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib     /usr/lib/libcrypto.0.9.7.dylib
0x91b30000 - 0x91b45fff libcups.2.dylib     /usr/lib/libcups.2.dylib
0x91b4a000 - 0x91b68fff libJPEG.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91b6e000 - 0x91c25fff libJP2.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91c74000 - 0x91c78fff libGIF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91c7a000 - 0x91ce4fff libRaw.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91ce9000 - 0x91d03fff libPng.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91d08000 - 0x91d0bfff libRadiance.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91d0d000 - 0x91dfbfff libxml2.2.dylib     /usr/lib/libxml2.2.dylib
0x91e1a000 - 0x91e58fff libTIFF.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91e5f000 - 0x91e5ffff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91e61000 - 0x91f46fff com.apple.vImage 2.4    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91f4e000 - 0x91f6dfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2)    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91fd9000 - 0x92047fff libvMisc.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x92052000 - 0x920e7fff libvDSP.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x92101000 - 0x92689fff libBLAS.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x926bc000 - 0x929e7fff libLAPACK.dylib     /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x92a17000 - 0x92b05fff libiconv.2.dylib     /usr/lib/libiconv.2.dylib
0x92b08000 - 0x92b90fff com.apple.DesktopServices 1.3.7    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x92bd1000 - 0x92e04fff com.apple.Foundation 6.4.12 (567.42)    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92f37000 - 0x92f55fff libGL.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92f60000 - 0x92fbafff libGLU.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92fd8000 - 0x92fd8fff com.apple.Carbon 10.4 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x92fda000 - 0x92feefff com.apple.ImageCapture 3.0    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x93006000 - 0x93016fff com.apple.speech.recognition.framework 3.4    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x93022000 - 0x93037fff com.apple.securityhi 2.0 (203)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x93049000 - 0x930d0fff com.apple.ink.framework 101.2 (69)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x930e4000 - 0x930effff com.apple.help 1.0.3 (32)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x930f9000 - 0x93127fff com.apple.openscripting 1.2.7 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x93141000 - 0x93151fff com.apple.print.framework.Print 5.0 (190.1)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x9315d000 - 0x931c3fff com.apple.htmlrendering 1.1.2    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x931f4000 - 0x93243fff com.apple.NavigationServices 3.4.4 (3.4.3)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x93271000 - 0x9328efff com.apple.audio.SoundManager 3.9    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x932a0000 - 0x932adfff com.apple.CommonPanels 1.2.2 (73)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x932b6000 - 0x935c4fff com.apple.HIToolbox 1.4.10 (???)    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x93714000 - 0x93720fff com.apple.opengl 1.4.7    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x937ba000 - 0x937bafff com.apple.Cocoa 6.4 (???)    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x937bc000 - 0x93deffff com.apple.AppKit 6.4.10 (824.48)    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9417c000 - 0x941eefff com.apple.CoreData 91 (92.1)    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x94227000 - 0x942ecfff com.apple.audio.toolbox.AudioToolbox 1.4.7    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9433f000 - 0x9433ffff com.apple.audio.units.AudioUnit 1.4    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x94341000 - 0x94501fff com.apple.QuartzCore 1.4.12    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9454b000 - 0x94588fff libsqlite3.0.dylib     /usr/lib/libsqlite3.0.dylib
0x94590000 - 0x945e0fff libGLImage.dylib     /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x945e9000 - 0x94602fff com.apple.CoreVideo 1.4.2    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9464a000 - 0x9468ffff com.apple.bom 8.5.1 (86.3)    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x947bb000 - 0x947cafff libCGATS.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x947d2000 - 0x947dffff libCSync.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x94825000 - 0x9483efff libRIP.A.dylib     /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x94845000 - 0x94b78fff com.apple.QuickTime 7.6.2 (1327)    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x94c60000 - 0x94cd1fff libstdc++.6.dylib     /usr/lib/libstdc++.6.dylib
0x9540b000 - 0x9547afff com.apple.Bluetooth 1.9.5 (1.9.5f4)    /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x95c4b000 - 0x95d09fff com.apple.WebKit 4525.28 (4525.28.3)    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x95d77000 - 0x95e60fff com.apple._javascript_Core 4525.26 (4525.26.2)    /System/Library/Frameworks/_javascript_Core.framework/Versions/A/_javascript_Core
0x95e9c000 - 0x9656ffff com.apple.WebCore 4525.28 (4525.28.4)    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x96b4e000 - 0x96bfefff com.apple.QTKit 7.6.2 (1327)    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x96d31000 - 0x96d63fff com.apple.PDFKit 1.0.4    /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x978b1000 - 0x978f0fff com.apple.audio.midi.CoreMIDI 1.5 (41)    /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
0x98f0a000 - 0x98fdbfff com.apple.QuartzComposer 1.2.6 (32.25)    /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x99058000 - 0x99058fff com.apple.quartzframework 1.0    /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x9d61b000 - 0x9d63cfff libmx.A.dylib     /usr/lib/libmx.A.dylib
0x9ff61000 - 0x9ffa3fff com.apple.CoreMediaIOServicesPrivate 20.0    /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions/A/CoreMediaIOServicesPrivate
0x9ffc8000 - 0x9fff2fff com.apple.CoreMediaPrivate 15.0    /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMediaPrivate
0xc0000000 - 0xc000ffff com.unsanity.ape 2.0.2    /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhancer

Model: PowerBook6,8, BootROM 4.9.0f0, 1 processors, PowerPC G4  (1.5), 1.5 GHz, 1.25 GB
Graphics: GeForce FX Go5200, GeForce FX Go5200, AGP, 64 MB
Memory Module: DIMM0/BUILT-IN, 256 MB, built-in, built-in
Memory Module: DIMM1/J31, 1 GB, DDR SDRAM, PC2700U-25330
AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
Modem: Jump, V.92, Version 1.0
Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
Network Service: project_garnison, PPP (PPPSerial), modem
Network Service: Ethernet (integriert), Ethernet, en0
Network Service: VPN (PPTP), PPP (PPTP)
Parallel ATA Device: MATSHITACD-RW  CW-8124
Parallel ATA Device: TOSHIBA MK8026GAX, 74.53 GB
USB Device: USB2.0 Hub, Up to 480 Mb/sec, 500 mA
USB Device: Macally Optical iceJr, Macally Peripherals, Up to 1.5 Mb/sec, 500 mA
USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
USB Device: Apple Internal Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
USB Device: MT4, Emagic GmbH, Up to 12 Mb/sec, 500 mA
FireWire Device: 0x102802, 0x1F2, Up to 400 Mb/sec
FireWire Device: LaCie DVDRW FireWire+, LaCie Group SA, Up to 400 Mb/sec
FireWire Device: 1394(I)2.5"HDD, MacPower, Up to 400 Mb/sec

_______________________________________________
sc-users mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: https://listarc.bham.ac.uk/marchives/sc-users/
search: https://listarc.bham.ac.uk/lists/sc-users/search/


_______________________________________________
sc-users mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: https://listarc.bham.ac.uk/marchives/sc-users/
search: https://listarc.bham.ac.uk/lists/sc-users/search/