diff options
author | sr55 <[email protected]> | 2013-03-18 19:21:23 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-03-18 19:21:23 +0000 |
commit | b0397998772fce122f38b96c81c0bd199d7aced9 (patch) | |
tree | 219d3f8a6950ca58245243c1a6dc86592f008a22 | |
parent | 43e517866e21c7ac61b4981c16307dd141fc152d (diff) |
Update the in-app icons to the new graphics
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5342 b64f7644-9d1e-0410-96f1-a4d463321fa5
46 files changed, 131 insertions, 83 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 8635ea14f..0cc1ebb6b 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1330,7 +1330,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Toggle Presets"]; [item setPaletteLabel: @"Toggler Presets"]; [item setToolTip: @"Open/Close Preset Drawer"]; - [item setImage: [NSImage imageNamed: @"Drawer"]]; + [item setImage: [NSImage imageNamed: @"presets"]]; [item setTarget: self]; [item setAction: @selector(toggleDrawer:)]; [item setAutovalidates: NO]; @@ -1340,7 +1340,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Start"]; [item setPaletteLabel: @"Start Encoding"]; [item setToolTip: @"Start Encoding"]; - [item setImage: [NSImage imageNamed: @"Play"]]; + [item setImage: [NSImage imageNamed: @"encode"]]; [item setTarget: self]; [item setAction: @selector(Rip:)]; } @@ -1349,7 +1349,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Show Queue"]; [item setPaletteLabel: @"Show Queue"]; [item setToolTip: @"Show Queue"]; - [item setImage: [NSImage imageNamed: @"Queue"]]; + [item setImage: [NSImage imageNamed: @"showqueue"]]; [item setTarget: self]; [item setAction: @selector(showQueueWindow:)]; [item setAutovalidates: NO]; @@ -1359,7 +1359,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Add to Queue"]; [item setPaletteLabel: @"Add to Queue"]; [item setToolTip: @"Add to Queue"]; - [item setImage: [NSImage imageNamed: @"AddToQueue"]]; + [item setImage: [NSImage imageNamed: @"addqueue"]]; [item setTarget: self]; [item setAction: @selector(addToQueue:)]; } @@ -1368,7 +1368,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Pause"]; [item setPaletteLabel: @"Pause Encoding"]; [item setToolTip: @"Pause Encoding"]; - [item setImage: [NSImage imageNamed: @"Pause"]]; + [item setImage: [NSImage imageNamed: @"pauseencode"]]; [item setTarget: self]; [item setAction: @selector(Pause:)]; } @@ -1377,7 +1377,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Picture Settings"]; [item setPaletteLabel: @"Show Picture Settings"]; [item setToolTip: @"Show Picture Settings"]; - [item setImage: [NSImage imageNamed: @"pref-picture"]]; + [item setImage: [NSImage imageNamed: @"picturesettings"]]; [item setTarget: self]; [item setAction: @selector(showPicturePanel:)]; } @@ -1387,7 +1387,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setPaletteLabel: @"Show Preview"]; [item setToolTip: @"Show Preview"]; //[item setImage: [NSImage imageNamed: @"pref-picture"]]; - [item setImage: [NSImage imageNamed: @"Brushed_Window"]]; + [item setImage: [NSImage imageNamed: @"preview"]]; [item setTarget: self]; [item setAction: @selector(showPreviewWindow:)]; } @@ -1396,7 +1396,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Activity Window"]; [item setPaletteLabel: @"Show Activity Window"]; [item setToolTip: @"Show Activity Window"]; - [item setImage: [NSImage imageNamed: @"ActivityWindow"]]; + [item setImage: [NSImage imageNamed: @"activity"]]; [item setTarget: self]; [item setAction: @selector(showDebugOutputPanel:)]; [item setAutovalidates: NO]; @@ -1406,7 +1406,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It [item setLabel: @"Source"]; [item setPaletteLabel: @"Source"]; [item setToolTip: @"Choose Video Source"]; - [item setImage: [NSImage imageNamed: @"Source"]]; + [item setImage: [NSImage imageNamed: @"source"]]; [item setTarget: self]; [item setAction: @selector(browseSources:)]; } @@ -1447,7 +1447,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It if ([ident isEqualToString: ChooseSourceIdentifier]) { - [toolbarItem setImage: [NSImage imageNamed: @"Stop"]]; + [toolbarItem setImage: [NSImage imageNamed: @"stopencode"]]; [toolbarItem setLabel: @"Cancel Scan"]; [toolbarItem setPaletteLabel: @"Cancel Scanning"]; [toolbarItem setToolTip: @"Cancel Scanning Source"]; @@ -1461,7 +1461,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It { if ([ident isEqualToString: ChooseSourceIdentifier]) { - [toolbarItem setImage: [NSImage imageNamed: @"Source"]]; + [toolbarItem setImage: [NSImage imageNamed: @"source"]]; [toolbarItem setLabel: @"Source"]; [toolbarItem setPaletteLabel: @"Source"]; [toolbarItem setToolTip: @"Choose Video Source"]; @@ -1475,7 +1475,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It { if ([ident isEqualToString: StartEncodingIdentifier]) { - [toolbarItem setImage: [NSImage imageNamed: @"Stop"]]; + [toolbarItem setImage: [NSImage imageNamed: @"stopencode"]]; [toolbarItem setLabel: @"Stop"]; [toolbarItem setPaletteLabel: @"Stop"]; [toolbarItem setToolTip: @"Stop Encoding"]; @@ -1483,7 +1483,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It } if ([ident isEqualToString: PauseEncodingIdentifier]) { - [toolbarItem setImage: [NSImage imageNamed: @"Pause"]]; + [toolbarItem setImage: [NSImage imageNamed: @"pauseencode"]]; [toolbarItem setLabel: @"Pause"]; [toolbarItem setPaletteLabel: @"Pause Encoding"]; [toolbarItem setToolTip: @"Pause Encoding"]; @@ -1503,7 +1503,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It { if ([ident isEqualToString: PauseEncodingIdentifier]) { - [toolbarItem setImage: [NSImage imageNamed: @"Play"]]; + [toolbarItem setImage: [NSImage imageNamed: @"encode"]]; [toolbarItem setLabel: @"Resume"]; [toolbarItem setPaletteLabel: @"Resume Encoding"]; [toolbarItem setToolTip: @"Resume Encoding"]; @@ -1524,7 +1524,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It { if ([ident isEqualToString: StartEncodingIdentifier]) { - [toolbarItem setImage: [NSImage imageNamed: @"Play"]]; + [toolbarItem setImage: [NSImage imageNamed: @"encode"]]; if (hb_count(fHandle) > 0) [toolbarItem setLabel: @"Start Queue"]; else diff --git a/macosx/HBPreferencesController.m b/macosx/HBPreferencesController.m index 1be9ccf76..4e5baccd1 100644 --- a/macosx/HBPreferencesController.m +++ b/macosx/HBPreferencesController.m @@ -111,25 +111,25 @@ { return [self toolbarItemWithIdentifier:ident label:NSLocalizedString(@"General", @"Preferences General Toolbar Item") - image:[NSImage imageNamed:NSImageNamePreferencesGeneral]]; + image:[NSImage imageNamed:@"settings"]]; } else if ( [ident isEqualToString:TOOLBAR_PICTURE] ) { return [self toolbarItemWithIdentifier:ident label:NSLocalizedString(@"Picture", @"Preferences Picture Toolbar Item") - image:[NSImage imageNamed:@"pref-picture"]]; + image:[NSImage imageNamed:@"picturesettings"]]; } else if ( [ident isEqualToString:TOOLBAR_AUDIO] ) { return [self toolbarItemWithIdentifier:ident label:NSLocalizedString(@"Audio", @"Preferences Audio Toolbar Item") - image:[NSImage imageNamed:@"pref-audio"]]; + image:[NSImage imageNamed:@"audio"]]; } else if ( [ident isEqualToString:TOOLBAR_ADVANCED] ) { return [self toolbarItemWithIdentifier:ident label:NSLocalizedString(@"Advanced", @"Preferences Advanced Toolbar Item") - image:[NSImage imageNamed:NSImageNameAdvanced]]; + image:[NSImage imageNamed:@"advanced"]]; } return nil; diff --git a/macosx/HBQueueController.mm b/macosx/HBQueueController.mm index 2a961be6d..5a0dc2fe8 100644 --- a/macosx/HBQueueController.mm +++ b/macosx/HBQueueController.mm @@ -340,7 +340,7 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe // Set up a reasonable tooltip, and image [toolbarItem setToolTip: @"Start Encoding"]; - [toolbarItem setImage: [NSImage imageNamed: @"Play"]]; + [toolbarItem setImage: [NSImage imageNamed: @"encode"]]; // Tell the item what message to send when it is clicked [toolbarItem setTarget: self]; @@ -357,7 +357,7 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe // Set up a reasonable tooltip, and image [toolbarItem setToolTip: @"Pause Encoding"]; - [toolbarItem setImage: [NSImage imageNamed: @"Pause"]]; + [toolbarItem setImage: [NSImage imageNamed: @"pauseencode"]]; // Tell the item what message to send when it is clicked [toolbarItem setTarget: self]; @@ -420,7 +420,7 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe if ((s.state == HB_STATE_PAUSED) || (s.state == HB_STATE_WORKING) || (s.state == HB_STATE_MUXING)) { enable = YES; - [toolbarItem setImage:[NSImage imageNamed: @"Stop"]]; + [toolbarItem setImage:[NSImage imageNamed: @"stopencode"]]; [toolbarItem setLabel: @"Stop"]; [toolbarItem setToolTip: @"Stop Encoding"]; } @@ -428,7 +428,7 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe else if (fPendingCount > 0) { enable = YES; - [toolbarItem setImage:[NSImage imageNamed: @"Play"]]; + [toolbarItem setImage:[NSImage imageNamed: @"encode"]]; [toolbarItem setLabel: @"Start"]; [toolbarItem setToolTip: @"Start Encoding"]; } @@ -436,7 +436,7 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe else { enable = NO; - [toolbarItem setImage:[NSImage imageNamed: @"Play"]]; + [toolbarItem setImage:[NSImage imageNamed: @"encode"]]; [toolbarItem setLabel: @"Start"]; [toolbarItem setToolTip: @"Start Encoding"]; } @@ -447,7 +447,7 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe if (s.state == HB_STATE_PAUSED) { enable = YES; - [toolbarItem setImage:[NSImage imageNamed: @"Play"]]; + [toolbarItem setImage:[NSImage imageNamed: @"encode"]]; [toolbarItem setLabel: @"Resume"]; [toolbarItem setToolTip: @"Resume Encoding"]; } @@ -455,14 +455,14 @@ static NSString* HBQueuePauseResumeToolbarIdentifier = @"HBQueuePauseRe else if ((s.state == HB_STATE_WORKING) || (s.state == HB_STATE_MUXING)) { enable = YES; - [toolbarItem setImage:[NSImage imageNamed: @"Pause"]]; + [toolbarItem setImage:[NSImage imageNamed: @"pauseencode"]]; [toolbarItem setLabel: @"Pause"]; [toolbarItem setToolTip: @"Pause Encoding"]; } else { enable = NO; - [toolbarItem setImage:[NSImage imageNamed: @"Pause"]]; + [toolbarItem setImage:[NSImage imageNamed: @"pauseencode"]]; [toolbarItem setLabel: @"Pause"]; [toolbarItem setToolTip: @"Pause Encoding"]; } diff --git a/macosx/HandBrake.xcodeproj/project.pbxproj b/macosx/HandBrake.xcodeproj/project.pbxproj index bb73b72cf..df3329743 100644 --- a/macosx/HandBrake.xcodeproj/project.pbxproj +++ b/macosx/HandBrake.xcodeproj/project.pbxproj @@ -43,14 +43,10 @@ 273F20C914ADC5150021BE6D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 273F202F14ADB9790021BE6D /* AudioToolbox.framework */; }; 273F20CB14ADC89A0021BE6D /* Growl.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 273F20BF14ADC1250021BE6D /* Growl.framework */; }; 273F20CC14ADC8A10021BE6D /* Sparkle.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 273F20C014ADC1250021BE6D /* Sparkle.framework */; }; - 273F214814ADCBF80021BE6D /* ActivityWindow.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F212114ADCBF70021BE6D /* ActivityWindow.tiff */; }; - 273F214914ADCBF80021BE6D /* AddToQueue.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F212214ADCBF70021BE6D /* AddToQueue.tiff */; }; - 273F214B14ADCBF80021BE6D /* Brushed_Window.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212414ADCBF70021BE6D /* Brushed_Window.png */; }; 273F214C14ADCBF80021BE6D /* Delete.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212514ADCBF70021BE6D /* Delete.png */; }; 273F214D14ADCBF80021BE6D /* DeleteHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212614ADCBF70021BE6D /* DeleteHighlight.png */; }; 273F214E14ADCBF80021BE6D /* DeleteHighlightPressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212714ADCBF70021BE6D /* DeleteHighlightPressed.png */; }; 273F214F14ADCBF80021BE6D /* DeletePressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212814ADCBF70021BE6D /* DeletePressed.png */; }; - 273F215014ADCBF80021BE6D /* Drawer.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F212914ADCBF80021BE6D /* Drawer.tiff */; }; 273F215114ADCBF80021BE6D /* EncodeCanceled.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212A14ADCBF80021BE6D /* EncodeCanceled.png */; }; 273F215214ADCBF80021BE6D /* EncodeComplete.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212B14ADCBF80021BE6D /* EncodeComplete.png */; }; 273F215314ADCBF80021BE6D /* EncodeWorking0.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212C14ADCBF80021BE6D /* EncodeWorking0.png */; }; @@ -59,23 +55,15 @@ 273F215614ADCBF80021BE6D /* EncodeWorking3.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F212F14ADCBF80021BE6D /* EncodeWorking3.png */; }; 273F215714ADCBF80021BE6D /* EncodeWorking4.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213014ADCBF80021BE6D /* EncodeWorking4.png */; }; 273F215814ADCBF80021BE6D /* EncodeWorking5.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213114ADCBF80021BE6D /* EncodeWorking5.png */; }; - 273F215A14ADCBF80021BE6D /* JobLarge.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213314ADCBF80021BE6D /* JobLarge.png */; }; 273F215B14ADCBF80021BE6D /* JobPassFirstSmall.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213414ADCBF80021BE6D /* JobPassFirstSmall.png */; }; 273F215D14ADCBF80021BE6D /* JobPassSecondSmall.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213614ADCBF80021BE6D /* JobPassSecondSmall.png */; }; 273F215F14ADCBF80021BE6D /* JobPassSubtitleSmall.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213814ADCBF80021BE6D /* JobPassSubtitleSmall.png */; }; 273F216014ADCBF80021BE6D /* JobPassUnknownSmall.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213914ADCBF80021BE6D /* JobPassUnknownSmall.png */; }; 273F216114ADCBF80021BE6D /* JobSmall.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F213A14ADCBF80021BE6D /* JobSmall.png */; }; - 273F216214ADCBF80021BE6D /* Pause.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F213B14ADCBF80021BE6D /* Pause.tiff */; }; - 273F216314ADCBF80021BE6D /* Play.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F213C14ADCBF80021BE6D /* Play.tiff */; }; - 273F216414ADCBF80021BE6D /* pref-audio.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F213D14ADCBF80021BE6D /* pref-audio.tiff */; }; - 273F216514ADCBF80021BE6D /* pref-picture.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F213E14ADCBF80021BE6D /* pref-picture.tiff */; }; - 273F216614ADCBF80021BE6D /* Queue.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F213F14ADCBF80021BE6D /* Queue.tiff */; }; 273F216714ADCBF80021BE6D /* Reveal.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214014ADCBF80021BE6D /* Reveal.png */; }; 273F216814ADCBF80021BE6D /* RevealHighlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214114ADCBF80021BE6D /* RevealHighlight.png */; }; 273F216914ADCBF80021BE6D /* RevealHighlightPressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214214ADCBF80021BE6D /* RevealHighlightPressed.png */; }; 273F216A14ADCBF80021BE6D /* RevealPressed.png in Resources */ = {isa = PBXBuildFile; fileRef = 273F214314ADCBF80021BE6D /* RevealPressed.png */; }; - 273F216B14ADCBF80021BE6D /* Source.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F214414ADCBF80021BE6D /* Source.tiff */; }; - 273F216C14ADCBF80021BE6D /* Stop.tiff in Resources */ = {isa = PBXBuildFile; fileRef = 273F214514ADCBF80021BE6D /* Stop.tiff */; }; 273F218A14ADDDA10021BE6D /* AdvancedView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F217A14ADDDA10021BE6D /* AdvancedView.xib */; }; 273F218B14ADDDA10021BE6D /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 273F217C14ADDDA10021BE6D /* InfoPlist.strings */; }; 273F218C14ADDDA10021BE6D /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 273F217E14ADDDA10021BE6D /* MainMenu.xib */; }; @@ -143,6 +131,32 @@ A9E1468116BC2AD800C307BC /* pause-p.pdf in Resources */ = {isa = PBXBuildFile; fileRef = A9E1467D16BC2AD800C307BC /* pause-p.pdf */; }; A9E1468216BC2AD800C307BC /* play-p.pdf in Resources */ = {isa = PBXBuildFile; fileRef = A9E1467E16BC2AD800C307BC /* play-p.pdf */; }; A9E1468316BC2AD800C307BC /* prev-p.pdf in Resources */ = {isa = PBXBuildFile; fileRef = A9E1467F16BC2AD800C307BC /* prev-p.pdf */; }; + D2BCB10916F5152C0084604C /* activity.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F616F515230084604C /* activity.png */; }; + D2BCB10A16F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F716F515230084604C /* [email protected] */; }; + D2BCB10B16F5152C0084604C /* addqueue.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F816F515240084604C /* addqueue.png */; }; + D2BCB10C16F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0F916F515240084604C /* [email protected] */; }; + D2BCB10D16F5152C0084604C /* advanced.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FA16F515250084604C /* advanced.png */; }; + D2BCB10E16F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FB16F515250084604C /* [email protected] */; }; + D2BCB10F16F5152C0084604C /* audio.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FC16F515260084604C /* audio.png */; }; + D2BCB11016F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FD16F515260084604C /* [email protected] */; }; + D2BCB11116F5152C0084604C /* encode.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FE16F515270084604C /* encode.png */; }; + D2BCB11216F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB0FF16F515270084604C /* [email protected] */; }; + D2BCB11316F5152C0084604C /* pauseencode.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10016F515280084604C /* pauseencode.png */; }; + D2BCB11416F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10116F515280084604C /* [email protected] */; }; + D2BCB11516F5152C0084604C /* picturesettings.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10216F515290084604C /* picturesettings.png */; }; + D2BCB11616F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10316F515290084604C /* [email protected] */; }; + D2BCB11716F5152C0084604C /* presets.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10416F5152A0084604C /* presets.png */; }; + D2BCB11816F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10516F5152A0084604C /* [email protected] */; }; + D2BCB11916F5152C0084604C /* preview.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10616F5152B0084604C /* preview.png */; }; + D2BCB11A16F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10716F5152B0084604C /* [email protected] */; }; + D2BCB11B16F5152C0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB10816F5152C0084604C /* [email protected] */; }; + D2BCB12316F5154E0084604C /* settings.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11C16F5154A0084604C /* settings.png */; }; + D2BCB12416F5154E0084604C /* showqueue.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11D16F5154B0084604C /* showqueue.png */; }; + D2BCB12516F5154E0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11E16F5154B0084604C /* [email protected] */; }; + D2BCB12616F5154E0084604C /* source.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB11F16F5154C0084604C /* source.png */; }; + D2BCB12716F5154E0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB12016F5154C0084604C /* [email protected] */; }; + D2BCB12816F5154E0084604C /* stopencode.png in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB12116F5154D0084604C /* stopencode.png */; }; + D2BCB12916F5154E0084604C /* [email protected] in Resources */ = {isa = PBXBuildFile; fileRef = D2BCB12216F5154D0084604C /* [email protected] */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -237,14 +251,10 @@ 273F20BF14ADC1250021BE6D /* Growl.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Growl.framework; sourceTree = "<group>"; }; 273F20C014ADC1250021BE6D /* Sparkle.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Sparkle.framework; sourceTree = "<group>"; }; 273F20C714ADC4FF0021BE6D /* QTKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QTKit.framework; path = System/Library/Frameworks/QTKit.framework; sourceTree = SDKROOT; }; - 273F212114ADCBF70021BE6D /* ActivityWindow.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = ActivityWindow.tiff; sourceTree = "<group>"; }; - 273F212214ADCBF70021BE6D /* AddToQueue.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = AddToQueue.tiff; sourceTree = "<group>"; }; - 273F212414ADCBF70021BE6D /* Brushed_Window.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Brushed_Window.png; sourceTree = "<group>"; }; 273F212514ADCBF70021BE6D /* Delete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Delete.png; sourceTree = "<group>"; }; 273F212614ADCBF70021BE6D /* DeleteHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteHighlight.png; sourceTree = "<group>"; }; 273F212714ADCBF70021BE6D /* DeleteHighlightPressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeleteHighlightPressed.png; sourceTree = "<group>"; }; 273F212814ADCBF70021BE6D /* DeletePressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = DeletePressed.png; sourceTree = "<group>"; }; - 273F212914ADCBF80021BE6D /* Drawer.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Drawer.tiff; sourceTree = "<group>"; }; 273F212A14ADCBF80021BE6D /* EncodeCanceled.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeCanceled.png; sourceTree = "<group>"; }; 273F212B14ADCBF80021BE6D /* EncodeComplete.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeComplete.png; sourceTree = "<group>"; }; 273F212C14ADCBF80021BE6D /* EncodeWorking0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking0.png; sourceTree = "<group>"; }; @@ -253,23 +263,15 @@ 273F212F14ADCBF80021BE6D /* EncodeWorking3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking3.png; sourceTree = "<group>"; }; 273F213014ADCBF80021BE6D /* EncodeWorking4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking4.png; sourceTree = "<group>"; }; 273F213114ADCBF80021BE6D /* EncodeWorking5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = EncodeWorking5.png; sourceTree = "<group>"; }; - 273F213314ADCBF80021BE6D /* JobLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobLarge.png; sourceTree = "<group>"; }; 273F213414ADCBF80021BE6D /* JobPassFirstSmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobPassFirstSmall.png; sourceTree = "<group>"; }; 273F213614ADCBF80021BE6D /* JobPassSecondSmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobPassSecondSmall.png; sourceTree = "<group>"; }; 273F213814ADCBF80021BE6D /* JobPassSubtitleSmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobPassSubtitleSmall.png; sourceTree = "<group>"; }; 273F213914ADCBF80021BE6D /* JobPassUnknownSmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobPassUnknownSmall.png; sourceTree = "<group>"; }; 273F213A14ADCBF80021BE6D /* JobSmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobSmall.png; sourceTree = "<group>"; }; - 273F213B14ADCBF80021BE6D /* Pause.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Pause.tiff; sourceTree = "<group>"; }; - 273F213C14ADCBF80021BE6D /* Play.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Play.tiff; sourceTree = "<group>"; }; - 273F213D14ADCBF80021BE6D /* pref-audio.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = "pref-audio.tiff"; sourceTree = "<group>"; }; - 273F213E14ADCBF80021BE6D /* pref-picture.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = "pref-picture.tiff"; sourceTree = "<group>"; }; - 273F213F14ADCBF80021BE6D /* Queue.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Queue.tiff; sourceTree = "<group>"; }; 273F214014ADCBF80021BE6D /* Reveal.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Reveal.png; sourceTree = "<group>"; }; 273F214114ADCBF80021BE6D /* RevealHighlight.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RevealHighlight.png; sourceTree = "<group>"; }; 273F214214ADCBF80021BE6D /* RevealHighlightPressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RevealHighlightPressed.png; sourceTree = "<group>"; }; 273F214314ADCBF80021BE6D /* RevealPressed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = RevealPressed.png; sourceTree = "<group>"; }; - 273F214414ADCBF80021BE6D /* Source.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Source.tiff; sourceTree = "<group>"; }; - 273F214514ADCBF80021BE6D /* Stop.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = Stop.tiff; sourceTree = "<group>"; }; 273F217B14ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = AdvancedView.xib; sourceTree = "<group>"; }; 273F217D14ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = InfoPlist.strings; sourceTree = "<group>"; }; 273F217F14ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = MainMenu.xib; sourceTree = "<group>"; }; @@ -278,10 +280,6 @@ 273F218514ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = PictureSettings.xib; sourceTree = "<group>"; }; 273F218714ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Preferences.xib; sourceTree = "<group>"; }; 273F218914ADDDA10021BE6D /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = Queue.xib; sourceTree = "<group>"; }; - 273F219614ADDE9A0021BE6D /* Brushed Window.tiff */ = {isa = PBXFileReference; lastKnownFileType = image.tiff; path = "Brushed Window.tiff"; sourceTree = "<group>"; }; - 273F21A514ADDE9A0021BE6D /* Info.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Info.png; sourceTree = "<group>"; }; - 273F21A814ADDE9A0021BE6D /* JobPassLarge.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobPassLarge.png; sourceTree = "<group>"; }; - 273F21AA14ADDE9A0021BE6D /* JobPassSmall.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = JobPassSmall.png; sourceTree = "<group>"; }; 275916DA14B2AB27007211E9 /* native.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = native.xcconfig; sourceTree = "<group>"; }; 276941FA14B161B70027798C /* osx107.i386.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = osx107.i386.xcconfig; sourceTree = "<group>"; }; 277A3FD014AE84C500A835E4 /* osx106.i386.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = osx106.i386.xcconfig; sourceTree = "<group>"; }; @@ -321,6 +319,32 @@ A9E1467D16BC2AD800C307BC /* pause-p.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "pause-p.pdf"; sourceTree = "<group>"; }; A9E1467E16BC2AD800C307BC /* play-p.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "play-p.pdf"; sourceTree = "<group>"; }; A9E1467F16BC2AD800C307BC /* prev-p.pdf */ = {isa = PBXFileReference; lastKnownFileType = image.pdf; path = "prev-p.pdf"; sourceTree = "<group>"; }; + D2BCB0F616F515230084604C /* activity.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = activity.png; sourceTree = "<group>"; }; + D2BCB0F716F515230084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB0F816F515240084604C /* addqueue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = addqueue.png; sourceTree = "<group>"; }; + D2BCB0F916F515240084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB0FA16F515250084604C /* advanced.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = advanced.png; sourceTree = "<group>"; }; + D2BCB0FB16F515250084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB0FC16F515260084604C /* audio.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = audio.png; sourceTree = "<group>"; }; + D2BCB0FD16F515260084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB0FE16F515270084604C /* encode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = encode.png; sourceTree = "<group>"; }; + D2BCB0FF16F515270084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB10016F515280084604C /* pauseencode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = pauseencode.png; sourceTree = "<group>"; }; + D2BCB10116F515280084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB10216F515290084604C /* picturesettings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = picturesettings.png; sourceTree = "<group>"; }; + D2BCB10316F515290084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB10416F5152A0084604C /* presets.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = presets.png; sourceTree = "<group>"; }; + D2BCB10516F5152A0084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB10616F5152B0084604C /* preview.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = preview.png; sourceTree = "<group>"; }; + D2BCB10716F5152B0084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB10816F5152C0084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB11C16F5154A0084604C /* settings.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = settings.png; sourceTree = "<group>"; }; + D2BCB11D16F5154B0084604C /* showqueue.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = showqueue.png; sourceTree = "<group>"; }; + D2BCB11E16F5154B0084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB11F16F5154C0084604C /* source.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = source.png; sourceTree = "<group>"; }; + D2BCB12016F5154C0084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; + D2BCB12116F5154D0084604C /* stopencode.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = stopencode.png; sourceTree = "<group>"; }; + D2BCB12216F5154D0084604C /* [email protected] */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "[email protected]"; sourceTree = "<group>"; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -575,18 +599,40 @@ 273F212014ADCBF70021BE6D /* icons */ = { isa = PBXGroup; children = ( + D2BCB11C16F5154A0084604C /* settings.png */, + D2BCB11D16F5154B0084604C /* showqueue.png */, + D2BCB11E16F5154B0084604C /* [email protected] */, + D2BCB11F16F5154C0084604C /* source.png */, + D2BCB12016F5154C0084604C /* [email protected] */, + D2BCB12116F5154D0084604C /* stopencode.png */, + D2BCB12216F5154D0084604C /* [email protected] */, + D2BCB0F616F515230084604C /* activity.png */, + D2BCB0F716F515230084604C /* [email protected] */, + D2BCB0F816F515240084604C /* addqueue.png */, + D2BCB0F916F515240084604C /* [email protected] */, + D2BCB0FA16F515250084604C /* advanced.png */, + D2BCB0FB16F515250084604C /* [email protected] */, + D2BCB0FC16F515260084604C /* audio.png */, + D2BCB0FD16F515260084604C /* [email protected] */, + D2BCB0FE16F515270084604C /* encode.png */, + D2BCB0FF16F515270084604C /* [email protected] */, + D2BCB10016F515280084604C /* pauseencode.png */, + D2BCB10116F515280084604C /* [email protected] */, + D2BCB10216F515290084604C /* picturesettings.png */, + D2BCB10316F515290084604C /* [email protected] */, + D2BCB10416F5152A0084604C /* presets.png */, + D2BCB10516F5152A0084604C /* [email protected] */, + D2BCB10616F5152B0084604C /* preview.png */, + D2BCB10716F5152B0084604C /* [email protected] */, + D2BCB10816F5152C0084604C /* [email protected] */, A9E1467C16BC2AD800C307BC /* next-p.pdf */, A9E1467D16BC2AD800C307BC /* pause-p.pdf */, A9E1467E16BC2AD800C307BC /* play-p.pdf */, A9E1467F16BC2AD800C307BC /* prev-p.pdf */, - 273F212114ADCBF70021BE6D /* ActivityWindow.tiff */, - 273F212214ADCBF70021BE6D /* AddToQueue.tiff */, - 273F212414ADCBF70021BE6D /* Brushed_Window.png */, 273F212514ADCBF70021BE6D /* Delete.png */, 273F212614ADCBF70021BE6D /* DeleteHighlight.png */, 273F212714ADCBF70021BE6D /* DeleteHighlightPressed.png */, 273F212814ADCBF70021BE6D /* DeletePressed.png */, - 273F212914ADCBF80021BE6D /* Drawer.tiff */, 273F212A14ADCBF80021BE6D /* EncodeCanceled.png */, 273F212B14ADCBF80021BE6D /* EncodeComplete.png */, 273F212C14ADCBF80021BE6D /* EncodeWorking0.png */, @@ -595,23 +641,15 @@ 273F212F14ADCBF80021BE6D /* EncodeWorking3.png */, 273F213014ADCBF80021BE6D /* EncodeWorking4.png */, 273F213114ADCBF80021BE6D /* EncodeWorking5.png */, - 273F213314ADCBF80021BE6D /* JobLarge.png */, 273F213414ADCBF80021BE6D /* JobPassFirstSmall.png */, 273F213614ADCBF80021BE6D /* JobPassSecondSmall.png */, 273F213814ADCBF80021BE6D /* JobPassSubtitleSmall.png */, 273F213914ADCBF80021BE6D /* JobPassUnknownSmall.png */, 273F213A14ADCBF80021BE6D /* JobSmall.png */, - 273F213B14ADCBF80021BE6D /* Pause.tiff */, - 273F213C14ADCBF80021BE6D /* Play.tiff */, - 273F213D14ADCBF80021BE6D /* pref-audio.tiff */, - 273F213E14ADCBF80021BE6D /* pref-picture.tiff */, - 273F213F14ADCBF80021BE6D /* Queue.tiff */, 273F214014ADCBF80021BE6D /* Reveal.png */, 273F214114ADCBF80021BE6D /* RevealHighlight.png */, 273F214214ADCBF80021BE6D /* RevealHighlightPressed.png */, 273F214314ADCBF80021BE6D /* RevealPressed.png */, - 273F214414ADCBF80021BE6D /* Source.tiff */, - 273F214514ADCBF80021BE6D /* Stop.tiff */, ); path = icons; sourceTree = "<group>"; @@ -642,10 +680,6 @@ 273F219314ADDE9A0021BE6D /* icons */ = { isa = PBXGroup; children = ( - 273F219614ADDE9A0021BE6D /* Brushed Window.tiff */, - 273F21A514ADDE9A0021BE6D /* Info.png */, - 273F21A814ADDE9A0021BE6D /* JobPassLarge.png */, - 273F21AA14ADDE9A0021BE6D /* JobPassSmall.png */, ); path = icons; sourceTree = "<group>"; @@ -761,14 +795,10 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 273F214814ADCBF80021BE6D /* ActivityWindow.tiff in Resources */, - 273F214914ADCBF80021BE6D /* AddToQueue.tiff in Resources */, - 273F214B14ADCBF80021BE6D /* Brushed_Window.png in Resources */, 273F214C14ADCBF80021BE6D /* Delete.png in Resources */, 273F214D14ADCBF80021BE6D /* DeleteHighlight.png in Resources */, 273F214E14ADCBF80021BE6D /* DeleteHighlightPressed.png in Resources */, 273F214F14ADCBF80021BE6D /* DeletePressed.png in Resources */, - 273F215014ADCBF80021BE6D /* Drawer.tiff in Resources */, 273F215114ADCBF80021BE6D /* EncodeCanceled.png in Resources */, 273F215214ADCBF80021BE6D /* EncodeComplete.png in Resources */, 273F215314ADCBF80021BE6D /* EncodeWorking0.png in Resources */, @@ -777,23 +807,15 @@ 273F215614ADCBF80021BE6D /* EncodeWorking3.png in Resources */, 273F215714ADCBF80021BE6D /* EncodeWorking4.png in Resources */, 273F215814ADCBF80021BE6D /* EncodeWorking5.png in Resources */, - 273F215A14ADCBF80021BE6D /* JobLarge.png in Resources */, 273F215B14ADCBF80021BE6D /* JobPassFirstSmall.png in Resources */, 273F215D14ADCBF80021BE6D /* JobPassSecondSmall.png in Resources */, 273F215F14ADCBF80021BE6D /* JobPassSubtitleSmall.png in Resources */, 273F216014ADCBF80021BE6D /* JobPassUnknownSmall.png in Resources */, 273F216114ADCBF80021BE6D /* JobSmall.png in Resources */, - 273F216214ADCBF80021BE6D /* Pause.tiff in Resources */, - 273F216314ADCBF80021BE6D /* Play.tiff in Resources */, - 273F216414ADCBF80021BE6D /* pref-audio.tiff in Resources */, - 273F216514ADCBF80021BE6D /* pref-picture.tiff in Resources */, - 273F216614ADCBF80021BE6D /* Queue.tiff in Resources */, 273F216714ADCBF80021BE6D /* Reveal.png in Resources */, 273F216814ADCBF80021BE6D /* RevealHighlight.png in Resources */, 273F216914ADCBF80021BE6D /* RevealHighlightPressed.png in Resources */, 273F216A14ADCBF80021BE6D /* RevealPressed.png in Resources */, - 273F216B14ADCBF80021BE6D /* Source.tiff in Resources */, - 273F216C14ADCBF80021BE6D /* Stop.tiff in Resources */, 273F218A14ADDDA10021BE6D /* AdvancedView.xib in Resources */, 273F218B14ADDDA10021BE6D /* InfoPlist.strings in Resources */, 273F218C14ADDDA10021BE6D /* MainMenu.xib in Resources */, @@ -807,6 +829,32 @@ A9E1468116BC2AD800C307BC /* pause-p.pdf in Resources */, A9E1468216BC2AD800C307BC /* play-p.pdf in Resources */, A9E1468316BC2AD800C307BC /* prev-p.pdf in Resources */, + D2BCB10916F5152C0084604C /* activity.png in Resources */, + D2BCB10A16F5152C0084604C /* [email protected] in Resources */, + D2BCB10B16F5152C0084604C /* addqueue.png in Resources */, + D2BCB10C16F5152C0084604C /* [email protected] in Resources */, + D2BCB10D16F5152C0084604C /* advanced.png in Resources */, + D2BCB10E16F5152C0084604C /* [email protected] in Resources */, + D2BCB10F16F5152C0084604C /* audio.png in Resources */, + D2BCB11016F5152C0084604C /* [email protected] in Resources */, + D2BCB11116F5152C0084604C /* encode.png in Resources */, + D2BCB11216F5152C0084604C /* [email protected] in Resources */, + D2BCB11316F5152C0084604C /* pauseencode.png in Resources */, + D2BCB11416F5152C0084604C /* [email protected] in Resources */, + D2BCB11516F5152C0084604C /* picturesettings.png in Resources */, + D2BCB11616F5152C0084604C /* [email protected] in Resources */, + D2BCB11716F5152C0084604C /* presets.png in Resources */, + D2BCB11816F5152C0084604C /* [email protected] in Resources */, + D2BCB11916F5152C0084604C /* preview.png in Resources */, + D2BCB11A16F5152C0084604C /* [email protected] in Resources */, + D2BCB11B16F5152C0084604C /* [email protected] in Resources */, + D2BCB12316F5154E0084604C /* settings.png in Resources */, + D2BCB12416F5154E0084604C /* showqueue.png in Resources */, + D2BCB12516F5154E0084604C /* [email protected] in Resources */, + D2BCB12616F5154E0084604C /* source.png in Resources */, + D2BCB12716F5154E0084604C /* [email protected] in Resources */, + D2BCB12816F5154E0084604C /* stopencode.png in Resources */, + D2BCB12916F5154E0084604C /* [email protected] in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/macosx/icons/ActivityWindow.tiff b/macosx/icons/ActivityWindow.tiff Binary files differdeleted file mode 100644 index c4f67c1bc..000000000 --- a/macosx/icons/ActivityWindow.tiff +++ /dev/null diff --git a/macosx/icons/AddToQueue.tiff b/macosx/icons/AddToQueue.tiff Binary files differdeleted file mode 100644 index 8cc6d5e51..000000000 --- a/macosx/icons/AddToQueue.tiff +++ /dev/null diff --git a/macosx/icons/Brushed Window.tiff b/macosx/icons/Brushed Window.tiff Binary files differdeleted file mode 100644 index 30a820b1e..000000000 --- a/macosx/icons/Brushed Window.tiff +++ /dev/null diff --git a/macosx/icons/Brushed_Window.png b/macosx/icons/Brushed_Window.png Binary files differdeleted file mode 100644 index 17d6ef0a5..000000000 --- a/macosx/icons/Brushed_Window.png +++ /dev/null diff --git a/macosx/icons/Drawer.tiff b/macosx/icons/Drawer.tiff Binary files differdeleted file mode 100644 index 7beb83075..000000000 --- a/macosx/icons/Drawer.tiff +++ /dev/null diff --git a/macosx/icons/Info.png b/macosx/icons/Info.png Binary files differdeleted file mode 100644 index 29e97438e..000000000 --- a/macosx/icons/Info.png +++ /dev/null diff --git a/macosx/icons/JobLarge.png b/macosx/icons/JobLarge.png Binary files differdeleted file mode 100644 index 9b8f08d0b..000000000 --- a/macosx/icons/JobLarge.png +++ /dev/null diff --git a/macosx/icons/JobPassLarge.png b/macosx/icons/JobPassLarge.png Binary files differdeleted file mode 100644 index 73ffdad50..000000000 --- a/macosx/icons/JobPassLarge.png +++ /dev/null diff --git a/macosx/icons/JobPassSmall.png b/macosx/icons/JobPassSmall.png Binary files differdeleted file mode 100644 index 9defc5e46..000000000 --- a/macosx/icons/JobPassSmall.png +++ /dev/null diff --git a/macosx/icons/Pause.tiff b/macosx/icons/Pause.tiff Binary files differdeleted file mode 100644 index 50b7362bc..000000000 --- a/macosx/icons/Pause.tiff +++ /dev/null diff --git a/macosx/icons/Play.tiff b/macosx/icons/Play.tiff Binary files differdeleted file mode 100644 index 916ec8d31..000000000 --- a/macosx/icons/Play.tiff +++ /dev/null diff --git a/macosx/icons/Queue.tiff b/macosx/icons/Queue.tiff Binary files differdeleted file mode 100644 index 1ce9dadef..000000000 --- a/macosx/icons/Queue.tiff +++ /dev/null diff --git a/macosx/icons/Source.tiff b/macosx/icons/Source.tiff Binary files differdeleted file mode 100644 index 858a4c537..000000000 --- a/macosx/icons/Source.tiff +++ /dev/null diff --git a/macosx/icons/Stop.tiff b/macosx/icons/Stop.tiff Binary files differdeleted file mode 100644 index 5ebae6d15..000000000 --- a/macosx/icons/Stop.tiff +++ /dev/null diff --git a/macosx/icons/activity.png b/macosx/icons/activity.png Binary files differnew file mode 100755 index 000000000..a2de1eead --- /dev/null +++ b/macosx/icons/activity.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..9a6157f82 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/addqueue.png b/macosx/icons/addqueue.png Binary files differnew file mode 100755 index 000000000..ca33264cc --- /dev/null +++ b/macosx/icons/addqueue.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..af00717cd --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/advanced.png b/macosx/icons/advanced.png Binary files differnew file mode 100755 index 000000000..25b648003 --- /dev/null +++ b/macosx/icons/advanced.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..12c7d6eec --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/audio.png b/macosx/icons/audio.png Binary files differnew file mode 100755 index 000000000..5da9ca960 --- /dev/null +++ b/macosx/icons/audio.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..72dbdf6f9 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/encode.png b/macosx/icons/encode.png Binary files differnew file mode 100755 index 000000000..2f581354c --- /dev/null +++ b/macosx/icons/encode.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..d1b3960df --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/pauseencode.png b/macosx/icons/pauseencode.png Binary files differnew file mode 100755 index 000000000..bd318db00 --- /dev/null +++ b/macosx/icons/pauseencode.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..313e554d8 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/picturesettings.png b/macosx/icons/picturesettings.png Binary files differnew file mode 100755 index 000000000..46017e9a6 --- /dev/null +++ b/macosx/icons/picturesettings.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..aa639d55a --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/pref-audio.tiff b/macosx/icons/pref-audio.tiff Binary files differdeleted file mode 100644 index c8078a548..000000000 --- a/macosx/icons/pref-audio.tiff +++ /dev/null diff --git a/macosx/icons/pref-picture.tiff b/macosx/icons/pref-picture.tiff Binary files differdeleted file mode 100644 index 975ca5608..000000000 --- a/macosx/icons/pref-picture.tiff +++ /dev/null diff --git a/macosx/icons/presets.png b/macosx/icons/presets.png Binary files differnew file mode 100755 index 000000000..439d6cf34 --- /dev/null +++ b/macosx/icons/presets.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..c70543e20 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/preview.png b/macosx/icons/preview.png Binary files differnew file mode 100755 index 000000000..45f711c45 --- /dev/null +++ b/macosx/icons/preview.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..012c3bd78 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/settings.png b/macosx/icons/settings.png Binary files differnew file mode 100755 index 000000000..d1e9757e7 --- /dev/null +++ b/macosx/icons/settings.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..350f4bfd5 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/showqueue.png b/macosx/icons/showqueue.png Binary files differnew file mode 100755 index 000000000..ffcb4d70a --- /dev/null +++ b/macosx/icons/showqueue.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..2cbe097e1 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/source.png b/macosx/icons/source.png Binary files differnew file mode 100755 index 000000000..abdb30afa --- /dev/null +++ b/macosx/icons/source.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..a212d4e58 --- /dev/null +++ b/macosx/icons/[email protected] diff --git a/macosx/icons/stopencode.png b/macosx/icons/stopencode.png Binary files differnew file mode 100755 index 000000000..e94a4a728 --- /dev/null +++ b/macosx/icons/stopencode.png diff --git a/macosx/icons/[email protected] b/macosx/icons/[email protected] Binary files differnew file mode 100755 index 000000000..1e980f0b4 --- /dev/null +++ b/macosx/icons/[email protected] |