Changeset 3047
- Timestamp:
- Sep 11, 2007, 7:42:57 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Transmission.xcodeproj/project.pbxproj
r3043 r3047 11 11 35B038130AC5B6EB00A10FDF /* ResumeNoWaitOn.png in Resources */ = {isa = PBXBuildFile; fileRef = 35B037F90AC5B53800A10FDF /* ResumeNoWaitOn.png */; }; 12 12 35B038140AC5B6EC00A10FDF /* ResumeNoWaitOff.png in Resources */ = {isa = PBXBuildFile; fileRef = 35B037FA0AC5B53800A10FDF /* ResumeNoWaitOff.png */; }; 13 35F372150C2D780600DAA8F2 /* InfoWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 35F372130C2D780600DAA8F2 /* InfoWindow.m */; };14 13 35F373030C2DA89000DAA8F2 /* FilePriorityCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 35F373010C2DA88F00DAA8F2 /* FilePriorityCell.m */; }; 15 14 4394AC670C74FB6000F367E8 /* ptrarray.c in Sources */ = {isa = PBXBuildFile; fileRef = 4394AC640C74FB6000F367E8 /* ptrarray.c */; }; … … 296 295 35B037F90AC5B53800A10FDF /* ResumeNoWaitOn.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ResumeNoWaitOn.png; path = macosx/Images/ResumeNoWaitOn.png; sourceTree = "<group>"; }; 297 296 35B037FA0AC5B53800A10FDF /* ResumeNoWaitOff.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = ResumeNoWaitOff.png; path = macosx/Images/ResumeNoWaitOff.png; sourceTree = "<group>"; }; 298 35F372120C2D780500DAA8F2 /* InfoWindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = InfoWindow.h; path = macosx/InfoWindow.h; sourceTree = "<group>"; };299 35F372130C2D780600DAA8F2 /* InfoWindow.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = InfoWindow.m; path = macosx/InfoWindow.m; sourceTree = "<group>"; };300 297 35F373000C2DA88F00DAA8F2 /* FilePriorityCell.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = FilePriorityCell.h; path = macosx/FilePriorityCell.h; sourceTree = "<group>"; }; 301 298 35F373010C2DA88F00DAA8F2 /* FilePriorityCell.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = FilePriorityCell.m; path = macosx/FilePriorityCell.m; sourceTree = "<group>"; }; … … 1018 1015 A200B8390A2263BA007BBB1E /* InfoWindowController.h */, 1019 1016 A200B83A0A2263BA007BBB1E /* InfoWindowController.m */, 1020 35F372120C2D780500DAA8F2 /* InfoWindow.h */,1021 35F372130C2D780600DAA8F2 /* InfoWindow.m */,1022 1017 A2AF1C360A3D0F6200F1575D /* FileOutlineView.h */, 1023 1018 A2AF1C370A3D0F6200F1575D /* FileOutlineView.m */, … … 1470 1465 A215760B0C0D449A0057A26A /* NSBezierPathAdditions.m in Sources */, 1471 1466 A2DF37070C220D03006523C1 /* CreatorWindowController.m in Sources */, 1472 35F372150C2D780600DAA8F2 /* InfoWindow.m in Sources */,1473 1467 35F373030C2DA89000DAA8F2 /* FilePriorityCell.m in Sources */, 1474 1468 A2085DDC0C53BC74000BC3B7 /* AboutWindowController.m in Sources */, -
trunk/macosx/English.lproj/InfoWindow.nib/classes.nib
r2448 r3047 3 3 {CLASS = FileOutlineView; LANGUAGE = ObjC; SUPERCLASS = NSOutlineView; }, 4 4 {CLASS = FirstResponder; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, 5 {CLASS = InfoWindow; LANGUAGE = ObjC; SUPERCLASS = NSPanel; },6 5 { 7 6 ACTIONS = { -
trunk/macosx/InfoWindowController.h
r2812 r3047 77 77 - (void) setPreviousTab; 78 78 79 - (void) setFileOutlineHoverRowForEvent: (NSEvent *) event;80 81 79 - (void) setPiecesView: (id) sender; 82 80 - (void) setPiecesViewForAvailable: (BOOL) available; -
trunk/macosx/InfoWindowController.m
r3046 r3047 83 83 [window setFrameUsingName: @"InspectorWindowFrame"]; 84 84 85 [window setBecomesKeyOnlyIfNeeded: YES]; 86 [window setAcceptsMouseMovedEvents: YES]; 87 85 88 //select tab 86 89 NSString * identifier = [[NSUserDefaults standardUserDefaults] stringForKey: @"InspectorSelected"]; … … 994 997 } 995 998 996 - (void) setFileOutlineHoverRowForEvent: (NSEvent *) event999 - (void) mouseMoved: (NSEvent *) event 997 1000 { 998 1001 [fFileOutline setHoverRowForEvent: [[[fTabView selectedTabViewItem] identifier] isEqualToString: TAB_FILES_IDENT] 999 1002 ? event : nil]; 1000 1003 } 1001 1002 1004 - (NSArray *) peerSortDescriptors 1003 1005 {
Note: See TracChangeset
for help on using the changeset viewer.