Changeset 600 for trunk/Cocoa/Pester
- Timestamp:
- 12/21/09 22:12:22 (15 years ago)
- Location:
- trunk/Cocoa/Pester/Source
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cocoa/Pester/Source/NJRFSObjectSelector.m
r587 r600 6 6 static NSImage *PopupTriangleImage = nil; 7 7 static NSSize PopupTriangleSize; 8 9 @interface NJRFSObjectSelector (NSOpenPanelRuntime) 10 - (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo; 11 @end 8 12 9 13 @implementation NJRFSObjectSelector -
trunk/Cocoa/Pester/Source/NJRHotKeyField.m
r572 r600 20 20 static NSParagraphStyle *leftAlignStyle = nil, *centerAlignStyle = nil; 21 21 static NSDictionary *statusAttributes = nil; 22 23 @interface NJRHotKeyField (Private) 24 - (void)clearStatus; 25 @end 22 26 23 27 @implementation NJRHotKeyField -
trunk/Cocoa/Pester/Source/NJRQTMediaPopUpButton.m
r591 r600 8 8 9 9 #import "NJRQTMediaPopUpButton.h" 10 #import "NJRFSObjectSelector.h" 10 11 #import "NJRSoundManager.h" 11 12 #import "QTMovie-NJRExtensions.h" … … 23 24 - (BOOL)_validateWithPreview:(BOOL)doPreview; 24 25 - (void)_startSoundPreview; 26 - (void)_soundPreviewDidEnd:(NSNotification *)notification; 25 27 - (void)_resetPreview; 26 28 - (void)_resetOutputVolume; 29 - (void)_aliasSelected:(NSMenuItem *)sender; 30 - (void)_beepSelected:(NSMenuItem *)sender; 31 - (void)_systemSoundSelected:(NSMenuItem *)sender; 32 @end 33 34 @interface NJRQTMediaPopUpButton (NSOpenPanelRuntime) 35 - (void)openPanelDidEnd:(NSOpenPanel *)sheet returnCode:(int)returnCode contextInfo:(void *)contextInfo; 27 36 @end 28 37 -
trunk/Cocoa/Pester/Source/NJRReadMeController.m
r355 r600 8 8 9 9 #import "NJRReadMeController.h" 10 #import "NJRSplitView.h" 10 11 #import "NSString-NJRExtensions.h" 11 12 … … 75 76 - (void)_saveSplit; 76 77 - (void)_restoreSplit; 78 - (void)readRTF:(NSString *)aPath; 77 79 @end 78 80 -
trunk/Cocoa/Pester/Source/NJRVoicePopUpButton.m
r364 r600 8 8 9 9 #import "NJRVoicePopUpButton.h" 10 11 @interface NJRVoicePopUpButton (Private) 12 - (void)_previewVoice; 13 @end 10 14 11 15 @implementation NJRVoicePopUpButton -
trunk/Cocoa/Pester/Source/OACalendarView.m
r125 r600 48 48 @end 49 49 50 @interface OACalendarView (PrivateActions) 51 52 - (IBAction)previous:(id)sender; 53 - (IBAction)next:(id)sender; 54 55 @end 50 56 51 57 @implementation OACalendarView -
trunk/Cocoa/Pester/Source/PSAlarms.h
r113 r600 41 41 42 42 @end 43 44 @interface NSObject (PSAlarmsNotifications) 45 - (void)nextAlarmDidChange:(NSNotification *)notification; 46 @end -
trunk/Cocoa/Pester/Source/PSApplication.m
r587 r600 19 19 #import "NJRHotKey.h" 20 20 #import "NSWindowCollectionBehavior.h" 21 22 @interface PSApplication (Private) 23 - (void)_updateDockTile:(PSTimer *)timer; 24 @end 21 25 22 26 @implementation PSApplication -
trunk/Cocoa/Pester/Source/PSDockBounceAlert.m
r516 r600 15 15 static PSDockBounceAlert *PSDockBounceAlertShared; 16 16 static NMRec nmr; 17 18 @interface PSDockBounceAlert (Private) 19 - (void)_stopBouncing; 20 @end 17 21 18 22 @implementation PSDockBounceAlert -
trunk/Cocoa/Pester/Source/PSSnoozeUntilController.m
r366 r600 12 12 #import "PSTimeDateEditor.h" 13 13 #import "NSCalendarDate-NJRExtensions.h" 14 15 @interface PSSnoozeUntilController (PSSnoozeUntilControllerRuntime) 16 - (void)sheetDidEnd:(NSWindow *)sheet returnCode:(int)returnCode contextInfo:(PSAlarmNotifierController *)aController; 17 @end 14 18 15 19 @implementation PSSnoozeUntilController -
trunk/Cocoa/Pester/Source/PSTimer.m
r587 r600 17 17 @interface PSTimer (Private) 18 18 + (void)_schedule; 19 - (void)_timerExpired; 19 20 @end 20 21
Note:
See TracChangeset
for help on using the changeset viewer.