diff options
author | sr55 <[email protected]> | 2012-08-27 18:35:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-08-27 18:35:56 +0000 |
commit | 60bf93c65e36a456e35eb7556a59acca281a282e (patch) | |
tree | fdd6190315a0bd8343e9759e480bf57d761f3803 /win/CS | |
parent | 0fa931ae3ea9d197fb305b0f49fae4a9b36c0c70 (diff) |
WinGui: Strip out the last traces of MEF since it's not going to be used.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4920 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
18 files changed, 0 insertions, 135 deletions
diff --git a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj index d3682caeb..f6bb499b0 100644 --- a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj +++ b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj @@ -92,7 +92,6 @@ </Reference>
<Reference Include="PresentationFramework" />
<Reference Include="System" />
- <Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Drawing" />
<Reference Include="System.Management" />
<Reference Include="System.Runtime.Serialization" />
@@ -169,7 +168,6 @@ <Compile Include="Services\Interfaces\IUpdateVersionService.cs" />
<Compile Include="Services\UpdateVersionService.cs" />
<Compile Include="Startup\CastleBootstrapper.cs" />
- <Compile Include="Startup\MefBootstrapper.cs" />
<Compile Include="UserSettingConstants.cs" />
<Compile Include="ViewModels\AboutViewModel.cs" />
<Compile Include="ViewModels\AddPresetViewModel.cs" />
diff --git a/win/CS/HandBrakeWPF/Startup/MefBootstrapper.cs b/win/CS/HandBrakeWPF/Startup/MefBootstrapper.cs deleted file mode 100644 index 730081af7..000000000 --- a/win/CS/HandBrakeWPF/Startup/MefBootstrapper.cs +++ /dev/null @@ -1,98 +0,0 @@ -// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="MefBootstrapper.cs" company="HandBrake Project (http://handbrake.fr)">
-// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
-// </copyright>
-// <summary>
-// The MEF Bootstrapper (Not Used)
-// </summary>
-// --------------------------------------------------------------------------------------------------------------------
-
-namespace HandBrakeWPF.Startup
-{
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.Composition;
- using System.ComponentModel.Composition.Hosting;
- using System.Linq;
-
- using Caliburn.Micro;
-
- using HandBrakeWPF.ViewModels.Interfaces;
-
- /// <summary>
- /// The MEF Bootstrapper (Not Used)
- /// </summary>
- public class MefBootstrapper : Bootstrapper<IMainViewModel>
- {
- /// <summary>
- /// The Backing field for the container
- /// </summary>
- private CompositionContainer container;
-
- /// <summary>
- /// MEF Configure
- /// </summary>
- protected override void Configure()
- {
- container = new CompositionContainer(
- new AggregateCatalog(AssemblySource.Instance.Select(x => new AssemblyCatalog(x)))
- );
-
- var batch = new CompositionBatch();
-
- batch.AddExportedValue<IWindowManager>(new WindowManager());
- batch.AddExportedValue<IEventAggregator>(new EventAggregator());
- batch.AddExportedValue(container);
-
- container.Compose(batch);
- }
-
- /// <summary>
- /// Get an Instance of a service
- /// </summary>
- /// <param name="serviceType">
- /// The service.
- /// </param>
- /// <param name="key">
- /// The key.
- /// </param>
- /// <returns>
- /// The Service Requested
- /// </returns>
- protected override object GetInstance(Type serviceType, string key)
- {
- string contract = string.IsNullOrEmpty(key) ? AttributedModelServices.GetContractName(serviceType) : key;
- var exports = container.GetExportedValues<object>(contract);
-
- if (exports.Count() > 0)
- return exports.First();
-
- throw new Exception(string.Format("Could not locate any instances of contract {0}.", contract));
- }
-
- /// <summary>
- /// Get all instances of a service
- /// </summary>
- /// <param name="serviceType">
- /// The service.
- /// </param>
- /// <returns>
- /// A collection of instances of the requested service type.
- /// </returns>
- protected override IEnumerable<object> GetAllInstances(Type serviceType)
- {
- return container.GetExportedValues<object>(AttributedModelServices.GetContractName(serviceType));
- }
-
- /// <summary>
- /// Build Up
- /// </summary>
- /// <param name="instance">
- /// The instance.
- /// </param>
- protected override void BuildUp(object instance)
- {
- container.SatisfyImportsOnce(instance);
- }
- }
-}
\ No newline at end of file diff --git a/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs index e506fb987..e261062b5 100644 --- a/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/AboutViewModel.cs @@ -9,8 +9,6 @@ namespace HandBrakeWPF.ViewModels
{
- using System.ComponentModel.Composition;
-
using Caliburn.Micro;
using HandBrake.ApplicationServices;
@@ -21,7 +19,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The About View Model
/// </summary>
- [Export(typeof(IAboutViewModel))]
public class AboutViewModel : ViewModelBase, IAboutViewModel
{
/// <summary>
diff --git a/win/CS/HandBrakeWPF/ViewModels/AddPresetViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AddPresetViewModel.cs index 69caa66dc..00d6652b6 100644 --- a/win/CS/HandBrakeWPF/ViewModels/AddPresetViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/AddPresetViewModel.cs @@ -10,7 +10,6 @@ namespace HandBrakeWPF.ViewModels
{
using System.Collections.Generic;
- using System.ComponentModel.Composition;
using System.Windows;
using Caliburn.Micro;
@@ -26,7 +25,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Add Preset View Model
/// </summary>
- [Export(typeof(IAddPresetViewModel))]
public class AddPresetViewModel : ViewModelBase, IAddPresetViewModel
{
/// <summary>
diff --git a/win/CS/HandBrakeWPF/ViewModels/AdvancedViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AdvancedViewModel.cs index ffcfc5b4b..5cfa1f413 100644 --- a/win/CS/HandBrakeWPF/ViewModels/AdvancedViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/AdvancedViewModel.cs @@ -11,7 +11,6 @@ namespace HandBrakeWPF.ViewModels {
using System;
using System.Collections.Generic;
- using System.ComponentModel.Composition;
using System.Globalization;
using System.Linq;
@@ -29,7 +28,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Advanced View Model
/// </summary>
- [Export(typeof(IAdvancedViewModel))]
public class AdvancedViewModel : ViewModelBase, IAdvancedViewModel
{
#region Constants and Fields
diff --git a/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs index 393702cb2..49504b684 100644 --- a/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/AudioViewModel.cs @@ -12,7 +12,6 @@ namespace HandBrakeWPF.ViewModels using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
- using System.ComponentModel.Composition;
using System.Linq;
using Caliburn.Micro;
@@ -29,7 +28,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Audio View Model
/// </summary>
- [Export(typeof(IAudioViewModel))]
public class AudioViewModel : ViewModelBase, IAudioViewModel
{
/// <summary>
diff --git a/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs index ee2cebe34..69a8a5d05 100644 --- a/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/ChaptersViewModel.cs @@ -12,7 +12,6 @@ namespace HandBrakeWPF.ViewModels using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
- using System.ComponentModel.Composition;
using System.IO;
using Caliburn.Micro;
@@ -30,7 +29,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Chapters View Model
/// </summary>
- [Export(typeof(IChaptersViewModel))]
public class ChaptersViewModel : ViewModelBase, IChaptersViewModel
{
/// <summary>
diff --git a/win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs index bed8806a4..e6bbfe6d4 100644 --- a/win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/ErrorViewModel.cs @@ -10,7 +10,6 @@ namespace HandBrakeWPF.ViewModels
{
using System;
- using System.ComponentModel.Composition;
using System.Windows;
using HandBrakeWPF.ViewModels.Interfaces;
@@ -18,7 +17,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Error View Model
/// </summary>
- [Export(typeof(IErrorViewModel))]
public class ErrorViewModel : ViewModelBase, IErrorViewModel
{
#region Constants and Fields
diff --git a/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs index 50fe97f1c..e99d2100a 100644 --- a/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/FiltersViewModel.cs @@ -10,7 +10,6 @@ namespace HandBrakeWPF.ViewModels
{
using System.Collections.Generic;
- using System.ComponentModel.Composition;
using Caliburn.Micro;
@@ -25,7 +24,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Filters View Model
/// </summary>
- [Export(typeof(IFiltersViewModel))]
public class FiltersViewModel : ViewModelBase, IFiltersViewModel
{
#region Constructors and Destructors
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index f262ea7e3..340036373 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -11,7 +11,6 @@ namespace HandBrakeWPF.ViewModels {
using System;
using System.Collections.Generic;
- using System.ComponentModel.Composition;
using System.Diagnostics;
using System.IO;
using System.Linq;
@@ -42,7 +41,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// HandBrakes Main Window
/// </summary>
- [Export(typeof(IMainViewModel))]
public class MainViewModel : ViewModelBase, IMainViewModel
{
#region Private Variables and Services
@@ -194,7 +192,6 @@ namespace HandBrakeWPF.ViewModels /// <param name="driveDetectService">
/// The drive Detect Service.
/// </param>
- [ImportingConstructor]
public MainViewModel(IWindowManager windowManager, IUserSettingService userSettingService, IScan scanService, IEncode encodeService, IPresetService presetService,
IErrorService errorService, IShellViewModel shellViewModel, IUpdateService updateService, IDriveDetectService driveDetectService)
{
diff --git a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs index 7036240cd..119cb9d10 100644 --- a/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/OptionsViewModel.cs @@ -13,7 +13,6 @@ namespace HandBrakeWPF.ViewModels using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
- using System.ComponentModel.Composition;
using System.Diagnostics;
using System.Globalization;
using System.IO;
@@ -35,7 +34,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Options View Model
/// </summary>
- [Export(typeof(IOptionsViewModel))]
public class OptionsViewModel : ViewModelBase, IOptionsViewModel
{
#region Constants and Fields
diff --git a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs index 2c879ff58..7bca93ced 100644 --- a/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/PictureSettingsViewModel.cs @@ -11,7 +11,6 @@ namespace HandBrakeWPF.ViewModels {
using System;
using System.Collections.Generic;
- using System.ComponentModel.Composition;
using System.Drawing;
using Caliburn.Micro;
@@ -26,7 +25,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Picture Settings View Model
/// </summary>
- [Export(typeof(IPictureSettingsViewModel))]
public class PictureSettingsViewModel : ViewModelBase, IPictureSettingsViewModel
{
/*
diff --git a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs index badb64e17..82f3b30f4 100644 --- a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs @@ -11,7 +11,6 @@ namespace HandBrakeWPF.ViewModels {
using System;
using System.Collections.ObjectModel;
- using System.ComponentModel.Composition;
using System.Windows;
using Caliburn.Micro;
@@ -29,7 +28,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Preview View Model
/// </summary>
- [Export(typeof(IQueueViewModel))]
public class QueueViewModel : ViewModelBase, IQueueViewModel
{
#region Constants and Fields
diff --git a/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs index adb1f587b..2633b5885 100644 --- a/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs @@ -9,7 +9,6 @@ namespace HandBrakeWPF.ViewModels
{
- using System.ComponentModel.Composition;
using System.Windows;
using Caliburn.Micro;
@@ -23,7 +22,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Shell View Model
/// </summary>
- [Export(typeof(IShellViewModel))]
public class ShellViewModel : ViewModelBase, IShellViewModel
{
/// <summary>
diff --git a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs index 8d6dafb2c..446fab6cf 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SubtitlesViewModel.cs @@ -11,7 +11,6 @@ namespace HandBrakeWPF.ViewModels {
using System.Collections.Generic;
using System.Collections.Specialized;
- using System.ComponentModel.Composition;
using System.IO;
using System.Linq;
@@ -30,7 +29,6 @@ namespace HandBrakeWPF.ViewModels /// <summary>
/// The Subtitles View Model
/// </summary>
- [Export(typeof(ISubtitlesViewModel))]
public class SubtitlesViewModel : ViewModelBase, ISubtitlesViewModel
{
#region Constants and Fields
diff --git a/win/CS/HandBrakeWPF/ViewModels/TitleSpecificViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/TitleSpecificViewModel.cs index 06055dff1..836a7b0aa 100644 --- a/win/CS/HandBrakeWPF/ViewModels/TitleSpecificViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/TitleSpecificViewModel.cs @@ -9,14 +9,11 @@ namespace HandBrakeWPF.ViewModels
{
- using System.ComponentModel.Composition;
-
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// The Title Specific View Model
/// </summary>
- [Export(typeof(ITitleSpecificViewModel))]
public class TitleSpecificViewModel : ViewModelBase, ITitleSpecificViewModel
{
#region Constants and Fields
diff --git a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs index d066f7ea2..8468f26da 100644 --- a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs @@ -11,7 +11,6 @@ namespace HandBrakeWPF.ViewModels {
using System;
using System.Collections.Generic;
- using System.ComponentModel.Composition;
using System.Globalization;
using Caliburn.Micro;
@@ -23,14 +22,12 @@ namespace HandBrakeWPF.ViewModels using HandBrake.ApplicationServices.Services.Interfaces;
using HandBrake.ApplicationServices.Utilities;
using HandBrake.Interop.Model.Encoding;
- using HandBrake.Interop.Model.Encoding.x264;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// The Video View Model
/// </summary>
- [Export(typeof(IVideoViewModel))]
public class VideoViewModel : ViewModelBase, IVideoViewModel
{
#region Constants and Fields
diff --git a/win/CS/HandBrakeWPF/ViewModels/ViewModelBase.cs b/win/CS/HandBrakeWPF/ViewModels/ViewModelBase.cs index ac9098bac..f1766741e 100644 --- a/win/CS/HandBrakeWPF/ViewModels/ViewModelBase.cs +++ b/win/CS/HandBrakeWPF/ViewModels/ViewModelBase.cs @@ -13,7 +13,6 @@ namespace HandBrakeWPF.ViewModels using HandBrake.ApplicationServices.Services.Interfaces;
- using HandBrakeWPF.Services.Interfaces;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
|