internal void SetSettings(IAppleConverterePub2Settings appleConverterePub2Settings)
        {
            _platforms.Clear();
            foreach (var platform in appleConverterePub2Settings.Platforms)
            {
                var targetPlatform = new AppleTargetPlatform();
                switch (platform.Name)
                {
                case EPubLibraryContracts.Settings.AppleTargetPlatform.All:
                    targetPlatform.Type = PlatformType.All;
                    break;

                case EPubLibraryContracts.Settings.AppleTargetPlatform.iPad:
                    targetPlatform.Type = PlatformType.iPad;
                    break;

                case EPubLibraryContracts.Settings.AppleTargetPlatform.iPhone:
                    targetPlatform.Type = PlatformType.iPhone;
                    break;

                case EPubLibraryContracts.Settings.AppleTargetPlatform.NotSet:     // we not going to add if type not set
                    Logger.Log.Error("SetupAppleSettings() - passed apple platform of type NotSet");
                    continue;
                }
                targetPlatform.FixedLayout        = platform.FixedLayout;
                targetPlatform.OpenToSpread       = platform.OpenToSpread;
                targetPlatform.CustomFontsAllowed = platform.UseCustomFonts;
                switch (platform.OrientationLock)
                {
                case AppleOrientationLock.None:
                    targetPlatform.OrientationLockType = OrientationLock.Off;
                    break;

                case AppleOrientationLock.LandscapeOnly:
                    targetPlatform.OrientationLockType = OrientationLock.LandscapeOnly;
                    break;

                case AppleOrientationLock.PortraitOnly:
                    targetPlatform.OrientationLockType = OrientationLock.PortraitOnly;
                    break;
                }
                AddPlatform(targetPlatform);
            }
        }
        private void CreateContentDocument(XDocument contentDocument)
        {
            XElement dispOptions = new XElement("display_options");
            XElement platformXml = new XElement("platform");

            foreach (var platform in _platforms)
            {
                platformXml.Add(new XAttribute("name", AppleTargetPlatform.ConvertTypeToString(platform.Key)));

                XElement option = new XElement("option");
                option.Value = platform.Value.CustomFontsAllowed ? "true" : "false";
                option.Add(new XAttribute("name", "specified-fonts"));
                platformXml.Add(option);

                option       = new XElement("option");
                option.Value = platform.Value.FixedLayout ? "true" : "false";
                option.Add(new XAttribute("name", "fixed-layout"));
                platformXml.Add(option);

                option       = new XElement("option");
                option.Value = platform.Value.OpenToSpread ? "true" : "false";
                option.Add(new XAttribute("name", "open-to-spread"));
                platformXml.Add(option);

                option = new XElement("option");
                string lockType = "none";
                if (platform.Value.OrientationLockType == OrientationLock.LandscapeOnly)
                {
                    lockType = "landscape-only";
                }
                else if (platform.Value.OrientationLockType == OrientationLock.PortraitOnly)
                {
                    lockType = "portrait-only";
                }
                option.Value = lockType;
                option.Add(new XAttribute("name", "orientation-lock"));
                platformXml.Add(option);

                dispOptions.Add(platformXml);
            }
            contentDocument.Add(dispOptions);
        }
 internal void SetSettings(IAppleConverterePub2Settings appleConverterePub2Settings)
 {
     _platforms.Clear();
     foreach (var platform in appleConverterePub2Settings.Platforms)
     {
         var targetPlatform = new AppleTargetPlatform();
         switch (platform.Name)
         {
             case EPubLibraryContracts.Settings.AppleTargetPlatform.All:
                 targetPlatform.Type = PlatformType.All;
                 break;
             case EPubLibraryContracts.Settings.AppleTargetPlatform.iPad:
                 targetPlatform.Type = PlatformType.iPad;
                 break;
             case EPubLibraryContracts.Settings.AppleTargetPlatform.iPhone:
                 targetPlatform.Type = PlatformType.iPhone;
                 break;
             case EPubLibraryContracts.Settings.AppleTargetPlatform.NotSet: // we not going to add if type not set
                 Logger.Log.Error("SetupAppleSettings() - passed apple platform of type NotSet");
                 continue;
         }
         targetPlatform.FixedLayout = platform.FixedLayout;
         targetPlatform.OpenToSpread = platform.OpenToSpread;
         targetPlatform.CustomFontsAllowed = platform.UseCustomFonts;
         switch (platform.OrientationLock)
         {
             case AppleOrientationLock.None:
                 targetPlatform.OrientationLockType = OrientationLock.Off;
                 break;
             case AppleOrientationLock.LandscapeOnly:
                 targetPlatform.OrientationLockType = OrientationLock.LandscapeOnly;
                 break;
             case AppleOrientationLock.PortraitOnly:
                 targetPlatform.OrientationLockType = OrientationLock.PortraitOnly;
                 break;
         }
         AddPlatform(targetPlatform);
     }
 }