Beispiel #1
0
        public MainForm()
        {
            InitializeComponent();

            if (settings.SettingsUpgradeRequired)
            {
                settings.Upgrade();
                settings.WowVersion = (string)settings.Properties["WowVersion"].DefaultValue;
                settings.SettingsUpgradeRequired = false;
            }

            options = new Options(this);
            about = new About();

            this.pic_LfdTank.Image = Helper.ConvertToGrayScale(Helper.bmpTank);
            this.pic_LfdHeal.Image = Helper.ConvertToGrayScale(Helper.bmpHeal);
            this.pic_LfdDps.Image = Helper.ConvertToGrayScale(Helper.bmpDps);

            this.pic_LfrTank.Image = Helper.ConvertToGrayScale(Helper.bmpTank);
            this.pic_LfrHeal.Image = Helper.ConvertToGrayScale(Helper.bmpHeal);
            this.pic_LfrDps.Image = Helper.ConvertToGrayScale(Helper.bmpDps);

            lfdModule = new DTModule(
                lbl_LfdStatus,
                lbl_LfdWait,
                lbl_LfdQueueTime,
                lbl_LfdTank,
                lbl_LfdHealer,
                lbl_LfdDps,
                pic_LfdTank,
                pic_LfdHeal,
                pic_LfdDps
            );

            lfrModule = new DTModule(
                lbl_LfrStatus,
                lbl_LfrWait,
                lbl_LfrQueueTime,
                lbl_LfrTank,
                lbl_LfrHealer,
                lbl_LfrDps,
                pic_LfrTank,
                pic_LfrHeal,
                pic_LfrDps
            );

            bg1Module = new DTModule(
                lbl_BG1Status,
                lbl_Bg1Wait,
                lbl_Bg1QueuedTime
            );

            bg2Module = new DTModule(
                lbl_BG2Status,
                lbl_Bg2Wait,
                lbl_Bg2QueuedTime
            );
        }
Beispiel #2
0
 public ActionResult AboutDestroy(string models)
 {
     List<Guid> list = new List<Guid>();
     var ts = Newtonsoft.Json.JsonConvert.DeserializeObject<List<sd_about>>(models);
     foreach (var item in ts)
     {
         var t = new About().Delete(item);
     }
     return Json(list);
 }
Beispiel #3
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (wndAbout != null)
     {
         wndAbout.Close();
     }
     wndAbout = new About();
     wndAbout.MdiParent = this;
     wndAbout.BringToFront();
     wndAbout.Show();
 }
        public AccountInfo GetAccountInfo()
        {
           AccountInfo info =new AccountInfo();
           user = Service.About.Get().Execute();
           info.ID = user.PermissionId;
           info.Name = user.User.DisplayName;
           info.Email = user.User.EmailAddress;
           info.Country = (new System.Globalization.RegionInfo(user.LanguageCode)).DisplayName;
          

            return info;
        }
Beispiel #5
0
 static void Main(string[] args)
 {
     beginning:
     Console.WriteLine("FurniUtils");
     Console.WriteLine();
     Console.WriteLine("Your options:");
     Console.WriteLine("Convert Furnidata to Catalog_items [A]");
     Console.WriteLine("Convert Furnidata to Furniture [B]");
     Console.WriteLine("Convert Furnidata to Productdata [C]");
     Console.WriteLine("Download Furnis from images-eussl.habbo.com [D]");
     Console.WriteLine("Remove Graphic Tags from Furnis in \\swfs [E]");
     Console.WriteLine("Download Clothes from images-eussl.habbo.com [F]");
     Console.WriteLine("Download Furnidata from habbo.XX [G]");
     Console.WriteLine("Download Figuremap & figuredata from habbo.XX [H]");
     Console.WriteLine("Credits [I]");
     if (!Directory.Exists("swfs"))
         Directory.CreateDirectory("swfs");
     if (!Directory.Exists("swfs/backup"))
         Directory.CreateDirectory("swfs/backup");
     if (!Directory.Exists("swfs/clothes"))
         Directory.CreateDirectory("swfs/clothes");
     tryagain:
     string keychar = Console.ReadKey().KeyChar.ToString().ToLower();
     ToInterface interface1 = null;
     if (keychar == "a")
         interface1 = new ToCatalogItem();
     else if (keychar == "b")
         interface1 = new ToFurniture();
     else if (keychar == "c")
         interface1 = new ToProductdata();
     else if (keychar == "d")
         interface1 = new DownloadFurnis();
     else if (keychar == "e")
         interface1 = new RemoveGraphicTag();
     else if (keychar == "f")
         interface1 = new DownloadClothes();
     else if (keychar == "g")
         interface1 = new DownloadFurnidata();
     else if (keychar == "h")
         interface1 = new DownloadFiguremap();
     else if (keychar == "i")
         interface1 = new About();
     if (interface1 != null)
         interface1.HandleFurnidata(System.IO.File.ReadAllText("furnidata.txt",Encoding.Default).Replace("[[","[").Replace("]]","],").Split(']'));
     else
     { Console.WriteLine("Invalid command! Try again!"); goto tryagain; }
     Console.ReadKey();
     Console.Clear();
     goto beginning;
 }
Beispiel #6
0
        private void DoShowAbout()
        {
            var logo = new BitmapImage();
            logo.BeginInit();
            logo.UriSource = new Uri("pack://*****:*****@gmail.com, специально для digimonworld.ru";
                    break;
                default:
                    about.Title = "Digimon World 2 DataBase";
                    about.Description = "Helper for DW2";
                    about.Hyperlink = new Uri("https://github.com/drdoomenator/DW2DB");
                    about.HyperlinkText = "https://github.com/drdoomenator/DW2DB";
                    about.PublisherLogo = null;
                    about.AdditionalNotes =
                        "Programming: Misurin Artem, [email protected], for digimonworld.ru";
                    break;
            }

            about.Show();
        }
Beispiel #7
0
 public ActionResult PublishAbout()
 {
     var address = Request["address"];
     var phone = Request["phone"];
     var fax = Request["fax"];
     var descript = Request["descript"];
     var content = Request["content"];
     sd_about About = new sd_about();
     if (address != null)
     {
         About.address = address.ToString();
     }
     if (phone != null)
     {
         About.phone = phone.ToString();
     }
     if (fax != null)
     {
         About.fax = fax.ToString();
     }
     if (descript != null)
     {
         About.shortDesc = descript.ToString().Replace("&lt;", "<").Replace("&gt;", ">"); ;
     }
     if (content != null)
     {
         About.content = content.ToString().Replace("&lt;", "<").Replace("&gt;", ">"); ;
     }
     About.id = Guid.NewGuid();
     JsonData data = new JsonData();
     About bll = new About();
     var model = bll.Add(About);
     data.Success = (model != null ? true : false);
     data.Message = "新闻添加成功";
     return Json(data);
 }
 public IResult Delete(About content)
 {
     _aboutDal.Delete(content);
     return(new SuccessResult());
 }
 private void acercaDeToolStripMenuItem_Click(object sender, EventArgs e)
 {
     About ab = new About();
     ab.ShowDialog();
     ab.Dispose();
 }
Beispiel #10
0
 protected virtual object commandAboutExecute(object parameter)
 {
     var win = new About() { Owner = _callingWin as Window };
     win.ShowDialog();
     return null;
 }
Beispiel #11
0
 private void AboutButton_Click(object sender, RibbonControlEventArgs e)
 {
     About dlg = new About();
     dlg.ShowDialog();
 }
    public void HandleAbout(object o, EventArgs ev)
    {
        String[] authors = { "Jeff Tickle" };
        String[] documenters = { };

        About ab = new About("Virtual Paper",
                            "0.3",
                            "Copyright (C) 2007 Jeff Tickle",
                            "Comments",
                            authors,
                            documenters,
                            "translator",
                            null);
        ab.Run();
    }
 protected virtual void OnAboutActionActivated(object sender, System.EventArgs e)
 {
     About ab = new About();
     ab.Visible = true;
 }
Beispiel #14
0
 private void aboutmenu_Click(object sender, EventArgs e)
 {
     using (var ab = new About())
     {
         ab.ShowDialog();
     }
 }
Beispiel #15
0
 public void AboutUpdate(About about)
 {
     _aboutDal.Update(about);
 }
Beispiel #16
0
 public void AboutDelete(About about)
 {
     _aboutDal.Delete(about);
 }
Beispiel #17
0
 public void AboutAdd(About about)
 {
     _aboutDal.Insert(about);
 }
Beispiel #18
0
        private void aboutMenuItem_Click(object sender, EventArgs e)
        {
            About f = new About();

            f.ShowDialog();
        }
Beispiel #19
0
 public long Insert(About entity)
 {
     db.Abouts.Add(entity);
     db.SaveChanges();
     return(entity.ID);
 }
Beispiel #20
0
 private void mAbout_Click(object sender, EventArgs e)
 {
     About.ShowDialog();
 }
Beispiel #21
0
        private void About_Click(object sender, EventArgs e)
        {
            var about = new About();

            about.ShowDialog();
        }
Beispiel #22
0
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            About form = new About();

            form.ShowDialog();
        }
 public IResult Add(About content)
 {
     _aboutDal.Add(content);
     return(new SuccessResult());
 }
Beispiel #24
0
        private void initObjectModels()
        {
            // initializing blog objects
            allPosts      = new AllPosts(browser);
            conferences   = new Conferences(browser);
            engineering   = new Engineering(browser);
            enterprise    = new Enterprise(browser);
            featured      = new Featured(browser);
            meetups       = new Meetups(browser);
            newFeatures   = new NewFeatures(browser);
            newHires      = new NewHires(browser);
            blogSearchBar = new pageObjectModels.blog.SearchBar(browser);
            watercooler   = new Watercooler(browser);

            // initializing explore objects
            integrations = new Integrations(browser);
            showcases    = new Showcases(browser);
            trending     = new Trending(browser);

            // initializing footer objects
            about         = new About(browser);
            api           = new API(browser);
            footerBlog    = new pageObjectModels.footer.Blog(browser);
            contactGitHub = new ContactGitHub(browser);
            help          = new Help(browser);
            footerLogo    = new pageObjectModels.footer.Logo(browser);
            privacy       = new Privacy(browser);
            security      = new Security(browser);
            shop          = new Shop(browser);
            status        = new Status(browser);
            terms         = new Terms(browser);
            training      = new Training(browser);

            // initializing header objects
            headerBlog      = new pageObjectModels.header.Blog(browser);
            business        = new Business(browser);
            explore         = new Explore(browser);
            headerLogo      = new pageObjectModels.header.Logo(browser);
            openSource      = new OpenSource(browser);
            personal        = new Personal(browser);
            pricing         = new Pricing(browser);
            headerSearchBar = new pageObjectModels.header.SearchBar(browser);
            signIn          = new SignIn(browser);
            signUp          = new SignUp(browser);
            support         = new Support(browser);

            // initializing main objects
            signUpEmail     = new SignUpEmail(browser);
            signUpForGitHub = new SignUpForGitHubButton(browser);
            signUpPassword  = new SignUpPassword(browser);
            signUpSubmit    = new SignUpSubmit(browser);
            signUpUsername  = new SignUpUsername(browser);

            // initializing pricing objects
            createOrganization   = new CreateOrganization(browser);
            joinGitHubForFree    = new JoinGitHubForFree(browser);
            startEnterpriseTrial = new StartEnterpriseTrial(browser);
            upgradeAccount       = new UpgradeAccount(browser);

            // initializing support objects
            beSocial         = new BeSocial(browser);
            contactSupport   = new ContactSupport(browser);
            createARepo      = new CreateARepo(browser);
            forkARepo        = new ForkARepo(browser);
            setUpGit         = new SetUpGit(browser);
            supportSearchBar = new pageObjectModels.support.SearchBar(browser);
        }
        public void __Application(IApplicationLoader app)
        {
            //app.LoadingAnimation.FadeOut();

            var DefaultTitle = "jsc solutions";


            Native.Document.title = DefaultTitle;

            StringActionAction GetTitleFromServer = new UltraWebService().GetTitleFromServer;



            GetTitleFromServer(
                n => Native.Document.title = n
            );

            var MyPagesBackground = new IHTMLDiv
            {

            };

            MyPagesBackground.style.overflow = IStyle.OverflowEnum.hidden;
            MyPagesBackground.style.position = IStyle.PositionEnum.absolute;
            MyPagesBackground.style.width = "100%";
            MyPagesBackground.style.height = "100%";
            MyPagesBackground.AttachToDocument();

            var MyPages = new IHTMLDiv
            {

            };

            MyPages.style.overflow = IStyle.OverflowEnum.auto;
            MyPages.style.position = IStyle.PositionEnum.absolute;
            MyPages.style.width = "100%";
            MyPages.style.height = "100%";
            MyPages.AttachToDocument();

            var MyPagesInternal = new IHTMLDiv();

            MyPagesInternal.style.margin = "4em";
            MyPagesInternal.AttachTo(MyPages);

            // http://www.google.com/support/forum/p/Google+Analytics/thread?tid=486a963e463df665&hl=en
            var gapathname = Native.Document.location.pathname;
            var gasearch = Native.Document.location.search;
            var gahash = Native.Window.escape(Native.Document.location.hash);
            var gapageview = gapathname + gasearch + gahash;

            var hash = Native.Document.location.hash;

            Action<string> Analytics = delegate { };

        #region logo
            {
                var IsStudio = Native.Document.location.hash.StartsWith("#/studio");

                if (Native.Document.location.host.StartsWith("studio."))
                {
                    IsStudio = true;
                }

                if (IsStudio)
                {
                    new StudioView(AddSaveButton).Content.AttachToDocument();
                }
                else if (Native.Document.location.hash.StartsWith("#/docs"))
                {
                    var view = new DocumentationCompilationViewer();

                    view.TouchTypeSelected +=
                        type =>
                        {
                            Native.Document.location.hash = "#/docs/" + type.FullName;

                            Analytics("#/docs/" + type.FullName);
                        };

                }
                else if (Native.Document.location.hash.StartsWith("#/warehouse"))
                {
                    new UltraWebService().ThreeDWarehouse(
                        y =>
                        {
                            Func<string, IHTMLAnchor> Build =
                                mid =>
                                {
                                    var a = new IHTMLAnchor { href = "http://sketchup.google.com/3dwarehouse/details?ct=hppm&mid=" + mid }.AttachTo(MyPagesInternal);
                                    var img = new IHTMLImage { src = "http://sketchup.google.com/3dwarehouse/download?rtyp=st&ctyp=other&mid=" + mid }.AttachTo(a);

                                    return a;
                                };

                            var imgs = Enumerable.ToArray(
                                from k in y.Elements()
                                select Build(k.Value)

                            );
                        }
                    );

                }

                else if (Native.Document.location.hash == "#/source")
                {

                    var sln = new TreeNode(() => new VistaTreeNodePage());

                    sln.Text = "Solution";
                    sln.IsExpanded = true;

                    Action<TreeNode> AddReferences =
                        p =>
                        {
                            var r = p.Add("References", new References());

                            r.Add("System", new Assembly());
                            r.Add("System.Core", new Assembly());
                            r.Add("ScriptCoreLib", new Assembly());
                            r.Add("ScriptCoreLib.Ultra", new Assembly());
                            r.Add("ScriptCoreLib.Ultra.Library", new Assembly());
                            r.Add("ScriptCoreLib.Ultra.Controls", new Assembly());
                            r.Add("ScriptCoreLibJava", new Assembly());
                            r.Add("jsc.meta", new Assembly());
                        };

                    Action<TreeNode> AddUltraSource =
                        p =>
                        {
                            var my = p.Add("My.UltraSource");
                            my.Add("Default.htm", new HTMLDocument());
                            my.Add("jsc.png", new ImageFile());

                        };

                    {
                        var p = sln.Add("Visual C# Project", new VisualCSharpProject());


                        AddReferences(p);
                        AddUltraSource(p);



                        p.Add("Application.cs", new VisualCSharpCode());
                        p.Add("WebService.cs", new VisualCSharpCode());
                        p.Add("Program.cs", new VisualCSharpCode());
                    }

                    {
                        var p = sln.Add("Visual Basic Project", new VisualBasicProject());

                        AddReferences(p);
                        AddUltraSource(p);

                        p.Add("Application.vb", new VisualBasicCode());
                        p.Add("WebService.vb", new VisualBasicCode());
                        p.Add("Program.vb", new VisualBasicCode());
                    }


                    {
                        var p = sln.Add("Visual F# Project", new VisualFSharpProject());

                        AddReferences(p);
                        AddUltraSource(p);


                        p.Add("Application.fs", new VisualFSharpCode());
                        p.Add("WebService.fs", new VisualFSharpCode());
                        p.Add("Program.fs", new VisualFSharpCode());
                    }

                    sln.Container.style.Float = IStyle.FloatEnum.right;
                    sln.Container.AttachTo(MyPagesInternal);

                    new SourceEditorHeader().Container.AttachTo(MyPagesInternal);

                    //new IHTMLElement(IHTMLElement.HTMLElementEnum.h1, "Create your own Ultra Application project template").AttachTo(MyPagesInternal);

                    var n = new TextEditor(MyPagesInternal);

                    n.Width = 600;
                    n.Height = 400;

                    //n.InnerHTML = "<p>Create your own <b>Ultra Application</b> Project Template</p>";


                    new DefaultPage1().Container.AttachTo(n.Document.body);

                    var m1 = new SimpleCodeView();

                    m1.Container.AttachTo(MyPagesInternal);
                    //m1.SelectType.onchange +=
                    //    delegate
                    //    {
                    //        m1.TypeName.innerText = m1.SelectType.value;
                    //    };

                    //m1.RunJavaScript.onclick +=
                    //    delegate
                    //    {
                    //        m1.RunJavaScript.style.color = JSColor.Blue;

                    //        try
                    //        {
                    //            Native.Window.eval(m1.Code1.value);

                    //            1000.AtDelay(
                    //                delegate
                    //                {
                    //                    m1.RunJavaScript.style.color = JSColor.None;
                    //                }
                    //            );
                    //        }
                    //        catch
                    //        {
                    //            m1.RunJavaScript.style.color = JSColor.Red;

                    //            1000.AtDelay(
                    //                delegate
                    //                {
                    //                    m1.RunJavaScript.style.color = JSColor.None;
                    //                }
                    //            );
                    //        }
                    //    };
                    new Compilation().GetArchives().SelectMany(k => k.GetAssemblies()).First(k => k.Name == "ScriptCoreLib").WhenReady(
                        ScriptCoreLib =>
                        {
                            // we do not have reflection in place for native wrappers :/

                            m1.SelectEvent.Clear();

                            var Element = ScriptCoreLib.GetTypes().Single(k => k.FullName == "ScriptCoreLib.JavaScript.DOM.HTML.IHTMLElement");
                            //var Element = ScriptCoreLib.GetTypes().Single(k => k.HTMLElement == "ScriptCoreLib.JavaScript.DOM.HTML.IHTMLElement");

                            Action<CompilationEvent> Add =
                                SourceEvent =>
                                {
                                    m1.SelectEvent.Add(
                                        new IHTMLOption { innerText = SourceEvent.Name }
                                    );
                                };

                            Element.GetEvents().ForEach(Add);

                        }
                    );


                    m1.SelectEvent.onchange +=
                        delegate
                        {
                            m1.EventName.innerText = m1.SelectEvent.value;
                        };




                }
                else if (Native.Document.location.hash == "#/UltraApplicationWithAssets")
                {
                    new UltraApplicationWithAssets().Container.AttachToDocument();
                }
                else
                    if (Native.Document.location.hash == "#/audio")
                    {
                        Action AtTimer = delegate { };

                        (1000 / 15).AtInterval(
                            tt =>
                            {
                                AtTimer();
                            }
                        );

                        new SoundCloudBackground().Container.AttachTo(MyPagesBackground);
                        new SoundCloudHeader().Container.AttachTo(MyPagesInternal);

                        var page = 1;

                        var Tracks = new IHTMLDiv().AttachTo(MyPagesInternal);
                        Tracks.style.margin = "1em";

                        var More = new SoundCloudMore();

                        var AudioLinks = default(AudioLink);

                        var LoadCurrentPage = default(Action);

                        LoadCurrentPage = delegate
                        {
                            var loading = new SoundCloudLoading();

                            loading.Container.AttachTo(Tracks);


                            new UltraWebService().SoundCloudTracksDownload(
                                System.Convert.ToString(page),
                                ee =>
                                {
                                    if (loading != null)
                                    {
                                        loading.Container.Orphanize();
                                        loading = null;
                                    }

                                    var t = new SoundCloudTrack();

                                    t.Content.ApplyToggleConcept(t.HideContent, t.ShowContent).Hide();

                                    t.Title.innerHTML = ee.trackName;
                                    t.Waveform.src = ee.waveformUrl;

                                    t.Audio.src = ee.streamUrl;
                                    t.Audio.autobuffer = true;


                                    AudioLinks = new AudioLink
                                    {
                                        Audio = t.Audio,
                                        Prev = AudioLinks
                                    };

                                    var _AudioLinks = AudioLinks;

                                    if (AudioLinks.Prev != null)
                                        AudioLinks.Prev.Next = AudioLinks;
                                    else
                                        // we are the first  :)
                                        t.Audio.play();

                                    t.MoreButton.onclick +=
                                        delegate
                                        {
                                            t.Audio.pause();

                                            if (_AudioLinks.Next != null)
                                            {
                                                _AudioLinks.Next.Audio.currentTime = 0;
                                                _AudioLinks.Next.Audio.play();

                                                if (_AudioLinks.Next.Next == null)
                                                {
                                                    page++;
                                                    LoadCurrentPage();
                                                }
                                            }
                                        };

                                    t.Audio.onended +=
                                        delegate
                                        {
                                            if (_AudioLinks.Next != null)
                                            {
                                                _AudioLinks.Next.Audio.currentTime = 0;
                                                _AudioLinks.Next.Audio.play();

                                                if (_AudioLinks.Next.Next == null)
                                                {
                                                    page++;
                                                    LoadCurrentPage();
                                                }
                                            }
                                        };

                                    t.Identity.innerText = ee.uid;

                                    t.Play.onclick += eee => { eee.PreventDefault(); t.Audio.play(); };
                                    t.Pause.onclick += eee => { eee.PreventDefault(); t.Audio.pause(); };

                                    t.Title.style.cursor = IStyle.CursorEnum.pointer;
                                    t.Title.onclick += eee =>
                                        {
                                            eee.PreventDefault();

                                            var playing = true;

                                            if (t.Audio.paused)
                                                playing = false;

                                            if (t.Audio.ended)
                                                playing = false;

                                            if (!playing)
                                                t.Audio.play();
                                            else
                                                t.Audio.pause();
                                        };

                                    DoubleAction SetProgress1 = p =>
                                    {

                                        t.Gradient3.style.width = System.Convert.ToInt32(800 * p) + "px";
                                        t.Gradient4.style.width = System.Convert.ToInt32(800 * p) + "px";
                                    };

                                    t.Gradient5.style.Opacity = 0.4;
                                    t.Gradient6.style.Opacity = 0.4;

                                    DoubleAction SetProgress2 = p =>
                                    {

                                        t.Gradient5.style.width = System.Convert.ToInt32(800 * p) + "px";
                                        t.Gradient6.style.width = System.Convert.ToInt32(800 * p) + "px";
                                    };

                                    AtTimer +=
                                        delegate
                                        {
                                            if (t.Audio.duration == 0)
                                            {
                                                t.Play.Hide();
                                                t.Pause.Hide();
                                                return;
                                            }
                                            else
                                            {

                                                var playing = true;

                                                if (t.Audio.paused)
                                                    playing = false;

                                                if (t.Audio.ended)
                                                    playing = false;

                                                if (!playing)
                                                    t.Title.style.color = Color.None;
                                                else
                                                    t.Title.style.color = Color.Blue;

                                                t.Play.Show(!playing);
                                                t.Pause.Show(playing);
                                            }

                                            var p = t.Audio.currentTime / t.Audio.duration;
                                            SetProgress1(p);
                                        };

                                    t.Waveform.onmouseout +=
                                        delegate
                                        {
                                            SetProgress2(0);
                                        };

                                    t.Waveform.onmousemove +=
                                        eee =>
                                        {
                                            SetProgress2(eee.OffsetX / 800.0);
                                        };

                                    t.Waveform.onclick +=
                                        eee =>
                                        {
                                            t.Audio.currentTime = t.Audio.duration * (eee.OffsetX / 800.0);
                                            t.Audio.play();
                                        };

                                    t.Waveform.style.cursor = IStyle.CursorEnum.pointer;

                                    SetProgress1(0);
                                    SetProgress2(0);

                                    t.Container.AttachTo(Tracks);
                                }
                            );


                            10000.AtDelay(
                                delegate
                                {
                                    More.MoreButton.FadeIn(0, 1000, null);
                                }
                            );
                        };


                        More.MoreButton.Hide();
                        More.Container.AttachTo(MyPagesInternal);

                        More.MoreButton.onclick += eee =>
                            {
                                eee.PreventDefault();
                                More.MoreButton.FadeOut(1, 300,
                                    delegate
                                    {
                                        page++;
                                        LoadCurrentPage();
                                    }
                                );
                            };

                        LoadCurrentPage();

                    }
                    else
                    {
                        //new PromotionWebApplication1.HTML.Audio.FromAssets.Track1 { controls = true }.AttachToDocument();
                        //new PromotionWebApplication1.HTML.Audio.FromWeb.Track1 { controls = true, autobuffer = true }.AttachToDocument();

                        var IsAvalonJavaScript = hash == "#/avalon.js";
                        var IsAvalonActionScript = hash == "#/avalon.as";
                        var IsAvalon = IsAvalonActionScript || IsAvalonJavaScript;

                        //if (IsAvalon)
                        //{

                        //{
                        //    var ccc = new IHTMLDiv();

                        //    ccc.style.position = IStyle.PositionEnum.absolute;
                        //    ccc.style.left = "15%";
                        //    ccc.style.right = "15%";
                        //    ccc.style.top = "15%";


                        //    var Now = DateTime.Now;

                        //    var CountDown = new CountDownGadgetConcept(CountDownGadget.Create)
                        //    {
                        //        ShowOnlyDays = true,
                        //        Event = new DateTime(2010, 5, 24, 23, 59, 50),

                        //    };

                        //    CountDown.Element.GadgetContainer.style.color = "#808080";
                        //    CountDown.Element.GadgetContainer.style.textShadow = "#E0E0E0 1px 1px 1px";


                        //    CountDown.Element.GadgetContainer.AttachTo(ccc);
                        //    CountDown.Element.GadgetContainer.FadeIn(3000, 2000, null);

                        //    ccc.AttachToDocument();
                        //}

                        {
                            var ccc = new IHTMLDiv();

                            ccc.style.position = IStyle.PositionEnum.absolute;
                            ccc.style.left = "50%";
                            ccc.style.top = "50%";
                            ccc.style.marginLeft = (-JSCSolutionsNETCarouselCanvas.DefaultWidth / 2) + "px";
                            ccc.style.marginTop = (-JSCSolutionsNETCarouselCanvas.DefaultHeight / 2) + "px";

                            ccc.style.SetSize(JSCSolutionsNETCarouselCanvas.DefaultWidth, JSCSolutionsNETCarouselCanvas.DefaultHeight);

                            ccc.AttachToDocument();

                            if (IsAvalonActionScript)
                            {
                                var alof = new UltraSprite();
                                alof.ToTransparentSprite();
                                alof.AttachSpriteTo(ccc);
                            }
                            else
                            {
                                var alo = new JSCSolutionsNETCarouselCanvas();
                                alo.Container.AttachToContainer(ccc);

                                alo.AtLogoClick +=
                                    delegate
                                    {
                                        //Native.Window.open("http://sourceforge.net/projects/jsc/", "_blank");
                                        Native.Window.open("/download", "_blank");
                                    };

                            }
                        }
                        //}
                        //else
                        //{
                        //    var cc = new HTML.Pages.FromAssets.Controls.Named.CenteredLogo_Kamma();

                        //    cc.Container.AttachToDocument();

                        //    // see: http://en.wikipedia.org/wiki/Perl_control_structures
                        //    // "Unless" == "if not"  ;)

                        //    IsMicrosoftInternetExplorer.YetIfNotThen(cc.TheLogoImage.BeginPulseAnimation).ButIfSoThen(cc.TheLogoImage.HideNowButShowAtDelay);
                        //}

                        var aa = new About();
                        aa.Service.innerText = gapageview;
                        aa.Container.AttachToDocument();

                    }
            }
        #endregion


            Analytics =
                __hash =>
                {
                    var __gahash = Native.Window.escape(__hash);
                    var __gapageview = gapathname + gasearch + __gahash;


                    "UA-13087448-1".ToGoogleAnalyticsTracker(
                        pageTracker =>
                        {
                            pageTracker._setDomainName(".jsc-solutions.net");
                            pageTracker._trackPageview(__gapageview);


                        }
                    );
                };

            Analytics(Native.Document.location.hash);


        }
Beispiel #26
0
 public int Edit(About model)
 {
     return(dal.Edit(model));
 }
Beispiel #27
0
 private void abouth(object sender, EventArgs e)
 {
     if (d == null)
         d = new About();
     d.Show();
 }
Beispiel #28
0
 public int Add(About model)
 {
     return(dal.Add(model));
 }
Beispiel #29
0
                public static void Show(Type WindowType,
                                        PortScanMode PortScanMode = PortScanMode.Normal)
                {
                    try
                    {
                        switch (WindowType)
                        {
                            case Type.About:
                                if (aboutForm == null || aboutPanel == null | aboutPanel.VisibleState==DockState.Unknown)
                                {
                                    aboutForm = new About(aboutPanel);
                                    aboutPanel = aboutForm;
                                    aboutForm.Show(frmMain.Default.pnlDock);
                                }
                                else
                                {
                                    aboutPanel.Focus();
                                    aboutPanel.Show();
                                    aboutPanel.BringToFront();
                                    aboutForm.Focus();
                                }
                                
                                break;
                            case Type.ADImport:
                                adimportForm = new ADImport(adimportPanel);
                                adimportPanel = adimportForm;
                                adimportPanel.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.Options:
                                optionsForm = new frmOptions(optionsPanel);
                                optionsForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.SaveAs:
                                saveasForm = new SaveAs(saveasPanel);
                                saveasPanel = saveasForm;
                                saveasForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.SSHTransfer:
                                sshtransferForm = new SSHTransfer(sshtransferPanel);
                                sshtransferPanel = sshtransferForm;
                                sshtransferForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.Update:
                                if (updateForm == null || updatePanel == null || updatePanel.VisibleState == DockState.Unknown)
                                {
                                    updateForm = new UI.Window.Update(updatePanel);
                                    updatePanel = updateForm;
                                    updateForm.Show(frmMain.Default.pnlDock);
                                }
                                else
                                {
                                    updatePanel.Focus();
                                    updatePanel.Show();
                                    updatePanel.BringToFront();
                                    updateForm.Focus();
                                }
                                break;
                            case Type.Help:
                                helpForm = new Help(helpPanel);
                                helpPanel = helpForm;
                                helpForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.ExternalApps:
                                if (externalappsForm == null || externalappsPanel == null || externalappsPanel.VisibleState == DockState.Unknown)
                                {
                                    externalappsForm = new ExternalApps(externalappsPanel);
                                    externalappsPanel = externalappsForm;
                                    externalappsForm.Show(frmMain.Default.pnlDock);
                                }
                                else
                                {
                                    externalappsPanel.Focus();
                                    externalappsPanel.Show();
                                    externalappsPanel.BringToFront();
                                    externalappsForm.Focus();
                                }
                                break;
                            case Type.PortScan:
                                portscanForm = new PortScan(portscanPanel, PortScanMode);
                                portscanPanel = portscanForm;
                                portscanForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.UltraVNCSC:
                                ultravncscForm = new UltraVNCSC(ultravncscPanel);
                                ultravncscPanel = ultravncscForm;
                                ultravncscForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.ComponentsCheck:
                                if (componentscheckForm == null || componentscheckPanel == null || componentscheckPanel.VisibleState == DockState.Unknown)
                                {
                                    componentscheckForm = new ComponentsCheck(componentscheckPanel);
                                    componentscheckPanel = componentscheckForm;
                                    componentscheckForm.Show(frmMain.Default.pnlDock);
                                }
                                else
                                {
                                    componentscheckPanel.Focus();
                                    componentscheckPanel.Show();
                                    componentscheckPanel.BringToFront();
                                    componentscheckForm.Focus();
                                }

                                break;
                            case Type.Announcement:
                                AnnouncementForm = new UI.Window.Announcement(AnnouncementPanel);
                                AnnouncementPanel = AnnouncementForm;
                                AnnouncementForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.ConnectionStatus:
                                connectionStatusForm = new ConnectionStatusForm();
                                componentscheckPanel = connectionStatusForm;
                                connectionStatusForm.Show(frmMain.Default.pnlDock);
                                break;
                            case Type.QuickText:

                                if (quicktextPanel != null && (quicktextForm == null || quicktextPanel == null | quicktextPanel.VisibleState == DockState.Unknown))
                                {
                                    quicktextForm = new QuickTextEdit(quicktextPanel);
                                    quicktextPanel = quicktextForm;
                                    quicktextForm.Show(frmMain.Default.pnlDock);
                                }
                                else
                                {
                                    quicktextPanel.Focus();
                                    quicktextPanel.Show();
                                    quicktextPanel.BringToFront();
                                    quicktextForm.Focus();
                                }
                                
                                break;
                        }
                    }
                    catch (Exception ex)
                    {
                        MessageCollector.AddMessage(MessageClass.ErrorMsg,
                                                    (string)
                                                    ("Show (Runtime.Windows) failed" +
                                                     Constants.vbNewLine + ex.Message), true);
                    }
                }
Beispiel #30
0
		static public void Show (Browser parent)
		{
			if (AboutBox == null)
				AboutBox = new About (parent);
			AboutBox.about.Show ();
		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConfigurationForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
     this.columnHeader_Series = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader_Title = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader_Season = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader_Episode = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader_OriginallyAired = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.contextMenuStrip_DetailsTree = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.hideToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ignoreOnScanToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.reScanMediaInfoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.watchedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unWatchedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.contextMenuStrip_InsertFields = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.toolTip_Help = new System.Windows.Forms.ToolTip(this.components);
     this.addLogo = new System.Windows.Forms.Button();
     this.btnLogoEdit = new System.Windows.Forms.Button();
     this.lnkLogoExport = new System.Windows.Forms.LinkLabel();
     this.btnrmvLogo = new System.Windows.Forms.Button();
     this.btnLogoTemplate = new System.Windows.Forms.Button();
     this.lstLogos = new System.Windows.Forms.ListBox();
     this.lnkLogoImp = new System.Windows.Forms.LinkLabel();
     this.buttonViewTemplates = new System.Windows.Forms.Button();
     this.textBox_PluginHomeName = new System.Windows.Forms.TextBox();
     this.checkBox_RandBanner = new System.Windows.Forms.CheckBox();
     this.nudWatchedAfter = new System.Windows.Forms.NumericUpDown();
     this.checkBox_Series_UseSortName = new System.Windows.Forms.CheckBox();
     this.checkBox_doFolderWatch = new System.Windows.Forms.CheckBox();
     this.chkAllowDeletes = new System.Windows.Forms.CheckBox();
     this.linkImpWatched = new System.Windows.Forms.LinkLabel();
     this.linkExWatched = new System.Windows.Forms.LinkLabel();
     this.checkbox_SortSpecials = new System.Windows.Forms.CheckBox();
     this.checkboxRatingDisplayStars = new System.Windows.Forms.CheckBox();
     this.checkBox_scanRemoteShares = new System.Windows.Forms.CheckBox();
     this.nudScanRemoteShareFrequency = new System.Windows.Forms.NumericUpDown();
     this.nudRecentlyAddedDays = new System.Windows.Forms.NumericUpDown();
     this.checkBox_FullSeriesRetrieval = new System.Windows.Forms.CheckBox();
     this.checkBox_AutoChooseSeries = new System.Windows.Forms.CheckBox();
     this.checkBox_OnlineSearch = new System.Windows.Forms.CheckBox();
     this.comboOnlineLang = new System.Windows.Forms.ComboBox();
     this.linkDelUpdateTime = new System.Windows.Forms.LinkLabel();
     this.txtMainMirror = new System.Windows.Forms.TextBox();
     this.chkBlankBanners = new System.Windows.Forms.CheckBox();
     this.checkDownloadEpisodeSnapshots = new System.Windows.Forms.CheckBox();
     this.txtUserID = new System.Windows.Forms.TextBox();
     this.checkBox_AutoChooseOrder = new System.Windows.Forms.CheckBox();
     this.checkBox_AutoOnlineDataRefresh = new System.Windows.Forms.CheckBox();
     this.checkBox_ScanOnStartup = new System.Windows.Forms.CheckBox();
     this.checkBox_AutoUpdateEpisodeRatings = new System.Windows.Forms.CheckBox();
     this.checkBox_AutoDownloadMissingArtwork = new System.Windows.Forms.CheckBox();
     this.checkboxAutoDownloadFanartSeriesName = new System.Windows.Forms.CheckBox();
     this.buttonStartImport = new System.Windows.Forms.Button();
     this.dataGridView_Replace = new System.Windows.Forms.DataGridView();
     this.resetExpr = new System.Windows.Forms.LinkLabel();
     this.buildExpr = new System.Windows.Forms.LinkLabel();
     this.linkImpParsingExpressions = new System.Windows.Forms.LinkLabel();
     this.linkExParsingExpressions = new System.Windows.Forms.LinkLabel();
     this.lblClearDB = new System.Windows.Forms.LinkLabel();
     this.textBox_dblocation = new System.Windows.Forms.TextBox();
     this.checkBox_ShowHidden = new System.Windows.Forms.CheckBox();
     this.linkMediaInfoUpdate = new System.Windows.Forms.LinkLabel();
     this.button_TestReparse = new System.Windows.Forms.Button();
     this.btnLogoDown = new System.Windows.Forms.Button();
     this.btnlogoUp = new System.Windows.Forms.Button();
     this.button1 = new System.Windows.Forms.Button();
     this.nudParentalControlTimeout = new System.Windows.Forms.NumericUpDown();
     this.toolTip_InfoHelp = new System.Windows.Forms.ToolTip(this.components);
     this.richTextBox_seriesFormat_Col1 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seriesFormat_Title = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seriesFormat_Col2 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seriesFormat_Subtitle = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seriesFormat_Main = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seriesFormat_Col3 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_episodeFormat_Col1 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_episodeFormat_Title = new System.Windows.Forms.RichTextBox();
     this.richTextBox_episodeFormat_Subtitle = new System.Windows.Forms.RichTextBox();
     this.richTextBox_episodeFormat_Main = new System.Windows.Forms.RichTextBox();
     this.richTextBox_episodeFormat_Col2 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_episodeFormat_Col3 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seasonFormat_Title = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seasonFormat_Col2 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seasonFormat_Subtitle = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seasonFormat_Col1 = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seasonFormat_Main = new System.Windows.Forms.RichTextBox();
     this.richTextBox_seasonFormat_Col3 = new System.Windows.Forms.RichTextBox();
     this.chkUseRegionalDateFormatString = new System.Windows.Forms.CheckBox();
     this.checkBox_Episode_OnlyShowLocalFiles = new System.Windows.Forms.CheckBox();
     this.checkBox_Episode_HideUnwatchedThumbnail = new System.Windows.Forms.CheckBox();
     this.checkBox_Episode_HideUnwatchedSummary = new System.Windows.Forms.CheckBox();
     this.numericUpDownImportDelay = new System.Windows.Forms.NumericUpDown();
     this.dbOptChkBoxPlayOutOfOrderCheck = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.dbOptionSQLLogging = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.dbOptChkBoxCountEmptyFutureEps = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.dbOptionCheckBoxMarkRatedEpsAsWatched = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.optionAsk2Rate = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.splitMain_Log = new System.Windows.Forms.SplitContainer();
     this.tabControl_Details = new System.Windows.Forms.TabControl();
     this.tabPage_Details = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.treeView_Library = new System.Windows.Forms.TreeView();
     this.pictureBox_SeriesPoster = new System.Windows.Forms.PictureBox();
     this.comboBox_PosterSelection = new System.Windows.Forms.ComboBox();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.detailsPropertyBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.pictureBox_Series = new System.Windows.Forms.PictureBox();
     this.comboBox_BannerSelection = new System.Windows.Forms.ComboBox();
     this.panDBLocation = new System.Windows.Forms.Panel();
     this.button_dbbrowse = new System.Windows.Forms.Button();
     this.label28 = new System.Windows.Forms.Label();
     this.tabPage_Import = new System.Windows.Forms.TabPage();
     this.splitContainer_SettingsOutput = new System.Windows.Forms.SplitContainer();
     this.splitContainerImportSettings = new System.Windows.Forms.SplitContainer();
     this.treeView_Settings = new System.Windows.Forms.TreeView();
     this.panel_Expressions = new System.Windows.Forms.Panel();
     this.linkExpressionHelp = new System.Windows.Forms.LinkLabel();
     this.label70 = new System.Windows.Forms.Label();
     this.dataGridView_Expressions = new System.Windows.Forms.DataGridView();
     this.button_MoveExpUp = new System.Windows.Forms.Button();
     this.button_MoveExpDown = new System.Windows.Forms.Button();
     this.panel_StringReplacements = new System.Windows.Forms.Panel();
     this.linkLabelResetStringReplacements = new System.Windows.Forms.LinkLabel();
     this.linkLabelImportStringReplacements = new System.Windows.Forms.LinkLabel();
     this.linkLabelExportStringReplacements = new System.Windows.Forms.LinkLabel();
     this.label69 = new System.Windows.Forms.Label();
     this.panel_ImportPathes = new System.Windows.Forms.Panel();
     this.label68 = new System.Windows.Forms.Label();
     this.dataGridView_ImportPathes = new System.Windows.Forms.DataGridView();
     this.listView_ParsingResults = new System.Windows.Forms.ListView();
     this.FileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.ParsedSeriesName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SeasonID = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.EpisodeID = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.EpisodeTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.tabOnlineData = new System.Windows.Forms.TabPage();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.panel_OnlineData = new System.Windows.Forms.Panel();
     this.buttonArtworkDownloadLimits = new System.Windows.Forms.Button();
     this.dbOptionCheckBox1 = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.label18 = new System.Windows.Forms.Label();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.lblImportDelaySecs = new System.Windows.Forms.Label();
     this.lblImportDelayCaption = new System.Windows.Forms.Label();
     this.checkBox_AutoUpdateAllFanart = new System.Windows.Forms.CheckBox();
     this.label73 = new System.Windows.Forms.Label();
     this.spinMaxFanarts = new System.Windows.Forms.NumericUpDown();
     this.label72 = new System.Windows.Forms.Label();
     this.label71 = new System.Windows.Forms.Label();
     this.cboFanartResolution = new System.Windows.Forms.ComboBox();
     this.chkAutoDownloadFanart = new System.Windows.Forms.CheckBox();
     this.linkAccountID = new System.Windows.Forms.LinkLabel();
     this.label2 = new System.Windows.Forms.Label();
     this.numericUpDown_AutoOnlineDataRefresh = new System.Windows.Forms.NumericUpDown();
     this.label54 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.tabFollwit = new System.Windows.Forms.TabPage();
     this.follwitSettingsPanel1 = new WindowPlugins.GUITVSeries.FollwitTv.FollwitSettingsPanel();
     this.tabPage_MP_DisplayControl = new System.Windows.Forms.TabPage();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.dbOptionCheckBox3 = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.lblRecentAddedDays = new System.Windows.Forms.Label();
     this.cbNewEpisodeThumbIndicator = new System.Windows.Forms.ComboBox();
     this.label17 = new System.Windows.Forms.Label();
     this.laOnPlaySeriesOrSeasonAction = new System.Windows.Forms.Label();
     this.cbOnPlaySeriesOrSeasonAction = new System.Windows.Forms.ComboBox();
     this.dbOptChkBoxScanFullscreenVideo = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.dbOptionCheckBox2 = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.dbOptionCheckBoxSubstituteMissingArtwork = new WindowPlugins.GUITVSeries.Configuration.DBOptionCheckBox();
     this.label77 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.label75 = new System.Windows.Forms.Label();
     this.numericUpDownArtworkDelay = new System.Windows.Forms.NumericUpDown();
     this.label74 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.numericUpDownBackdropDelay = new System.Windows.Forms.NumericUpDown();
     this.label39 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.tab_view = new System.Windows.Forms.TabPage();
     this.playlistSettings = new WindowPlugins.GUITVSeries.Configuration.PlaylistSettings();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.label19 = new System.Windows.Forms.Label();
     this.buttonPinCode = new System.Windows.Forms.Button();
     this.buttonEditView = new System.Windows.Forms.Button();
     this.checkBoxParentalControl = new System.Windows.Forms.CheckBox();
     this.label25 = new System.Windows.Forms.Label();
     this.checkCurViewEnabled = new System.Windows.Forms.CheckBox();
     this.lnkResetView = new System.Windows.Forms.LinkLabel();
     this.btnRemoveView = new System.Windows.Forms.Button();
     this.view_selStepsList = new System.Windows.Forms.ListBox();
     this.btnAddView = new System.Windows.Forms.Button();
     this._availViews = new System.Windows.Forms.ListBox();
     this.label1 = new System.Windows.Forms.Label();
     this.view_selectedName = new System.Windows.Forms.TextBox();
     this.tabLogoRules = new System.Windows.Forms.TabPage();
     this.label65 = new System.Windows.Forms.Label();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.btnLogoDeleteAll = new System.Windows.Forms.Button();
     this.tabFormattingRules = new System.Windows.Forms.TabPage();
     this.label64 = new System.Windows.Forms.Label();
     this.formattingConfiguration1 = new WindowPlugins.GUITVSeries.Configuration.FormattingConfiguration();
     this.tabLayoutSettings = new System.Windows.Forms.TabPage();
     this.label37 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.tabAbout = new System.Windows.Forms.TabPage();
     this.aboutScreen = new WindowPlugins.GUITVSeries.About();
     this.listBox_Log = new System.Windows.Forms.ListBox();
     this.contextMenuStrip_DetailsTree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudWatchedAfter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudScanRemoteShareFrequency)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudRecentlyAddedDays)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Replace)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudParentalControlTimeout)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownImportDelay)).BeginInit();
     this.splitMain_Log.Panel1.SuspendLayout();
     this.splitMain_Log.Panel2.SuspendLayout();
     this.splitMain_Log.SuspendLayout();
     this.tabControl_Details.SuspendLayout();
     this.tabPage_Details.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_SeriesPoster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.detailsPropertyBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Series)).BeginInit();
     this.panDBLocation.SuspendLayout();
     this.tabPage_Import.SuspendLayout();
     this.splitContainer_SettingsOutput.Panel1.SuspendLayout();
     this.splitContainer_SettingsOutput.Panel2.SuspendLayout();
     this.splitContainer_SettingsOutput.SuspendLayout();
     this.splitContainerImportSettings.Panel1.SuspendLayout();
     this.splitContainerImportSettings.Panel2.SuspendLayout();
     this.splitContainerImportSettings.SuspendLayout();
     this.panel_Expressions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Expressions)).BeginInit();
     this.panel_StringReplacements.SuspendLayout();
     this.panel_ImportPathes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView_ImportPathes)).BeginInit();
     this.tabOnlineData.SuspendLayout();
     this.groupBox12.SuspendLayout();
     this.panel_OnlineData.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaxFanarts)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_AutoOnlineDataRefresh)).BeginInit();
     this.tabFollwit.SuspendLayout();
     this.tabPage_MP_DisplayControl.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownArtworkDelay)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownBackdropDelay)).BeginInit();
     this.tab_view.SuspendLayout();
     this.groupBox8.SuspendLayout();
     this.tabLogoRules.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.tabFormattingRules.SuspendLayout();
     this.tabLayoutSettings.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.tabAbout.SuspendLayout();
     this.SuspendLayout();
     //
     // columnHeader_Series
     //
     this.columnHeader_Series.Text = "Series";
     this.columnHeader_Series.Width = 100;
     //
     // columnHeader_Title
     //
     this.columnHeader_Title.Text = "Episode Title";
     this.columnHeader_Title.Width = 196;
     //
     // columnHeader_Season
     //
     this.columnHeader_Season.Text = "Season";
     //
     // columnHeader_Episode
     //
     this.columnHeader_Episode.Text = "Episode";
     this.columnHeader_Episode.Width = 62;
     //
     // columnHeader_OriginallyAired
     //
     this.columnHeader_OriginallyAired.Text = "Aired";
     this.columnHeader_OriginallyAired.Width = 89;
     //
     // openFileDialog
     //
     this.openFileDialog.FileName = "openFileDialog";
     //
     // contextMenuStrip_DetailsTree
     //
     this.contextMenuStrip_DetailsTree.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.hideToolStripMenuItem,
     this.ignoreOnScanToolStripMenuItem,
     this.toolStripSeparator4,
     this.deleteToolStripMenuItem,
     this.updateToolStripMenuItem,
     this.reScanMediaInfoToolStripMenuItem,
     this.toolStripSeparator2,
     this.watchedToolStripMenuItem,
     this.unWatchedToolStripMenuItem,
     this.toolStripSeparator1});
     this.contextMenuStrip_DetailsTree.Name = "contextMenuStrip_DetailsTree";
     this.contextMenuStrip_DetailsTree.Size = new System.Drawing.Size(177, 176);
     this.contextMenuStrip_DetailsTree.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_DetailsTree_Opening);
     this.contextMenuStrip_DetailsTree.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.contextMenuStrip_DetailsTree_ItemClicked);
     //
     // hideToolStripMenuItem
     //
     this.hideToolStripMenuItem.Name = "hideToolStripMenuItem";
     this.hideToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.hideToolStripMenuItem.Tag = "hide";
     this.hideToolStripMenuItem.Text = "Hide";
     //
     // ignoreOnScanToolStripMenuItem
     //
     this.ignoreOnScanToolStripMenuItem.CheckOnClick = true;
     this.ignoreOnScanToolStripMenuItem.Name = "ignoreOnScanToolStripMenuItem";
     this.ignoreOnScanToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.ignoreOnScanToolStripMenuItem.Tag = "scanignore";
     this.ignoreOnScanToolStripMenuItem.Text = "Ignore on Scan";
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(173, 6);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.deleteToolStripMenuItem.Tag = "delete";
     this.deleteToolStripMenuItem.Text = "Delete...";
     //
     // updateToolStripMenuItem
     //
     this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
     this.updateToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.updateToolStripMenuItem.Tag = "update";
     this.updateToolStripMenuItem.Text = "Update";
     //
     // reScanMediaInfoToolStripMenuItem
     //
     this.reScanMediaInfoToolStripMenuItem.Name = "reScanMediaInfoToolStripMenuItem";
     this.reScanMediaInfoToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.reScanMediaInfoToolStripMenuItem.Tag = "mediainfo";
     this.reScanMediaInfoToolStripMenuItem.Text = "Re-Scan MediaInfo";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(173, 6);
     //
     // watchedToolStripMenuItem
     //
     this.watchedToolStripMenuItem.Name = "watchedToolStripMenuItem";
     this.watchedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.watchedToolStripMenuItem.Tag = "watched";
     this.watchedToolStripMenuItem.Text = "Set As Watched";
     //
     // unWatchedToolStripMenuItem
     //
     this.unWatchedToolStripMenuItem.Name = "unWatchedToolStripMenuItem";
     this.unWatchedToolStripMenuItem.Size = new System.Drawing.Size(176, 22);
     this.unWatchedToolStripMenuItem.Tag = "unwatched";
     this.unWatchedToolStripMenuItem.Text = "Set As Un-Watched";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(173, 6);
     //
     // contextMenuStrip_InsertFields
     //
     this.contextMenuStrip_InsertFields.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.HorizontalStackWithOverflow;
     this.contextMenuStrip_InsertFields.Name = "contextMenuStrip_SeriesFields";
     this.contextMenuStrip_InsertFields.Size = new System.Drawing.Size(61, 4);
     this.contextMenuStrip_InsertFields.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_SeriesFields_Opening);
     this.contextMenuStrip_InsertFields.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.contextMenuStrip_SeriesFields_ItemClicked);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "info.png");
     this.imageList1.Images.SetKeyName(1, "computer.png");
     this.imageList1.Images.SetKeyName(2, "view.png");
     this.imageList1.Images.SetKeyName(3, "table.png");
     this.imageList1.Images.SetKeyName(4, "information.png");
     this.imageList1.Images.SetKeyName(5, "logos.png");
     this.imageList1.Images.SetKeyName(6, "format.png");
     this.imageList1.Images.SetKeyName(7, "Downloader.png");
     this.imageList1.Images.SetKeyName(8, "Internet.png");
     this.imageList1.Images.SetKeyName(9, "Settings.png");
     this.imageList1.Images.SetKeyName(10, "Netvibes.png");
     this.imageList1.Images.SetKeyName(11, "trakt.png");
     //
     // addLogo
     //
     this.addLogo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.addLogo.Location = new System.Drawing.Point(732, 564);
     this.addLogo.Name = "addLogo";
     this.addLogo.Size = new System.Drawing.Size(75, 23);
     this.addLogo.TabIndex = 9;
     this.addLogo.Text = "&Add...";
     this.toolTip_Help.SetToolTip(this.addLogo, resources.GetString("addLogo.ToolTip"));
     this.addLogo.UseVisualStyleBackColor = true;
     this.addLogo.Click += new System.EventHandler(this.addLogo_Click);
     //
     // btnLogoEdit
     //
     this.btnLogoEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnLogoEdit.Location = new System.Drawing.Point(651, 564);
     this.btnLogoEdit.Name = "btnLogoEdit";
     this.btnLogoEdit.Size = new System.Drawing.Size(75, 23);
     this.btnLogoEdit.TabIndex = 8;
     this.btnLogoEdit.Text = "&Edit...";
     this.toolTip_Help.SetToolTip(this.btnLogoEdit, "Click to edit the selected logo rule in list");
     this.btnLogoEdit.UseVisualStyleBackColor = true;
     this.btnLogoEdit.Click += new System.EventHandler(this.btnLogoEdit_Click);
     //
     // lnkLogoExport
     //
     this.lnkLogoExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lnkLogoExport.Location = new System.Drawing.Point(145, 569);
     this.lnkLogoExport.Name = "lnkLogoExport";
     this.lnkLogoExport.Size = new System.Drawing.Size(51, 13);
     this.lnkLogoExport.TabIndex = 5;
     this.lnkLogoExport.TabStop = true;
     this.lnkLogoExport.Text = "Export...";
     this.lnkLogoExport.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip_Help.SetToolTip(this.lnkLogoExport, "Click to export logo rules to file");
     this.lnkLogoExport.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkLogoExport_LinkClicked);
     //
     // btnrmvLogo
     //
     this.btnrmvLogo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnrmvLogo.Location = new System.Drawing.Point(484, 564);
     this.btnrmvLogo.Name = "btnrmvLogo";
     this.btnrmvLogo.Size = new System.Drawing.Size(75, 23);
     this.btnrmvLogo.TabIndex = 7;
     this.btnrmvLogo.Text = "&Delete";
     this.toolTip_Help.SetToolTip(this.btnrmvLogo, "Click to remove the selected logo rule in list");
     this.btnrmvLogo.UseVisualStyleBackColor = true;
     this.btnrmvLogo.Click += new System.EventHandler(this.btnrmvLogo_Click);
     //
     // btnLogoTemplate
     //
     this.btnLogoTemplate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnLogoTemplate.Location = new System.Drawing.Point(7, 565);
     this.btnLogoTemplate.Name = "btnLogoTemplate";
     this.btnLogoTemplate.Size = new System.Drawing.Size(75, 23);
     this.btnLogoTemplate.TabIndex = 3;
     this.btnLogoTemplate.Text = "&Templates...";
     this.toolTip_Help.SetToolTip(this.btnLogoTemplate, "Click button to select from a pre-defined list of logo templates.\r\nA Logo package" +
     " must be installed to display logos succesfully in Media Portal");
     this.btnLogoTemplate.UseVisualStyleBackColor = true;
     this.btnLogoTemplate.Click += new System.EventHandler(this.btnLogoTemplate_Click);
     //
     // lstLogos
     //
     this.lstLogos.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lstLogos.FormattingEnabled = true;
     this.lstLogos.HorizontalScrollbar = true;
     this.lstLogos.Location = new System.Drawing.Point(7, 19);
     this.lstLogos.Name = "lstLogos";
     this.lstLogos.ScrollAlwaysVisible = true;
     this.lstLogos.Size = new System.Drawing.Size(800, 511);
     this.lstLogos.TabIndex = 0;
     this.toolTip_Help.SetToolTip(this.lstLogos, "Contains the list of Logo rules defined to display in Media Portal");
     //
     // lnkLogoImp
     //
     this.lnkLogoImp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lnkLogoImp.Location = new System.Drawing.Point(92, 569);
     this.lnkLogoImp.Name = "lnkLogoImp";
     this.lnkLogoImp.Size = new System.Drawing.Size(51, 13);
     this.lnkLogoImp.TabIndex = 4;
     this.lnkLogoImp.TabStop = true;
     this.lnkLogoImp.Text = "Import...";
     this.lnkLogoImp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip_Help.SetToolTip(this.lnkLogoImp, "Click to import logo rules from file");
     this.lnkLogoImp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkLogoImp_LinkClicked);
     //
     // buttonViewTemplates
     //
     this.buttonViewTemplates.Location = new System.Drawing.Point(26, 292);
     this.buttonViewTemplates.Name = "buttonViewTemplates";
     this.buttonViewTemplates.Size = new System.Drawing.Size(75, 23);
     this.buttonViewTemplates.TabIndex = 9;
     this.buttonViewTemplates.Text = "&Templates...";
     this.toolTip_Help.SetToolTip(this.buttonViewTemplates, "Click to select a pre-defined View Filter from a list.");
     this.buttonViewTemplates.UseVisualStyleBackColor = true;
     this.buttonViewTemplates.Click += new System.EventHandler(this.buttonViewTemplates_Click);
     //
     // textBox_PluginHomeName
     //
     this.textBox_PluginHomeName.Location = new System.Drawing.Point(159, 20);
     this.textBox_PluginHomeName.Name = "textBox_PluginHomeName";
     this.textBox_PluginHomeName.Size = new System.Drawing.Size(164, 20);
     this.textBox_PluginHomeName.TabIndex = 1;
     this.toolTip_Help.SetToolTip(this.textBox_PluginHomeName, "Enter the name for the plug-in as listed in the Media Portal Home screen");
     this.textBox_PluginHomeName.TextChanged += new System.EventHandler(this.textBox_PluginHomeName_TextChanged);
     //
     // checkBox_RandBanner
     //
     this.checkBox_RandBanner.AutoSize = true;
     this.checkBox_RandBanner.Location = new System.Drawing.Point(404, 169);
     this.checkBox_RandBanner.Name = "checkBox_RandBanner";
     this.checkBox_RandBanner.Size = new System.Drawing.Size(261, 17);
     this.checkBox_RandBanner.TabIndex = 33;
     this.checkBox_RandBanner.Text = "&Display random Artwork in series and season view";
     this.toolTip_Help.SetToolTip(this.checkBox_RandBanner, "Enable this option to display a random banner when entering series/season view");
     this.checkBox_RandBanner.UseVisualStyleBackColor = true;
     this.checkBox_RandBanner.CheckedChanged += new System.EventHandler(this.checkBox_RandBanner_CheckedChanged);
     //
     // nudWatchedAfter
     //
     this.nudWatchedAfter.Location = new System.Drawing.Point(159, 46);
     this.nudWatchedAfter.Name = "nudWatchedAfter";
     this.nudWatchedAfter.Size = new System.Drawing.Size(44, 20);
     this.nudWatchedAfter.TabIndex = 3;
     this.toolTip_Help.SetToolTip(this.nudWatchedAfter, "Enter the percentage of the episode that has been viewed to consider it as watche" +
     "d.\r\nEpisode foreground color will change to indicated that it is watched");
     this.nudWatchedAfter.Value = new decimal(new int[] {
     95,
     0,
     0,
     0});
     this.nudWatchedAfter.ValueChanged += new System.EventHandler(this.nudWatchedAfter_ValueChanged);
     //
     // checkBox_Series_UseSortName
     //
     this.checkBox_Series_UseSortName.AutoSize = true;
     this.checkBox_Series_UseSortName.Location = new System.Drawing.Point(11, 238);
     this.checkBox_Series_UseSortName.Name = "checkBox_Series_UseSortName";
     this.checkBox_Series_UseSortName.Size = new System.Drawing.Size(304, 17);
     this.checkBox_Series_UseSortName.TabIndex = 16;
     this.checkBox_Series_UseSortName.Text = "So&rt Series using the Sort Name instead of the Pretty Name";
     this.toolTip_Help.SetToolTip(this.checkBox_Series_UseSortName, "Enable to sort Series names using the Sort (Original) Name found in the Details t" +
     "ab");
     this.checkBox_Series_UseSortName.UseVisualStyleBackColor = true;
     this.checkBox_Series_UseSortName.CheckedChanged += new System.EventHandler(this.checkBox_Series_UseSortName_CheckedChanged);
     //
     // checkBox_doFolderWatch
     //
     this.checkBox_doFolderWatch.AutoSize = true;
     this.checkBox_doFolderWatch.Location = new System.Drawing.Point(11, 261);
     this.checkBox_doFolderWatch.Name = "checkBox_doFolderWatch";
     this.checkBox_doFolderWatch.Size = new System.Drawing.Size(263, 17);
     this.checkBox_doFolderWatch.TabIndex = 17;
     this.checkBox_doFolderWatch.Text = "Watch my &Import folders for changes automatically";
     this.toolTip_Help.SetToolTip(this.checkBox_doFolderWatch, "Enable this option to allow the plug-in to monitor import folders for new, delete" +
     "d and modified TV Series and update the database accordingly.\r\nThis option only " +
     "works from with-in Media Portal");
     this.checkBox_doFolderWatch.UseVisualStyleBackColor = true;
     this.checkBox_doFolderWatch.CheckedChanged += new System.EventHandler(this.checkBox_doFolderWatch_CheckedChanged);
     //
     // chkAllowDeletes
     //
     this.chkAllowDeletes.AutoSize = true;
     this.chkAllowDeletes.Location = new System.Drawing.Point(404, 261);
     this.chkAllowDeletes.Name = "chkAllowDeletes";
     this.chkAllowDeletes.Size = new System.Drawing.Size(269, 17);
     this.chkAllowDeletes.TabIndex = 37;
     this.chkAllowDeletes.Text = "Allow user to delete &files from the GUI context menu";
     this.toolTip_Help.SetToolTip(this.chkAllowDeletes, "Enable this option to allow users to delete items using the context menu from wit" +
     "h-in Media Portal");
     this.chkAllowDeletes.UseVisualStyleBackColor = true;
     this.chkAllowDeletes.CheckedChanged += new System.EventHandler(this.chkAllowDeletes_CheckedChanged);
     //
     // linkImpWatched
     //
     this.linkImpWatched.AutoSize = true;
     this.linkImpWatched.Location = new System.Drawing.Point(402, 50);
     this.linkImpWatched.Name = "linkImpWatched";
     this.linkImpWatched.Size = new System.Drawing.Size(120, 13);
     this.linkImpWatched.TabIndex = 29;
     this.linkImpWatched.TabStop = true;
     this.linkImpWatched.Text = "Import Watched Flags...";
     this.toolTip_Help.SetToolTip(this.linkImpWatched, "Import the \'Watched\' Status of all episodes from file");
     this.linkImpWatched.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkImpWatched_LinkClicked);
     //
     // linkExWatched
     //
     this.linkExWatched.AutoSize = true;
     this.linkExWatched.Location = new System.Drawing.Point(401, 71);
     this.linkExWatched.Name = "linkExWatched";
     this.linkExWatched.Size = new System.Drawing.Size(121, 13);
     this.linkExWatched.TabIndex = 30;
     this.linkExWatched.TabStop = true;
     this.linkExWatched.Text = "Export Watched Flags...";
     this.toolTip_Help.SetToolTip(this.linkExWatched, "Export the \'Watched\' Status of all episodes to file");
     this.linkExWatched.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkExWatched_LinkClicked);
     //
     // checkbox_SortSpecials
     //
     this.checkbox_SortSpecials.AutoSize = true;
     this.checkbox_SortSpecials.Location = new System.Drawing.Point(404, 123);
     this.checkbox_SortSpecials.Name = "checkbox_SortSpecials";
     this.checkbox_SortSpecials.Size = new System.Drawing.Size(239, 17);
     this.checkbox_SortSpecials.TabIndex = 31;
     this.checkbox_SortSpecials.Text = "Sort Specials in Episode list (Aired Order only)";
     this.toolTip_Help.SetToolTip(this.checkbox_SortSpecials, "Enable this option to sort specials in the main episode list by their correspondi" +
     "ng air date.\r\nNote: This will only work if the episode list is sorted by \'Aired " +
     "Order\'.");
     this.checkbox_SortSpecials.UseVisualStyleBackColor = true;
     this.checkbox_SortSpecials.CheckedChanged += new System.EventHandler(this.checkbox_SortSpecials_CheckedChanged);
     //
     // checkboxRatingDisplayStars
     //
     this.checkboxRatingDisplayStars.AutoSize = true;
     this.checkboxRatingDisplayStars.Location = new System.Drawing.Point(11, 146);
     this.checkboxRatingDisplayStars.Name = "checkboxRatingDisplayStars";
     this.checkboxRatingDisplayStars.Size = new System.Drawing.Size(143, 17);
     this.checkboxRatingDisplayStars.TabIndex = 12;
     this.checkboxRatingDisplayStars.Text = "Show 5 Star Rate Dialog";
     this.toolTip_Help.SetToolTip(this.checkboxRatingDisplayStars, "Enable this option to dislay a 5 Star Rate Dialog instead of 10 Stars, theTVDB.co" +
     "m accepts 10 Stars\r\nso 5 Stars will be rounded up");
     this.checkboxRatingDisplayStars.UseVisualStyleBackColor = true;
     this.checkboxRatingDisplayStars.CheckedChanged += new System.EventHandler(this.checkboxRatingDisplayStars_CheckedChanged);
     //
     // checkBox_scanRemoteShares
     //
     this.checkBox_scanRemoteShares.AutoSize = true;
     this.checkBox_scanRemoteShares.Location = new System.Drawing.Point(32, 284);
     this.checkBox_scanRemoteShares.Name = "checkBox_scanRemoteShares";
     this.checkBox_scanRemoteShares.Size = new System.Drawing.Size(149, 17);
     this.checkBox_scanRemoteShares.TabIndex = 18;
     this.checkBox_scanRemoteShares.Text = "Scan remote shares every";
     this.toolTip_Help.SetToolTip(this.checkBox_scanRemoteShares, "(Recommended) Instead of trying to setup a filesystem  watcher on a remote share " +
     "(hazardous), scan periodically");
     this.checkBox_scanRemoteShares.UseVisualStyleBackColor = true;
     this.checkBox_scanRemoteShares.CheckedChanged += new System.EventHandler(this.checkBox_scanRemoteShares_CheckedChanged);
     //
     // nudScanRemoteShareFrequency
     //
     this.nudScanRemoteShareFrequency.Location = new System.Drawing.Point(185, 284);
     this.nudScanRemoteShareFrequency.Maximum = new decimal(new int[] {
     60,
     0,
     0,
     0});
     this.nudScanRemoteShareFrequency.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.nudScanRemoteShareFrequency.Name = "nudScanRemoteShareFrequency";
     this.nudScanRemoteShareFrequency.Size = new System.Drawing.Size(44, 20);
     this.nudScanRemoteShareFrequency.TabIndex = 19;
     this.toolTip_Help.SetToolTip(this.nudScanRemoteShareFrequency, "Enter the percentage of the episode that has been viewed to consider it as watche" +
     "d.\r\nEpisode foreground color will change to indicated that it is watched");
     this.nudScanRemoteShareFrequency.Value = new decimal(new int[] {
     5,
     0,
     0,
     0});
     this.nudScanRemoteShareFrequency.ValueChanged += new System.EventHandler(this.nudScanRemoteShareFrequency_ValueChanged);
     //
     // nudRecentlyAddedDays
     //
     this.nudRecentlyAddedDays.Location = new System.Drawing.Point(259, 395);
     this.nudRecentlyAddedDays.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.nudRecentlyAddedDays.Name = "nudRecentlyAddedDays";
     this.nudRecentlyAddedDays.Size = new System.Drawing.Size(43, 20);
     this.nudRecentlyAddedDays.TabIndex = 26;
     this.toolTip_Help.SetToolTip(this.nudRecentlyAddedDays, "Select the number of days to look back in database for new episodes when displayi" +
     "ng the *NEW* stamp on series thumbs.");
     this.nudRecentlyAddedDays.Value = new decimal(new int[] {
     7,
     0,
     0,
     0});
     this.nudRecentlyAddedDays.ValueChanged += new System.EventHandler(this.nudRecentlyAddedDays_ValueChanged);
     //
     // checkBox_FullSeriesRetrieval
     //
     this.checkBox_FullSeriesRetrieval.AutoSize = true;
     this.checkBox_FullSeriesRetrieval.Location = new System.Drawing.Point(8, 236);
     this.checkBox_FullSeriesRetrieval.Name = "checkBox_FullSeriesRetrieval";
     this.checkBox_FullSeriesRetrieval.Size = new System.Drawing.Size(263, 17);
     this.checkBox_FullSeriesRetrieval.TabIndex = 17;
     this.checkBox_FullSeriesRetrieval.Text = "Download &Episode information for the whole series";
     this.toolTip_Help.SetToolTip(this.checkBox_FullSeriesRetrieval, "Enable this option to download data for all seasons and episodes available online" +
     " (takes longer).\r\nDisable to download data only for episodes local to this compu" +
     "ter");
     this.checkBox_FullSeriesRetrieval.UseVisualStyleBackColor = true;
     this.checkBox_FullSeriesRetrieval.CheckedChanged += new System.EventHandler(this.checkBox_FullSeriesRetrieval_CheckedChanged);
     //
     // checkBox_AutoChooseSeries
     //
     this.checkBox_AutoChooseSeries.AutoSize = true;
     this.checkBox_AutoChooseSeries.Location = new System.Drawing.Point(8, 190);
     this.checkBox_AutoChooseSeries.Name = "checkBox_AutoChooseSeries";
     this.checkBox_AutoChooseSeries.Size = new System.Drawing.Size(334, 17);
     this.checkBox_AutoChooseSeries.TabIndex = 15;
     this.checkBox_AutoChooseSeries.Text = "Automatically &choose Series when an exact match is found online";
     this.toolTip_Help.SetToolTip(this.checkBox_AutoChooseSeries, resources.GetString("checkBox_AutoChooseSeries.ToolTip"));
     this.checkBox_AutoChooseSeries.UseVisualStyleBackColor = true;
     this.checkBox_AutoChooseSeries.CheckedChanged += new System.EventHandler(this.checkBox_AutoChooseSeries_CheckedChanged);
     //
     // checkBox_OnlineSearch
     //
     this.checkBox_OnlineSearch.AutoSize = true;
     this.checkBox_OnlineSearch.Location = new System.Drawing.Point(8, 7);
     this.checkBox_OnlineSearch.Name = "checkBox_OnlineSearch";
     this.checkBox_OnlineSearch.Size = new System.Drawing.Size(314, 17);
     this.checkBox_OnlineSearch.TabIndex = 0;
     this.checkBox_OnlineSearch.Text = "&Download data from the TV Online Database (theTVDB.com)";
     this.toolTip_Help.SetToolTip(this.checkBox_OnlineSearch, "Enable this option to download data for TV Series including Banners and Episode t" +
     "humbnails.\r\nData can be manually entered or corrected in Details tab");
     this.checkBox_OnlineSearch.UseVisualStyleBackColor = true;
     this.checkBox_OnlineSearch.CheckedChanged += new System.EventHandler(this.checkBox_OnlineSearch_CheckedChanged);
     //
     // comboOnlineLang
     //
     this.comboOnlineLang.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboOnlineLang.FormattingEnabled = true;
     this.comboOnlineLang.Location = new System.Drawing.Point(127, 82);
     this.comboOnlineLang.Name = "comboOnlineLang";
     this.comboOnlineLang.Size = new System.Drawing.Size(121, 21);
     this.comboOnlineLang.TabIndex = 7;
     this.toolTip_Help.SetToolTip(this.comboOnlineLang, "Select the language to download TV Series information in, defaults to English");
     this.comboOnlineLang.SelectedIndexChanged += new System.EventHandler(this.comboOnlineLang_SelectedIndexChanged);
     //
     // linkDelUpdateTime
     //
     this.linkDelUpdateTime.AutoSize = true;
     this.linkDelUpdateTime.Location = new System.Drawing.Point(7, 571);
     this.linkDelUpdateTime.Name = "linkDelUpdateTime";
     this.linkDelUpdateTime.Size = new System.Drawing.Size(128, 13);
     this.linkDelUpdateTime.TabIndex = 34;
     this.linkDelUpdateTime.TabStop = true;
     this.linkDelUpdateTime.Text = "Clear Update Timestamps";
     this.toolTip_Help.SetToolTip(this.linkDelUpdateTime, "Click here to reset Timestamps for the last date-time data for series was updated" +
     " from the online database.\r\nThis will force a re-request of all data on next imp" +
     "ort");
     this.linkDelUpdateTime.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkDelUpdateTime_LinkClicked);
     //
     // txtMainMirror
     //
     this.txtMainMirror.Location = new System.Drawing.Point(127, 29);
     this.txtMainMirror.Name = "txtMainMirror";
     this.txtMainMirror.Size = new System.Drawing.Size(189, 20);
     this.txtMainMirror.TabIndex = 2;
     this.toolTip_Help.SetToolTip(this.txtMainMirror, "Download mirror for online database");
     this.txtMainMirror.TextChanged += new System.EventHandler(this.txtMainMirror_TextChanged);
     //
     // chkBlankBanners
     //
     this.chkBlankBanners.AutoSize = true;
     this.chkBlankBanners.Location = new System.Drawing.Point(10, 331);
     this.chkBlankBanners.Name = "chkBlankBanners";
     this.chkBlankBanners.Size = new System.Drawing.Size(389, 17);
     this.chkBlankBanners.TabIndex = 22;
     this.chkBlankBanners.Text = "Download Series WideBanners that contain no graphical or text series names";
     this.toolTip_Help.SetToolTip(this.chkBlankBanners, "Enable to download blank series widebanners as well as localized banners.");
     this.chkBlankBanners.UseVisualStyleBackColor = true;
     this.chkBlankBanners.CheckedChanged += new System.EventHandler(this.chkBlankBanners_CheckedChanged);
     //
     // checkDownloadEpisodeSnapshots
     //
     this.checkDownloadEpisodeSnapshots.AutoSize = true;
     this.checkDownloadEpisodeSnapshots.Location = new System.Drawing.Point(10, 308);
     this.checkDownloadEpisodeSnapshots.Name = "checkDownloadEpisodeSnapshots";
     this.checkDownloadEpisodeSnapshots.Size = new System.Drawing.Size(172, 17);
     this.checkDownloadEpisodeSnapshots.TabIndex = 21;
     this.checkDownloadEpisodeSnapshots.Text = "Download Episode &Thumbnails";
     this.toolTip_Help.SetToolTip(this.checkDownloadEpisodeSnapshots, "Enable to download Episode Thumbnails if available.");
     this.checkDownloadEpisodeSnapshots.UseVisualStyleBackColor = true;
     this.checkDownloadEpisodeSnapshots.CheckedChanged += new System.EventHandler(this.checkDownloadEpisodeSnapshots_CheckedChanged);
     //
     // txtUserID
     //
     this.txtUserID.Location = new System.Drawing.Point(127, 55);
     this.txtUserID.Name = "txtUserID";
     this.txtUserID.Size = new System.Drawing.Size(189, 20);
     this.txtUserID.TabIndex = 4;
     this.toolTip_Help.SetToolTip(this.txtUserID, "Enter you\'re theTVDB Account Identifier here (Note: this is NOT you\'re username)");
     this.txtUserID.TextChanged += new System.EventHandler(this.txtUserID_TextChanged);
     //
     // checkBox_AutoChooseOrder
     //
     this.checkBox_AutoChooseOrder.AutoSize = true;
     this.checkBox_AutoChooseOrder.Location = new System.Drawing.Point(8, 213);
     this.checkBox_AutoChooseOrder.Name = "checkBox_AutoChooseOrder";
     this.checkBox_AutoChooseOrder.Size = new System.Drawing.Size(331, 17);
     this.checkBox_AutoChooseOrder.TabIndex = 16;
     this.checkBox_AutoChooseOrder.Text = "Automatically choose Aired when multiple &orders are found online";
     this.toolTip_Help.SetToolTip(this.checkBox_AutoChooseOrder, "Enable this option to automatically select Aired order when multiple orders are f" +
     "ound online e.g. DVD or Absolute");
     this.checkBox_AutoChooseOrder.UseVisualStyleBackColor = true;
     this.checkBox_AutoChooseOrder.CheckedChanged += new System.EventHandler(this.checkBox_AutoChooseOrder_CheckedChanged);
     //
     // checkBox_AutoOnlineDataRefresh
     //
     this.checkBox_AutoOnlineDataRefresh.AutoSize = true;
     this.checkBox_AutoOnlineDataRefresh.Location = new System.Drawing.Point(8, 168);
     this.checkBox_AutoOnlineDataRefresh.Name = "checkBox_AutoOnlineDataRefresh";
     this.checkBox_AutoOnlineDataRefresh.Size = new System.Drawing.Size(328, 17);
     this.checkBox_AutoOnlineDataRefresh.TabIndex = 12;
     this.checkBox_AutoOnlineDataRefresh.Text = "A&utomatically download updated data from theTVDB.com every:";
     this.toolTip_Help.SetToolTip(this.checkBox_AutoOnlineDataRefresh, "Enable this option to make the plug-in automatically ask for a refresh of the onl" +
     "ine data every x hours");
     this.checkBox_AutoOnlineDataRefresh.UseVisualStyleBackColor = true;
     this.checkBox_AutoOnlineDataRefresh.CheckedChanged += new System.EventHandler(this.checkBox_AutoOnlineDataRefresh_CheckedChanged);
     //
     // checkBox_ScanOnStartup
     //
     this.checkBox_ScanOnStartup.AutoSize = true;
     this.checkBox_ScanOnStartup.Location = new System.Drawing.Point(8, 120);
     this.checkBox_ScanOnStartup.Name = "checkBox_ScanOnStartup";
     this.checkBox_ScanOnStartup.Size = new System.Drawing.Size(268, 17);
     this.checkBox_ScanOnStartup.TabIndex = 8;
     this.checkBox_ScanOnStartup.Text = "E&nable local/online scan when starting MediaPortal";
     this.toolTip_Help.SetToolTip(this.checkBox_ScanOnStartup, resources.GetString("checkBox_ScanOnStartup.ToolTip"));
     this.checkBox_ScanOnStartup.UseVisualStyleBackColor = true;
     this.checkBox_ScanOnStartup.CheckedChanged += new System.EventHandler(this.checkBox_ScanOnStartup_CheckedChanged);
     //
     // checkBox_AutoUpdateEpisodeRatings
     //
     this.checkBox_AutoUpdateEpisodeRatings.AutoSize = true;
     this.checkBox_AutoUpdateEpisodeRatings.Location = new System.Drawing.Point(8, 259);
     this.checkBox_AutoUpdateEpisodeRatings.Name = "checkBox_AutoUpdateEpisodeRatings";
     this.checkBox_AutoUpdateEpisodeRatings.Size = new System.Drawing.Size(348, 17);
     this.checkBox_AutoUpdateEpisodeRatings.TabIndex = 18;
     this.checkBox_AutoUpdateEpisodeRatings.Text = "Automatically update user episode ratings in addition to series ratings";
     this.toolTip_Help.SetToolTip(this.checkBox_AutoUpdateEpisodeRatings, "Only update user series ratings when unchecked.  Saves up to 3 minutes per scan.");
     this.checkBox_AutoUpdateEpisodeRatings.UseVisualStyleBackColor = true;
     this.checkBox_AutoUpdateEpisodeRatings.CheckedChanged += new System.EventHandler(this.checkBox_AutoUpdateEpisodeRatings_CheckedChanged);
     //
     // checkBox_AutoDownloadMissingArtwork
     //
     this.checkBox_AutoDownloadMissingArtwork.AutoSize = true;
     this.checkBox_AutoDownloadMissingArtwork.Location = new System.Drawing.Point(10, 378);
     this.checkBox_AutoDownloadMissingArtwork.Name = "checkBox_AutoDownloadMissingArtwork";
     this.checkBox_AutoDownloadMissingArtwork.Size = new System.Drawing.Size(337, 17);
     this.checkBox_AutoDownloadMissingArtwork.TabIndex = 24;
     this.checkBox_AutoDownloadMissingArtwork.Text = "Download missing artwork for existing series/season on local scan";
     this.toolTip_Help.SetToolTip(this.checkBox_AutoDownloadMissingArtwork, "Only update new artwork when unchecked.  This can help speed up import for large " +
     "collections.");
     this.checkBox_AutoDownloadMissingArtwork.UseVisualStyleBackColor = true;
     this.checkBox_AutoDownloadMissingArtwork.CheckedChanged += new System.EventHandler(this.checkBox_AutoDownloadMissingArtwork_CheckedChanged);
     //
     // checkboxAutoDownloadFanartSeriesName
     //
     this.checkboxAutoDownloadFanartSeriesName.AutoSize = true;
     this.checkboxAutoDownloadFanartSeriesName.Location = new System.Drawing.Point(35, 534);
     this.checkboxAutoDownloadFanartSeriesName.Name = "checkboxAutoDownloadFanartSeriesName";
     this.checkboxAutoDownloadFanartSeriesName.Size = new System.Drawing.Size(265, 17);
     this.checkboxAutoDownloadFanartSeriesName.TabIndex = 33;
     this.checkboxAutoDownloadFanartSeriesName.Text = "Download Fanart containing Series Names (Logos)";
     this.toolTip_Help.SetToolTip(this.checkboxAutoDownloadFanartSeriesName, "Enable to automatically download Fanart that contain series names in artwork, use" +
     "rs can\r\nstill choose Fanart that contain series names from the Fanart Chooser wi" +
     "ndow.");
     this.checkboxAutoDownloadFanartSeriesName.UseVisualStyleBackColor = true;
     this.checkboxAutoDownloadFanartSeriesName.CheckedChanged += new System.EventHandler(this.checkboxAutoDownloadFanartSeriesName_CheckedChanged);
     //
     // buttonStartImport
     //
     this.buttonStartImport.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonStartImport.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonStartImport.Location = new System.Drawing.Point(3, 3);
     this.buttonStartImport.Name = "buttonStartImport";
     this.buttonStartImport.Size = new System.Drawing.Size(867, 23);
     this.buttonStartImport.TabIndex = 4;
     this.buttonStartImport.Text = "&Start Import Wizard";
     this.toolTip_Help.SetToolTip(this.buttonStartImport, "Click to Start Importing data from the Online Database, updates data for all seri" +
     "es, seasons and episodes new and old");
     this.buttonStartImport.UseVisualStyleBackColor = true;
     this.buttonStartImport.Click += new System.EventHandler(this.buttonStartImport_Click);
     //
     // dataGridView_Replace
     //
     this.dataGridView_Replace.AllowUserToResizeColumns = false;
     this.dataGridView_Replace.AllowUserToResizeRows = false;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_Replace.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridView_Replace.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView_Replace.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView_Replace.BackgroundColor = System.Drawing.SystemColors.Window;
     this.dataGridView_Replace.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Replace.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridView_Replace.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Replace.DefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridView_Replace.Location = new System.Drawing.Point(0, 75);
     this.dataGridView_Replace.MultiSelect = false;
     this.dataGridView_Replace.Name = "dataGridView_Replace";
     this.dataGridView_Replace.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Replace.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.dataGridView_Replace.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders;
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_Replace.RowsDefaultCellStyle = dataGridViewCellStyle5;
     this.dataGridView_Replace.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_Replace.RowTemplate.Height = 18;
     this.dataGridView_Replace.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Replace.Size = new System.Drawing.Size(124, 77);
     this.dataGridView_Replace.StandardTab = true;
     this.dataGridView_Replace.TabIndex = 0;
     this.toolTip_Help.SetToolTip(this.dataGridView_Replace, "Strings that are to be replaced before or after parsing data to online database l" +
     "ookup");
     this.dataGridView_Replace.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_Replace_CellEndEdit);
     this.dataGridView_Replace.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridView_Replace_DefaultValuesNeeded);
     this.dataGridView_Replace.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridView_Replace_UserDeletedRow);
     //
     // resetExpr
     //
     this.resetExpr.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.resetExpr.AutoSize = true;
     this.resetExpr.Location = new System.Drawing.Point(126, 180);
     this.resetExpr.Name = "resetExpr";
     this.resetExpr.Size = new System.Drawing.Size(35, 13);
     this.resetExpr.TabIndex = 3;
     this.resetExpr.TabStop = true;
     this.resetExpr.Text = "Reset";
     this.toolTip_Help.SetToolTip(this.resetExpr, "Removes all custom defined expressions and restores the plug-in defaults");
     this.resetExpr.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.resetExpr_LinkClicked);
     //
     // buildExpr
     //
     this.buildExpr.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buildExpr.AutoSize = true;
     this.buildExpr.Location = new System.Drawing.Point(126, 219);
     this.buildExpr.Name = "buildExpr";
     this.buildExpr.Size = new System.Drawing.Size(30, 13);
     this.buildExpr.TabIndex = 4;
     this.buildExpr.TabStop = true;
     this.buildExpr.Text = "Build";
     this.toolTip_Help.SetToolTip(this.buildExpr, "A Simple Expression Builder that can be used to help the plug-in understand your " +
     "TV Shows file structure");
     this.buildExpr.Visible = false;
     this.buildExpr.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.buildExpr_LinkClicked);
     //
     // linkImpParsingExpressions
     //
     this.linkImpParsingExpressions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkImpParsingExpressions.AutoSize = true;
     this.linkImpParsingExpressions.Location = new System.Drawing.Point(126, 139);
     this.linkImpParsingExpressions.Name = "linkImpParsingExpressions";
     this.linkImpParsingExpressions.Size = new System.Drawing.Size(36, 13);
     this.linkImpParsingExpressions.TabIndex = 7;
     this.linkImpParsingExpressions.TabStop = true;
     this.linkImpParsingExpressions.Text = "Import";
     this.toolTip_Help.SetToolTip(this.linkImpParsingExpressions, "Import Parsing Expressions from a file");
     this.linkImpParsingExpressions.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkImpParsingExpressions_LinkClicked);
     //
     // linkExParsingExpressions
     //
     this.linkExParsingExpressions.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkExParsingExpressions.AutoSize = true;
     this.linkExParsingExpressions.Location = new System.Drawing.Point(126, 159);
     this.linkExParsingExpressions.Name = "linkExParsingExpressions";
     this.linkExParsingExpressions.Size = new System.Drawing.Size(37, 13);
     this.linkExParsingExpressions.TabIndex = 8;
     this.linkExParsingExpressions.TabStop = true;
     this.linkExParsingExpressions.Text = "Export";
     this.toolTip_Help.SetToolTip(this.linkExParsingExpressions, "Export Parsing Expressions to a file");
     this.linkExParsingExpressions.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkExParsingExpressions_LinkClicked);
     //
     // lblClearDB
     //
     this.lblClearDB.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.lblClearDB.AutoSize = true;
     this.lblClearDB.Location = new System.Drawing.Point(582, 5);
     this.lblClearDB.Name = "lblClearDB";
     this.lblClearDB.Size = new System.Drawing.Size(36, 13);
     this.lblClearDB.TabIndex = 3;
     this.lblClearDB.TabStop = true;
     this.lblClearDB.Text = "Empty";
     this.toolTip_Help.SetToolTip(this.lblClearDB, "Deletes all Series, Season and Episode information from the local database");
     this.lblClearDB.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lblClearDB_LinkClicked);
     //
     // textBox_dblocation
     //
     this.textBox_dblocation.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox_dblocation.Location = new System.Drawing.Point(198, 2);
     this.textBox_dblocation.Name = "textBox_dblocation";
     this.textBox_dblocation.ReadOnly = true;
     this.textBox_dblocation.Size = new System.Drawing.Size(346, 20);
     this.textBox_dblocation.TabIndex = 1;
     this.toolTip_Help.SetToolTip(this.textBox_dblocation, "The Database Path used by MP-TVSeries to store all TV information and settings fo" +
     "r this plugin");
     //
     // checkBox_ShowHidden
     //
     this.checkBox_ShowHidden.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBox_ShowHidden.AutoSize = true;
     this.checkBox_ShowHidden.Location = new System.Drawing.Point(3, 623);
     this.checkBox_ShowHidden.Name = "checkBox_ShowHidden";
     this.checkBox_ShowHidden.Size = new System.Drawing.Size(118, 17);
     this.checkBox_ShowHidden.TabIndex = 1;
     this.checkBox_ShowHidden.Tag = "z";
     this.checkBox_ShowHidden.Text = "&Show Hidden Items";
     this.toolTip_Help.SetToolTip(this.checkBox_ShowHidden, "Shows the Series,Seasons and Episodes that have been hidden from view");
     this.checkBox_ShowHidden.UseVisualStyleBackColor = true;
     this.checkBox_ShowHidden.CheckedChanged += new System.EventHandler(this.checkBox_ShowHidden_CheckedChanged);
     //
     // linkMediaInfoUpdate
     //
     this.linkMediaInfoUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkMediaInfoUpdate.AutoSize = true;
     this.linkMediaInfoUpdate.Location = new System.Drawing.Point(145, 623);
     this.linkMediaInfoUpdate.Name = "linkMediaInfoUpdate";
     this.linkMediaInfoUpdate.Size = new System.Drawing.Size(95, 13);
     this.linkMediaInfoUpdate.TabIndex = 29;
     this.linkMediaInfoUpdate.TabStop = true;
     this.linkMediaInfoUpdate.Text = "Update Media Info";
     this.toolTip_Help.SetToolTip(this.linkMediaInfoUpdate, "Click here to force the plug-in to read the media information for local files aga" +
     "in e.g. resolution, codecs...");
     this.linkMediaInfoUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkMediaInfoUpdate_LinkClicked);
     //
     // button_TestReparse
     //
     this.button_TestReparse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button_TestReparse.Image = ((System.Drawing.Image)(resources.GetObject("button_TestReparse.Image")));
     this.button_TestReparse.Location = new System.Drawing.Point(399, 158);
     this.button_TestReparse.Name = "button_TestReparse";
     this.button_TestReparse.Size = new System.Drawing.Size(28, 31);
     this.button_TestReparse.TabIndex = 1;
     this.toolTip_Help.SetToolTip(this.button_TestReparse, "Redo a local parsing test");
     this.button_TestReparse.UseVisualStyleBackColor = true;
     this.button_TestReparse.Click += new System.EventHandler(this.button_TestReparse_Click);
     //
     // btnLogoDown
     //
     this.btnLogoDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnLogoDown.Image = global::WindowPlugins.GUITVSeries.Properties.Resources.arrow_down;
     this.btnLogoDown.Location = new System.Drawing.Point(817, 106);
     this.btnLogoDown.Name = "btnLogoDown";
     this.btnLogoDown.Size = new System.Drawing.Size(32, 29);
     this.btnLogoDown.TabIndex = 2;
     this.toolTip_Help.SetToolTip(this.btnLogoDown, "Moves the logo position to the right when displayed in Media Portal");
     this.btnLogoDown.UseVisualStyleBackColor = true;
     this.btnLogoDown.Click += new System.EventHandler(this.btnLogoDown_Click);
     //
     // btnlogoUp
     //
     this.btnlogoUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnlogoUp.Image = global::WindowPlugins.GUITVSeries.Properties.Resources.arrow_up;
     this.btnlogoUp.Location = new System.Drawing.Point(816, 71);
     this.btnlogoUp.Name = "btnlogoUp";
     this.btnlogoUp.Size = new System.Drawing.Size(32, 29);
     this.btnlogoUp.TabIndex = 1;
     this.toolTip_Help.SetToolTip(this.btnlogoUp, "Moves the logo position to the left when displayed in Media Portal");
     this.btnlogoUp.UseVisualStyleBackColor = true;
     this.btnlogoUp.Click += new System.EventHandler(this.btnlogoUp_Click);
     //
     // button1
     //
     this.button1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.button1.Image = global::WindowPlugins.GUITVSeries.Properties.Resources.arrow_up_small;
     this.button1.Location = new System.Drawing.Point(0, 678);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(881, 14);
     this.button1.TabIndex = 0;
     this.toolTip_Help.SetToolTip(this.button1, "Click here to show/hide the log window, useful for diagnosing any errors or watch" +
     "ing progress of Import");
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // nudParentalControlTimeout
     //
     this.nudParentalControlTimeout.Location = new System.Drawing.Point(450, 255);
     this.nudParentalControlTimeout.Maximum = new decimal(new int[] {
     3600,
     0,
     0,
     0});
     this.nudParentalControlTimeout.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.nudParentalControlTimeout.Name = "nudParentalControlTimeout";
     this.nudParentalControlTimeout.Size = new System.Drawing.Size(54, 20);
     this.nudParentalControlTimeout.TabIndex = 11;
     this.toolTip_Help.SetToolTip(this.nudParentalControlTimeout, "Set number of minutes for Parental Control Lock to re-enable.\r\nNext time you ente" +
     "r the view, Pin Code will be requested.");
     this.nudParentalControlTimeout.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.nudParentalControlTimeout.ValueChanged += new System.EventHandler(this.nudParentalControlTimeout_ValueChanged);
     //
     // toolTip_InfoHelp
     //
     this.toolTip_InfoHelp.AutoPopDelay = 10000;
     this.toolTip_InfoHelp.InitialDelay = 500;
     this.toolTip_InfoHelp.IsBalloon = true;
     this.toolTip_InfoHelp.ReshowDelay = 100;
     this.toolTip_InfoHelp.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
     this.toolTip_InfoHelp.ToolTipTitle = "Help";
     //
     // richTextBox_seriesFormat_Col1
     //
     this.richTextBox_seriesFormat_Col1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seriesFormat_Col1.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seriesFormat_Col1.Location = new System.Drawing.Point(97, 25);
     this.richTextBox_seriesFormat_Col1.Multiline = false;
     this.richTextBox_seriesFormat_Col1.Name = "richTextBox_seriesFormat_Col1";
     this.richTextBox_seriesFormat_Col1.Size = new System.Drawing.Size(180, 20);
     this.richTextBox_seriesFormat_Col1.TabIndex = 2;
     this.richTextBox_seriesFormat_Col1.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seriesFormat_Col1, "Enter in the field(s) to be displayed in column one of the series view.\r\nYou can " +
     "right click on this textbox to bring up a menu of available fields from the data" +
     "base.\r\n\r\nDefault: Empty");
     //
     // richTextBox_seriesFormat_Title
     //
     this.richTextBox_seriesFormat_Title.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seriesFormat_Title.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seriesFormat_Title.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seriesFormat_Title.Location = new System.Drawing.Point(97, 47);
     this.richTextBox_seriesFormat_Title.Multiline = false;
     this.richTextBox_seriesFormat_Title.Name = "richTextBox_seriesFormat_Title";
     this.richTextBox_seriesFormat_Title.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_seriesFormat_Title.TabIndex = 6;
     this.richTextBox_seriesFormat_Title.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seriesFormat_Title, resources.GetString("richTextBox_seriesFormat_Title.ToolTip"));
     //
     // richTextBox_seriesFormat_Col2
     //
     this.richTextBox_seriesFormat_Col2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seriesFormat_Col2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seriesFormat_Col2.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seriesFormat_Col2.Location = new System.Drawing.Point(276, 25);
     this.richTextBox_seriesFormat_Col2.Multiline = false;
     this.richTextBox_seriesFormat_Col2.Name = "richTextBox_seriesFormat_Col2";
     this.richTextBox_seriesFormat_Col2.Size = new System.Drawing.Size(396, 20);
     this.richTextBox_seriesFormat_Col2.TabIndex = 3;
     this.richTextBox_seriesFormat_Col2.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seriesFormat_Col2, resources.GetString("richTextBox_seriesFormat_Col2.ToolTip"));
     //
     // richTextBox_seriesFormat_Subtitle
     //
     this.richTextBox_seriesFormat_Subtitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seriesFormat_Subtitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seriesFormat_Subtitle.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seriesFormat_Subtitle.Location = new System.Drawing.Point(97, 68);
     this.richTextBox_seriesFormat_Subtitle.Multiline = false;
     this.richTextBox_seriesFormat_Subtitle.Name = "richTextBox_seriesFormat_Subtitle";
     this.richTextBox_seriesFormat_Subtitle.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_seriesFormat_Subtitle.TabIndex = 8;
     this.richTextBox_seriesFormat_Subtitle.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seriesFormat_Subtitle, resources.GetString("richTextBox_seriesFormat_Subtitle.ToolTip"));
     //
     // richTextBox_seriesFormat_Main
     //
     this.richTextBox_seriesFormat_Main.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seriesFormat_Main.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seriesFormat_Main.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seriesFormat_Main.Location = new System.Drawing.Point(97, 89);
     this.richTextBox_seriesFormat_Main.Multiline = false;
     this.richTextBox_seriesFormat_Main.Name = "richTextBox_seriesFormat_Main";
     this.richTextBox_seriesFormat_Main.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_seriesFormat_Main.TabIndex = 10;
     this.richTextBox_seriesFormat_Main.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seriesFormat_Main, resources.GetString("richTextBox_seriesFormat_Main.ToolTip"));
     //
     // richTextBox_seriesFormat_Col3
     //
     this.richTextBox_seriesFormat_Col3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seriesFormat_Col3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seriesFormat_Col3.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seriesFormat_Col3.Location = new System.Drawing.Point(616, 25);
     this.richTextBox_seriesFormat_Col3.Multiline = false;
     this.richTextBox_seriesFormat_Col3.Name = "richTextBox_seriesFormat_Col3";
     this.richTextBox_seriesFormat_Col3.Size = new System.Drawing.Size(229, 20);
     this.richTextBox_seriesFormat_Col3.TabIndex = 4;
     this.richTextBox_seriesFormat_Col3.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seriesFormat_Col3, resources.GetString("richTextBox_seriesFormat_Col3.ToolTip"));
     //
     // richTextBox_episodeFormat_Col1
     //
     this.richTextBox_episodeFormat_Col1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_episodeFormat_Col1.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_episodeFormat_Col1.Location = new System.Drawing.Point(97, 22);
     this.richTextBox_episodeFormat_Col1.Multiline = false;
     this.richTextBox_episodeFormat_Col1.Name = "richTextBox_episodeFormat_Col1";
     this.richTextBox_episodeFormat_Col1.Size = new System.Drawing.Size(180, 20);
     this.richTextBox_episodeFormat_Col1.TabIndex = 1;
     this.richTextBox_episodeFormat_Col1.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_episodeFormat_Col1, "Enter in the field(s) to be displayed in column one of the episode view.\r\nYou can" +
     " right click on this textbox to bring up a menu of available fields from the dat" +
     "abase.\r\n\r\nDefault: Empty");
     //
     // richTextBox_episodeFormat_Title
     //
     this.richTextBox_episodeFormat_Title.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_episodeFormat_Title.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_episodeFormat_Title.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_episodeFormat_Title.Location = new System.Drawing.Point(97, 44);
     this.richTextBox_episodeFormat_Title.Multiline = false;
     this.richTextBox_episodeFormat_Title.Name = "richTextBox_episodeFormat_Title";
     this.richTextBox_episodeFormat_Title.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_episodeFormat_Title.TabIndex = 5;
     this.richTextBox_episodeFormat_Title.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_episodeFormat_Title, resources.GetString("richTextBox_episodeFormat_Title.ToolTip"));
     //
     // richTextBox_episodeFormat_Subtitle
     //
     this.richTextBox_episodeFormat_Subtitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_episodeFormat_Subtitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_episodeFormat_Subtitle.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_episodeFormat_Subtitle.Location = new System.Drawing.Point(97, 66);
     this.richTextBox_episodeFormat_Subtitle.Multiline = false;
     this.richTextBox_episodeFormat_Subtitle.Name = "richTextBox_episodeFormat_Subtitle";
     this.richTextBox_episodeFormat_Subtitle.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_episodeFormat_Subtitle.TabIndex = 7;
     this.richTextBox_episodeFormat_Subtitle.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_episodeFormat_Subtitle, resources.GetString("richTextBox_episodeFormat_Subtitle.ToolTip"));
     //
     // richTextBox_episodeFormat_Main
     //
     this.richTextBox_episodeFormat_Main.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_episodeFormat_Main.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_episodeFormat_Main.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_episodeFormat_Main.Location = new System.Drawing.Point(97, 88);
     this.richTextBox_episodeFormat_Main.Multiline = false;
     this.richTextBox_episodeFormat_Main.Name = "richTextBox_episodeFormat_Main";
     this.richTextBox_episodeFormat_Main.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_episodeFormat_Main.TabIndex = 9;
     this.richTextBox_episodeFormat_Main.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_episodeFormat_Main, resources.GetString("richTextBox_episodeFormat_Main.ToolTip"));
     //
     // richTextBox_episodeFormat_Col2
     //
     this.richTextBox_episodeFormat_Col2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_episodeFormat_Col2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_episodeFormat_Col2.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_episodeFormat_Col2.Location = new System.Drawing.Point(275, 22);
     this.richTextBox_episodeFormat_Col2.Multiline = false;
     this.richTextBox_episodeFormat_Col2.Name = "richTextBox_episodeFormat_Col2";
     this.richTextBox_episodeFormat_Col2.Size = new System.Drawing.Size(396, 20);
     this.richTextBox_episodeFormat_Col2.TabIndex = 2;
     this.richTextBox_episodeFormat_Col2.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_episodeFormat_Col2, resources.GetString("richTextBox_episodeFormat_Col2.ToolTip"));
     //
     // richTextBox_episodeFormat_Col3
     //
     this.richTextBox_episodeFormat_Col3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_episodeFormat_Col3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_episodeFormat_Col3.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_episodeFormat_Col3.Location = new System.Drawing.Point(616, 22);
     this.richTextBox_episodeFormat_Col3.Multiline = false;
     this.richTextBox_episodeFormat_Col3.Name = "richTextBox_episodeFormat_Col3";
     this.richTextBox_episodeFormat_Col3.Size = new System.Drawing.Size(229, 20);
     this.richTextBox_episodeFormat_Col3.TabIndex = 3;
     this.richTextBox_episodeFormat_Col3.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_episodeFormat_Col3, resources.GetString("richTextBox_episodeFormat_Col3.ToolTip"));
     //
     // richTextBox_seasonFormat_Title
     //
     this.richTextBox_seasonFormat_Title.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seasonFormat_Title.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seasonFormat_Title.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seasonFormat_Title.Location = new System.Drawing.Point(97, 45);
     this.richTextBox_seasonFormat_Title.Multiline = false;
     this.richTextBox_seasonFormat_Title.Name = "richTextBox_seasonFormat_Title";
     this.richTextBox_seasonFormat_Title.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_seasonFormat_Title.TabIndex = 6;
     this.richTextBox_seasonFormat_Title.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seasonFormat_Title, resources.GetString("richTextBox_seasonFormat_Title.ToolTip"));
     //
     // richTextBox_seasonFormat_Col2
     //
     this.richTextBox_seasonFormat_Col2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seasonFormat_Col2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seasonFormat_Col2.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seasonFormat_Col2.Location = new System.Drawing.Point(276, 23);
     this.richTextBox_seasonFormat_Col2.Multiline = false;
     this.richTextBox_seasonFormat_Col2.Name = "richTextBox_seasonFormat_Col2";
     this.richTextBox_seasonFormat_Col2.Size = new System.Drawing.Size(396, 20);
     this.richTextBox_seasonFormat_Col2.TabIndex = 3;
     this.richTextBox_seasonFormat_Col2.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seasonFormat_Col2, resources.GetString("richTextBox_seasonFormat_Col2.ToolTip"));
     //
     // richTextBox_seasonFormat_Subtitle
     //
     this.richTextBox_seasonFormat_Subtitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seasonFormat_Subtitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seasonFormat_Subtitle.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seasonFormat_Subtitle.Location = new System.Drawing.Point(97, 66);
     this.richTextBox_seasonFormat_Subtitle.Multiline = false;
     this.richTextBox_seasonFormat_Subtitle.Name = "richTextBox_seasonFormat_Subtitle";
     this.richTextBox_seasonFormat_Subtitle.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_seasonFormat_Subtitle.TabIndex = 8;
     this.richTextBox_seasonFormat_Subtitle.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seasonFormat_Subtitle, resources.GetString("richTextBox_seasonFormat_Subtitle.ToolTip"));
     //
     // richTextBox_seasonFormat_Col1
     //
     this.richTextBox_seasonFormat_Col1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seasonFormat_Col1.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seasonFormat_Col1.Location = new System.Drawing.Point(97, 23);
     this.richTextBox_seasonFormat_Col1.Multiline = false;
     this.richTextBox_seasonFormat_Col1.Name = "richTextBox_seasonFormat_Col1";
     this.richTextBox_seasonFormat_Col1.Size = new System.Drawing.Size(180, 20);
     this.richTextBox_seasonFormat_Col1.TabIndex = 2;
     this.richTextBox_seasonFormat_Col1.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seasonFormat_Col1, "Enter in the field(s) to be displayed in column one of the season view.\r\nYou can " +
     "right click on this textbox to bring up a menu of available fields from the data" +
     "base.\r\n\r\nDefault: Empty");
     //
     // richTextBox_seasonFormat_Main
     //
     this.richTextBox_seasonFormat_Main.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seasonFormat_Main.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seasonFormat_Main.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seasonFormat_Main.Location = new System.Drawing.Point(97, 87);
     this.richTextBox_seasonFormat_Main.Multiline = false;
     this.richTextBox_seasonFormat_Main.Name = "richTextBox_seasonFormat_Main";
     this.richTextBox_seasonFormat_Main.Size = new System.Drawing.Size(748, 20);
     this.richTextBox_seasonFormat_Main.TabIndex = 10;
     this.richTextBox_seasonFormat_Main.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seasonFormat_Main, resources.GetString("richTextBox_seasonFormat_Main.ToolTip"));
     //
     // richTextBox_seasonFormat_Col3
     //
     this.richTextBox_seasonFormat_Col3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox_seasonFormat_Col3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.richTextBox_seasonFormat_Col3.ContextMenuStrip = this.contextMenuStrip_InsertFields;
     this.richTextBox_seasonFormat_Col3.Location = new System.Drawing.Point(616, 23);
     this.richTextBox_seasonFormat_Col3.Multiline = false;
     this.richTextBox_seasonFormat_Col3.Name = "richTextBox_seasonFormat_Col3";
     this.richTextBox_seasonFormat_Col3.Size = new System.Drawing.Size(229, 20);
     this.richTextBox_seasonFormat_Col3.TabIndex = 4;
     this.richTextBox_seasonFormat_Col3.Text = "";
     this.toolTip_InfoHelp.SetToolTip(this.richTextBox_seasonFormat_Col3, "Enter in the field(s) to be displayed in column three of the season view.\r\nYou ca" +
     "n right click on this textbox to bring up a menu of available fields from the da" +
     "tabase.\r\n\r\nDefault: Empty");
     //
     // chkUseRegionalDateFormatString
     //
     this.chkUseRegionalDateFormatString.AutoSize = true;
     this.chkUseRegionalDateFormatString.Location = new System.Drawing.Point(11, 215);
     this.chkUseRegionalDateFormatString.Name = "chkUseRegionalDateFormatString";
     this.chkUseRegionalDateFormatString.Size = new System.Drawing.Size(211, 17);
     this.chkUseRegionalDateFormatString.TabIndex = 15;
     this.chkUseRegionalDateFormatString.Text = "&Use Regional Settings to Display Dates";
     this.toolTip_InfoHelp.SetToolTip(this.chkUseRegionalDateFormatString, "Enable this option to convert all date formats yyyy-MM-dd to format defined in th" +
     "e Windows Control Panel\r\nunder Regional and Language options.");
     this.chkUseRegionalDateFormatString.UseVisualStyleBackColor = true;
     this.chkUseRegionalDateFormatString.CheckedChanged += new System.EventHandler(this.chkUseRegionalDateFormatString_CheckedChanged);
     //
     // checkBox_Episode_OnlyShowLocalFiles
     //
     this.checkBox_Episode_OnlyShowLocalFiles.AutoSize = true;
     this.checkBox_Episode_OnlyShowLocalFiles.Location = new System.Drawing.Point(404, 192);
     this.checkBox_Episode_OnlyShowLocalFiles.Name = "checkBox_Episode_OnlyShowLocalFiles";
     this.checkBox_Episode_OnlyShowLocalFiles.Size = new System.Drawing.Size(256, 17);
     this.checkBox_Episode_OnlyShowLocalFiles.TabIndex = 34;
     this.checkBox_Episode_OnlyShowLocalFiles.Text = "&Show all episodes in local database when in GUI";
     this.toolTip_InfoHelp.SetToolTip(this.checkBox_Episode_OnlyShowLocalFiles, resources.GetString("checkBox_Episode_OnlyShowLocalFiles.ToolTip"));
     this.checkBox_Episode_OnlyShowLocalFiles.UseVisualStyleBackColor = true;
     this.checkBox_Episode_OnlyShowLocalFiles.CheckedChanged += new System.EventHandler(this.checkBox_Episode_OnlyShowLocalFiles_CheckedChanged);
     //
     // checkBox_Episode_HideUnwatchedThumbnail
     //
     this.checkBox_Episode_HideUnwatchedThumbnail.AutoSize = true;
     this.checkBox_Episode_HideUnwatchedThumbnail.Location = new System.Drawing.Point(11, 192);
     this.checkBox_Episode_HideUnwatchedThumbnail.Name = "checkBox_Episode_HideUnwatchedThumbnail";
     this.checkBox_Episode_HideUnwatchedThumbnail.Size = new System.Drawing.Size(291, 17);
     this.checkBox_Episode_HideUnwatchedThumbnail.TabIndex = 14;
     this.checkBox_Episode_HideUnwatchedThumbnail.Text = "Hide episode &thumbnail on episodes that are unwatched";
     this.toolTip_InfoHelp.SetToolTip(this.checkBox_Episode_HideUnwatchedThumbnail, resources.GetString("checkBox_Episode_HideUnwatchedThumbnail.ToolTip"));
     this.checkBox_Episode_HideUnwatchedThumbnail.UseVisualStyleBackColor = true;
     this.checkBox_Episode_HideUnwatchedThumbnail.CheckedChanged += new System.EventHandler(this.checkBox_Episode_HideUnwatchedThumbnail_CheckedChanged);
     //
     // checkBox_Episode_HideUnwatchedSummary
     //
     this.checkBox_Episode_HideUnwatchedSummary.AutoSize = true;
     this.checkBox_Episode_HideUnwatchedSummary.Location = new System.Drawing.Point(11, 169);
     this.checkBox_Episode_HideUnwatchedSummary.Name = "checkBox_Episode_HideUnwatchedSummary";
     this.checkBox_Episode_HideUnwatchedSummary.Size = new System.Drawing.Size(335, 17);
     this.checkBox_Episode_HideUnwatchedSummary.TabIndex = 13;
     this.checkBox_Episode_HideUnwatchedSummary.Text = "&Hide episode overview/summary on episodes that are unwatched";
     this.toolTip_InfoHelp.SetToolTip(this.checkBox_Episode_HideUnwatchedSummary, resources.GetString("checkBox_Episode_HideUnwatchedSummary.ToolTip"));
     this.checkBox_Episode_HideUnwatchedSummary.UseVisualStyleBackColor = true;
     this.checkBox_Episode_HideUnwatchedSummary.CheckedChanged += new System.EventHandler(this.checkBox_Episode_HideUnwatchedSummary_CheckedChanged);
     //
     // numericUpDownImportDelay
     //
     this.numericUpDownImportDelay.Increment = new decimal(new int[] {
     5,
     0,
     0,
     0});
     this.numericUpDownImportDelay.Location = new System.Drawing.Point(163, 142);
     this.numericUpDownImportDelay.Maximum = new decimal(new int[] {
     3600,
     0,
     0,
     0});
     this.numericUpDownImportDelay.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownImportDelay.Name = "numericUpDownImportDelay";
     this.numericUpDownImportDelay.Size = new System.Drawing.Size(50, 20);
     this.numericUpDownImportDelay.TabIndex = 10;
     this.toolTip_InfoHelp.SetToolTip(this.numericUpDownImportDelay, "Set the delay before the Importer starts in GUI, this can help reduce load of CPU" +
     " on startup.");
     this.numericUpDownImportDelay.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownImportDelay.ValueChanged += new System.EventHandler(this.numericUpDownImportDelay_ValueChanged);
     //
     // dbOptChkBoxPlayOutOfOrderCheck
     //
     this.dbOptChkBoxPlayOutOfOrderCheck.AutoSize = true;
     this.dbOptChkBoxPlayOutOfOrderCheck.Location = new System.Drawing.Point(404, 354);
     this.dbOptChkBoxPlayOutOfOrderCheck.Name = "dbOptChkBoxPlayOutOfOrderCheck";
     this.dbOptChkBoxPlayOutOfOrderCheck.Option = "CheckPlayOutOfOrder";
     this.dbOptChkBoxPlayOutOfOrderCheck.Size = new System.Drawing.Size(255, 17);
     this.dbOptChkBoxPlayOutOfOrderCheck.TabIndex = 41;
     this.dbOptChkBoxPlayOutOfOrderCheck.Text = "Check on playback of episode is not out of order";
     this.dbOptChkBoxPlayOutOfOrderCheck.ToolTip = "";
     this.toolTip_InfoHelp.SetToolTip(this.dbOptChkBoxPlayOutOfOrderCheck, resources.GetString("dbOptChkBoxPlayOutOfOrderCheck.ToolTip"));
     this.dbOptChkBoxPlayOutOfOrderCheck.UseVisualStyleBackColor = true;
     //
     // dbOptionSQLLogging
     //
     this.dbOptionSQLLogging.AutoSize = true;
     this.dbOptionSQLLogging.Location = new System.Drawing.Point(404, 23);
     this.dbOptionSQLLogging.Name = "dbOptionSQLLogging";
     this.dbOptionSQLLogging.Option = "SQLLoggingEnabled";
     this.dbOptionSQLLogging.Size = new System.Drawing.Size(166, 17);
     this.dbOptionSQLLogging.TabIndex = 28;
     this.dbOptionSQLLogging.Text = "Enable Verbose SQL Logging";
     this.dbOptionSQLLogging.ToolTip = "";
     this.toolTip_InfoHelp.SetToolTip(this.dbOptionSQLLogging, "Enable verbose SQL Logging, WARNING!!! This will impact performance if enabled.");
     this.dbOptionSQLLogging.UseVisualStyleBackColor = true;
     this.dbOptionSQLLogging.CheckStateChanged += new System.EventHandler(this.dbOptionSQLLogging_CheckStateChanged);
     //
     // dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay
     //
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.AutoSize = true;
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.Location = new System.Drawing.Point(404, 330);
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.Name = "dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay";
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.Option = "SubCentral_SubtitleDownloadOnPlay";
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.Size = new System.Drawing.Size(281, 17);
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.TabIndex = 40;
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.Text = "Offer to download subtitles before playing (SubCentral)";
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.ToolTip = "";
     this.toolTip_InfoHelp.SetToolTip(this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay, "Check this option to enable subtitle download before playing the episode that doe" +
     "sn\'t have any.\r\nNote: appliable only when using SubCentral.");
     this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay.UseVisualStyleBackColor = true;
     //
     // dbOptChkBoxCountEmptyFutureEps
     //
     this.dbOptChkBoxCountEmptyFutureEps.AutoSize = true;
     this.dbOptChkBoxCountEmptyFutureEps.Checked = true;
     this.dbOptChkBoxCountEmptyFutureEps.CheckState = System.Windows.Forms.CheckState.Checked;
     this.dbOptChkBoxCountEmptyFutureEps.Location = new System.Drawing.Point(404, 307);
     this.dbOptChkBoxCountEmptyFutureEps.Name = "dbOptChkBoxCountEmptyFutureEps";
     this.dbOptChkBoxCountEmptyFutureEps.Option = "CountEmptyAndFutureAiredEps";
     this.dbOptChkBoxCountEmptyFutureEps.Size = new System.Drawing.Size(289, 17);
     this.dbOptChkBoxCountEmptyFutureEps.TabIndex = 39;
     this.dbOptChkBoxCountEmptyFutureEps.Text = "Count episodes that have no AirDate or Air in the Future";
     this.dbOptChkBoxCountEmptyFutureEps.ToolTip = "";
     this.toolTip_InfoHelp.SetToolTip(this.dbOptChkBoxCountEmptyFutureEps, "Check this option if you want to calculate episode counts were episodes do not ha" +
     "ve an airdate or airs at a future date\r\nThis will only count episodes that you c" +
     "an see when browsing GUI.");
     this.dbOptChkBoxCountEmptyFutureEps.UseVisualStyleBackColor = true;
     //
     // dbOptionCheckBoxMarkRatedEpsAsWatched
     //
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.AutoSize = true;
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.Location = new System.Drawing.Point(404, 215);
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.Name = "dbOptionCheckBoxMarkRatedEpsAsWatched";
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.Option = "MarkRatedEpisodeAsWatched";
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.Size = new System.Drawing.Size(223, 17);
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.TabIndex = 35;
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.Text = "Mark Episodes as Watched if rated online";
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.ToolTip = "";
     this.toolTip_InfoHelp.SetToolTip(this.dbOptionCheckBoxMarkRatedEpsAsWatched, "If enabled and episode has been rated, mark the episode as watched.");
     this.dbOptionCheckBoxMarkRatedEpsAsWatched.UseVisualStyleBackColor = true;
     //
     // optionAsk2Rate
     //
     this.optionAsk2Rate.AutoSize = true;
     this.optionAsk2Rate.Checked = true;
     this.optionAsk2Rate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.optionAsk2Rate.Location = new System.Drawing.Point(11, 123);
     this.optionAsk2Rate.Name = "optionAsk2Rate";
     this.optionAsk2Rate.Option = "askToRate";
     this.optionAsk2Rate.Size = new System.Drawing.Size(234, 17);
     this.optionAsk2Rate.TabIndex = 11;
     this.optionAsk2Rate.Text = "&Popup Rate Dialog after episode is watched";
     this.optionAsk2Rate.ToolTip = "";
     this.toolTip_InfoHelp.SetToolTip(this.optionAsk2Rate, "Tick this to have the plugin automatically pop-up a rating\'s windows after you ha" +
     "ve watched an episodes which hasn\'t been rated yet.");
     this.optionAsk2Rate.UseVisualStyleBackColor = true;
     this.optionAsk2Rate.CheckedChanged += new System.EventHandler(this.optionAsk2Rate_CheckedChanged);
     //
     // splitMain_Log
     //
     this.splitMain_Log.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitMain_Log.IsSplitterFixed = true;
     this.splitMain_Log.Location = new System.Drawing.Point(0, 0);
     this.splitMain_Log.Name = "splitMain_Log";
     this.splitMain_Log.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitMain_Log.Panel1
     //
     this.splitMain_Log.Panel1.BackColor = System.Drawing.Color.White;
     this.splitMain_Log.Panel1.Controls.Add(this.tabControl_Details);
     this.splitMain_Log.Panel1.Controls.Add(this.button1);
     //
     // splitMain_Log.Panel2
     //
     this.splitMain_Log.Panel2.Controls.Add(this.listBox_Log);
     this.splitMain_Log.Panel2.Padding = new System.Windows.Forms.Padding(10);
     this.splitMain_Log.Panel2Collapsed = true;
     this.splitMain_Log.Size = new System.Drawing.Size(881, 692);
     this.splitMain_Log.SplitterDistance = 382;
     this.splitMain_Log.SplitterWidth = 1;
     this.splitMain_Log.TabIndex = 65;
     //
     // tabControl_Details
     //
     this.tabControl_Details.Controls.Add(this.tabPage_Details);
     this.tabControl_Details.Controls.Add(this.tabPage_Import);
     this.tabControl_Details.Controls.Add(this.tabOnlineData);
     this.tabControl_Details.Controls.Add(this.tabFollwit);
     this.tabControl_Details.Controls.Add(this.tabPage_MP_DisplayControl);
     this.tabControl_Details.Controls.Add(this.tab_view);
     this.tabControl_Details.Controls.Add(this.tabLogoRules);
     this.tabControl_Details.Controls.Add(this.tabFormattingRules);
     this.tabControl_Details.Controls.Add(this.tabLayoutSettings);
     this.tabControl_Details.Controls.Add(this.tabAbout);
     this.tabControl_Details.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl_Details.ImageList = this.imageList1;
     this.tabControl_Details.Location = new System.Drawing.Point(0, 0);
     this.tabControl_Details.Name = "tabControl_Details";
     this.tabControl_Details.SelectedIndex = 0;
     this.tabControl_Details.Size = new System.Drawing.Size(881, 678);
     this.tabControl_Details.TabIndex = 0;
     //
     // tabPage_Details
     //
     this.tabPage_Details.Controls.Add(this.splitContainer2);
     this.tabPage_Details.ImageIndex = 1;
     this.tabPage_Details.Location = new System.Drawing.Point(4, 31);
     this.tabPage_Details.Name = "tabPage_Details";
     this.tabPage_Details.Size = new System.Drawing.Size(873, 643);
     this.tabPage_Details.TabIndex = 2;
     this.tabPage_Details.Text = "Details";
     this.tabPage_Details.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.BackColor = System.Drawing.SystemColors.Window;
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(0, 0);
     this.splitContainer2.Name = "splitContainer2";
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.linkMediaInfoUpdate);
     this.splitContainer2.Panel1.Controls.Add(this.treeView_Library);
     this.splitContainer2.Panel1.Controls.Add(this.checkBox_ShowHidden);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.pictureBox_SeriesPoster);
     this.splitContainer2.Panel2.Controls.Add(this.comboBox_PosterSelection);
     this.splitContainer2.Panel2.Controls.Add(this.dataGridView1);
     this.splitContainer2.Panel2.Controls.Add(this.pictureBox_Series);
     this.splitContainer2.Panel2.Controls.Add(this.comboBox_BannerSelection);
     this.splitContainer2.Panel2.Controls.Add(this.panDBLocation);
     this.splitContainer2.Size = new System.Drawing.Size(873, 643);
     this.splitContainer2.SplitterDistance = 243;
     this.splitContainer2.TabIndex = 0;
     //
     // treeView_Library
     //
     this.treeView_Library.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.treeView_Library.ContextMenuStrip = this.contextMenuStrip_DetailsTree;
     this.treeView_Library.ForeColor = System.Drawing.SystemColors.WindowText;
     this.treeView_Library.FullRowSelect = true;
     this.treeView_Library.HideSelection = false;
     this.treeView_Library.Location = new System.Drawing.Point(0, 0);
     this.treeView_Library.MinimumSize = new System.Drawing.Size(100, 100);
     this.treeView_Library.Name = "treeView_Library";
     this.treeView_Library.Size = new System.Drawing.Size(243, 617);
     this.treeView_Library.TabIndex = 0;
     this.treeView_Library.AfterExpand += new System.Windows.Forms.TreeViewEventHandler(this.treeView_Library_AfterExpand);
     this.treeView_Library.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_Library_AfterSelect);
     this.treeView_Library.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeView_Library_NodeMouseClick);
     this.treeView_Library.KeyDown += new System.Windows.Forms.KeyEventHandler(this.treeView_Library_KeyDown);
     this.treeView_Library.MouseDown += new System.Windows.Forms.MouseEventHandler(this.treeView_Library_MouseDown);
     //
     // pictureBox_SeriesPoster
     //
     this.pictureBox_SeriesPoster.BackColor = System.Drawing.Color.White;
     this.pictureBox_SeriesPoster.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox_SeriesPoster.ErrorImage = null;
     this.pictureBox_SeriesPoster.InitialImage = null;
     this.pictureBox_SeriesPoster.Location = new System.Drawing.Point(0, 47);
     this.pictureBox_SeriesPoster.Name = "pictureBox_SeriesPoster";
     this.pictureBox_SeriesPoster.Size = new System.Drawing.Size(87, 129);
     this.pictureBox_SeriesPoster.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox_SeriesPoster.TabIndex = 149;
     this.pictureBox_SeriesPoster.TabStop = false;
     //
     // comboBox_PosterSelection
     //
     this.comboBox_PosterSelection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox_PosterSelection.FormattingEnabled = true;
     this.comboBox_PosterSelection.Location = new System.Drawing.Point(0, 25);
     this.comboBox_PosterSelection.Name = "comboBox_PosterSelection";
     this.comboBox_PosterSelection.Size = new System.Drawing.Size(87, 21);
     this.comboBox_PosterSelection.TabIndex = 148;
     this.comboBox_PosterSelection.SelectedIndexChanged += new System.EventHandler(this.comboBox_PosterSelection_SelectedIndexChanged);
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.AllowUserToDeleteRows = false;
     this.dataGridView1.AllowUserToOrderColumns = true;
     this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView1.AutoGenerateColumns = false;
     this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1,
     this.dataGridViewTextBoxColumn2});
     this.dataGridView1.DataSource = this.detailsPropertyBindingSource;
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle7;
     this.dataGridView1.Location = new System.Drawing.Point(0, 176);
     this.dataGridView1.MultiSelect = false;
     this.dataGridView1.Name = "dataGridView1";
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
     this.dataGridView1.RowHeadersVisible = false;
     this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders;
     this.dataGridView1.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView1.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView1.Size = new System.Drawing.Size(626, 464);
     this.dataGridView1.StandardTab = true;
     this.dataGridView1.TabIndex = 2;
     this.dataGridView1.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dataGridView1_CellBeginEdit);
     this.dataGridView1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEndEdit);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.dataGridViewTextBoxColumn1.DataPropertyName = "Property";
     this.dataGridViewTextBoxColumn1.HeaderText = "Property";
     this.dataGridViewTextBoxColumn1.MinimumWidth = 150;
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.Width = 150;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.dataGridViewTextBoxColumn2.DataPropertyName = "Value";
     this.dataGridViewTextBoxColumn2.HeaderText = "Value";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     //
     // detailsPropertyBindingSource
     //
     this.detailsPropertyBindingSource.DataSource = typeof(WindowPlugins.GUITVSeries.DetailsProperty);
     //
     // pictureBox_Series
     //
     this.pictureBox_Series.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox_Series.BackColor = System.Drawing.Color.White;
     this.pictureBox_Series.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox_Series.ErrorImage = null;
     this.pictureBox_Series.InitialImage = null;
     this.pictureBox_Series.Location = new System.Drawing.Point(88, 47);
     this.pictureBox_Series.Name = "pictureBox_Series";
     this.pictureBox_Series.Size = new System.Drawing.Size(537, 129);
     this.pictureBox_Series.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox_Series.TabIndex = 147;
     this.pictureBox_Series.TabStop = false;
     //
     // comboBox_BannerSelection
     //
     this.comboBox_BannerSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox_BannerSelection.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox_BannerSelection.FormattingEnabled = true;
     this.comboBox_BannerSelection.Location = new System.Drawing.Point(88, 25);
     this.comboBox_BannerSelection.Name = "comboBox_BannerSelection";
     this.comboBox_BannerSelection.Size = new System.Drawing.Size(538, 21);
     this.comboBox_BannerSelection.TabIndex = 1;
     this.comboBox_BannerSelection.SelectedIndexChanged += new System.EventHandler(this.comboBox_BannerSelection_SelectedIndexChanged);
     //
     // panDBLocation
     //
     this.panDBLocation.Controls.Add(this.textBox_dblocation);
     this.panDBLocation.Controls.Add(this.lblClearDB);
     this.panDBLocation.Controls.Add(this.button_dbbrowse);
     this.panDBLocation.Controls.Add(this.label28);
     this.panDBLocation.Dock = System.Windows.Forms.DockStyle.Top;
     this.panDBLocation.Location = new System.Drawing.Point(0, 0);
     this.panDBLocation.Name = "panDBLocation";
     this.panDBLocation.Size = new System.Drawing.Size(626, 25);
     this.panDBLocation.TabIndex = 0;
     //
     // button_dbbrowse
     //
     this.button_dbbrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button_dbbrowse.Location = new System.Drawing.Point(550, 0);
     this.button_dbbrowse.Name = "button_dbbrowse";
     this.button_dbbrowse.Size = new System.Drawing.Size(26, 23);
     this.button_dbbrowse.TabIndex = 2;
     this.button_dbbrowse.Text = "...";
     this.button_dbbrowse.UseVisualStyleBackColor = true;
     this.button_dbbrowse.Click += new System.EventHandler(this.button_dbbrowse_Click);
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(16, 5);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(173, 13);
     this.label28.TabIndex = 0;
     this.label28.Text = "Database location (restart needed):";
     //
     // tabPage_Import
     //
     this.tabPage_Import.AutoScroll = true;
     this.tabPage_Import.BackColor = System.Drawing.Color.Transparent;
     this.tabPage_Import.Controls.Add(this.splitContainer_SettingsOutput);
     this.tabPage_Import.ImageIndex = 10;
     this.tabPage_Import.Location = new System.Drawing.Point(4, 31);
     this.tabPage_Import.Name = "tabPage_Import";
     this.tabPage_Import.Size = new System.Drawing.Size(873, 643);
     this.tabPage_Import.TabIndex = 4;
     this.tabPage_Import.Text = "Import";
     this.tabPage_Import.UseVisualStyleBackColor = true;
     //
     // splitContainer_SettingsOutput
     //
     this.splitContainer_SettingsOutput.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer_SettingsOutput.Location = new System.Drawing.Point(0, 0);
     this.splitContainer_SettingsOutput.Name = "splitContainer_SettingsOutput";
     this.splitContainer_SettingsOutput.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer_SettingsOutput.Panel1
     //
     this.splitContainer_SettingsOutput.Panel1.Controls.Add(this.splitContainerImportSettings);
     //
     // splitContainer_SettingsOutput.Panel2
     //
     this.splitContainer_SettingsOutput.Panel2.Controls.Add(this.buttonStartImport);
     this.splitContainer_SettingsOutput.Panel2MinSize = 30;
     this.splitContainer_SettingsOutput.Size = new System.Drawing.Size(873, 643);
     this.splitContainer_SettingsOutput.SplitterDistance = 595;
     this.splitContainer_SettingsOutput.TabIndex = 157;
     this.splitContainer_SettingsOutput.TabStop = false;
     //
     // splitContainerImportSettings
     //
     this.splitContainerImportSettings.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerImportSettings.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainerImportSettings.Location = new System.Drawing.Point(0, 0);
     this.splitContainerImportSettings.Name = "splitContainerImportSettings";
     //
     // splitContainerImportSettings.Panel1
     //
     this.splitContainerImportSettings.Panel1.Controls.Add(this.treeView_Settings);
     //
     // splitContainerImportSettings.Panel2
     //
     this.splitContainerImportSettings.Panel2.Controls.Add(this.panel_Expressions);
     this.splitContainerImportSettings.Panel2.Controls.Add(this.panel_StringReplacements);
     this.splitContainerImportSettings.Panel2.Controls.Add(this.panel_ImportPathes);
     this.splitContainerImportSettings.Size = new System.Drawing.Size(873, 595);
     this.splitContainerImportSettings.SplitterDistance = 151;
     this.splitContainerImportSettings.TabIndex = 156;
     //
     // treeView_Settings
     //
     this.treeView_Settings.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView_Settings.Location = new System.Drawing.Point(0, 0);
     this.treeView_Settings.Name = "treeView_Settings";
     this.treeView_Settings.Size = new System.Drawing.Size(151, 595);
     this.treeView_Settings.TabIndex = 0;
     this.treeView_Settings.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView_Settings_AfterSelect);
     //
     // panel_Expressions
     //
     this.panel_Expressions.Controls.Add(this.linkExParsingExpressions);
     this.panel_Expressions.Controls.Add(this.linkImpParsingExpressions);
     this.panel_Expressions.Controls.Add(this.linkExpressionHelp);
     this.panel_Expressions.Controls.Add(this.label70);
     this.panel_Expressions.Controls.Add(this.buildExpr);
     this.panel_Expressions.Controls.Add(this.resetExpr);
     this.panel_Expressions.Controls.Add(this.dataGridView_Expressions);
     this.panel_Expressions.Controls.Add(this.button_MoveExpUp);
     this.panel_Expressions.Controls.Add(this.button_MoveExpDown);
     this.panel_Expressions.Location = new System.Drawing.Point(6, 6);
     this.panel_Expressions.Name = "panel_Expressions";
     this.panel_Expressions.Size = new System.Drawing.Size(164, 241);
     this.panel_Expressions.TabIndex = 155;
     this.panel_Expressions.Tag = "Parsing Expressions";
     //
     // linkExpressionHelp
     //
     this.linkExpressionHelp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkExpressionHelp.AutoSize = true;
     this.linkExpressionHelp.Location = new System.Drawing.Point(126, 200);
     this.linkExpressionHelp.Name = "linkExpressionHelp";
     this.linkExpressionHelp.Size = new System.Drawing.Size(29, 13);
     this.linkExpressionHelp.TabIndex = 6;
     this.linkExpressionHelp.TabStop = true;
     this.linkExpressionHelp.Text = "Help";
     this.linkExpressionHelp.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkExpressionHelp_LinkClicked);
     //
     // label70
     //
     this.label70.AutoSize = true;
     this.label70.Location = new System.Drawing.Point(5, 4);
     this.label70.Name = "label70";
     this.label70.Size = new System.Drawing.Size(513, 65);
     this.label70.TabIndex = 5;
     this.label70.Text = resources.GetString("label70.Text");
     //
     // dataGridView_Expressions
     //
     this.dataGridView_Expressions.AllowUserToResizeColumns = false;
     this.dataGridView_Expressions.AllowUserToResizeRows = false;
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_Expressions.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle9;
     this.dataGridView_Expressions.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView_Expressions.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView_Expressions.BackgroundColor = System.Drawing.SystemColors.Window;
     this.dataGridView_Expressions.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle10.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle10.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle10.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle10.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Expressions.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle10;
     this.dataGridView_Expressions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Expressions.DefaultCellStyle = dataGridViewCellStyle11;
     this.dataGridView_Expressions.Location = new System.Drawing.Point(1, 72);
     this.dataGridView_Expressions.MultiSelect = false;
     this.dataGridView_Expressions.Name = "dataGridView_Expressions";
     this.dataGridView_Expressions.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Expressions.RowHeadersDefaultCellStyle = dataGridViewCellStyle12;
     this.dataGridView_Expressions.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders;
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_Expressions.RowsDefaultCellStyle = dataGridViewCellStyle13;
     this.dataGridView_Expressions.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_Expressions.RowTemplate.Height = 18;
     this.dataGridView_Expressions.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_Expressions.Size = new System.Drawing.Size(123, 169);
     this.dataGridView_Expressions.StandardTab = true;
     this.dataGridView_Expressions.TabIndex = 0;
     this.dataGridView_Expressions.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_Expressions_CellEndEdit);
     this.dataGridView_Expressions.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridView_Expressions_UserDeletedRow);
     //
     // button_MoveExpUp
     //
     this.button_MoveExpUp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button_MoveExpUp.Image = ((System.Drawing.Image)(resources.GetObject("button_MoveExpUp.Image")));
     this.button_MoveExpUp.Location = new System.Drawing.Point(130, 72);
     this.button_MoveExpUp.Name = "button_MoveExpUp";
     this.button_MoveExpUp.Size = new System.Drawing.Size(28, 29);
     this.button_MoveExpUp.TabIndex = 1;
     this.button_MoveExpUp.UseVisualStyleBackColor = true;
     this.button_MoveExpUp.Click += new System.EventHandler(this.button_MoveExpUp_Click);
     //
     // button_MoveExpDown
     //
     this.button_MoveExpDown.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button_MoveExpDown.Image = ((System.Drawing.Image)(resources.GetObject("button_MoveExpDown.Image")));
     this.button_MoveExpDown.Location = new System.Drawing.Point(130, 107);
     this.button_MoveExpDown.Name = "button_MoveExpDown";
     this.button_MoveExpDown.Size = new System.Drawing.Size(28, 29);
     this.button_MoveExpDown.TabIndex = 2;
     this.button_MoveExpDown.UseVisualStyleBackColor = true;
     this.button_MoveExpDown.Click += new System.EventHandler(this.button_MoveExpDown_Click);
     //
     // panel_StringReplacements
     //
     this.panel_StringReplacements.Controls.Add(this.linkLabelResetStringReplacements);
     this.panel_StringReplacements.Controls.Add(this.linkLabelImportStringReplacements);
     this.panel_StringReplacements.Controls.Add(this.linkLabelExportStringReplacements);
     this.panel_StringReplacements.Controls.Add(this.label69);
     this.panel_StringReplacements.Controls.Add(this.dataGridView_Replace);
     this.panel_StringReplacements.Location = new System.Drawing.Point(7, 253);
     this.panel_StringReplacements.Name = "panel_StringReplacements";
     this.panel_StringReplacements.Size = new System.Drawing.Size(164, 152);
     this.panel_StringReplacements.TabIndex = 155;
     this.panel_StringReplacements.Tag = "String Replacements";
     //
     // linkLabelResetStringReplacements
     //
     this.linkLabelResetStringReplacements.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelResetStringReplacements.AutoSize = true;
     this.linkLabelResetStringReplacements.Location = new System.Drawing.Point(126, 128);
     this.linkLabelResetStringReplacements.Name = "linkLabelResetStringReplacements";
     this.linkLabelResetStringReplacements.Size = new System.Drawing.Size(35, 13);
     this.linkLabelResetStringReplacements.TabIndex = 4;
     this.linkLabelResetStringReplacements.TabStop = true;
     this.linkLabelResetStringReplacements.Text = "Reset";
     this.linkLabelResetStringReplacements.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelResetStringReplacements_LinkClicked);
     //
     // linkLabelImportStringReplacements
     //
     this.linkLabelImportStringReplacements.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelImportStringReplacements.AutoSize = true;
     this.linkLabelImportStringReplacements.Location = new System.Drawing.Point(126, 83);
     this.linkLabelImportStringReplacements.Name = "linkLabelImportStringReplacements";
     this.linkLabelImportStringReplacements.Size = new System.Drawing.Size(36, 13);
     this.linkLabelImportStringReplacements.TabIndex = 3;
     this.linkLabelImportStringReplacements.TabStop = true;
     this.linkLabelImportStringReplacements.Text = "Import";
     this.linkLabelImportStringReplacements.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelImportStringReplacements_LinkClicked);
     //
     // linkLabelExportStringReplacements
     //
     this.linkLabelExportStringReplacements.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabelExportStringReplacements.AutoSize = true;
     this.linkLabelExportStringReplacements.Location = new System.Drawing.Point(126, 106);
     this.linkLabelExportStringReplacements.Name = "linkLabelExportStringReplacements";
     this.linkLabelExportStringReplacements.Size = new System.Drawing.Size(37, 13);
     this.linkLabelExportStringReplacements.TabIndex = 2;
     this.linkLabelExportStringReplacements.TabStop = true;
     this.linkLabelExportStringReplacements.Text = "Export";
     this.linkLabelExportStringReplacements.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelExportStringReplacements_LinkClicked);
     //
     // label69
     //
     this.label69.AutoSize = true;
     this.label69.Location = new System.Drawing.Point(4, 5);
     this.label69.Name = "label69";
     this.label69.Size = new System.Drawing.Size(545, 65);
     this.label69.TabIndex = 1;
     this.label69.Text = resources.GetString("label69.Text");
     //
     // panel_ImportPathes
     //
     this.panel_ImportPathes.Controls.Add(this.label68);
     this.panel_ImportPathes.Controls.Add(this.button_TestReparse);
     this.panel_ImportPathes.Controls.Add(this.dataGridView_ImportPathes);
     this.panel_ImportPathes.Controls.Add(this.listView_ParsingResults);
     this.panel_ImportPathes.Location = new System.Drawing.Point(175, 9);
     this.panel_ImportPathes.Name = "panel_ImportPathes";
     this.panel_ImportPathes.Size = new System.Drawing.Size(433, 376);
     this.panel_ImportPathes.TabIndex = 154;
     this.panel_ImportPathes.Tag = "Import Paths";
     //
     // label68
     //
     this.label68.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.label68.Location = new System.Drawing.Point(1, 117);
     this.label68.Name = "label68";
     this.label68.Size = new System.Drawing.Size(393, 39);
     this.label68.TabIndex = 151;
     this.label68.Text = resources.GetString("label68.Text");
     //
     // dataGridView_ImportPathes
     //
     this.dataGridView_ImportPathes.AllowUserToResizeColumns = false;
     this.dataGridView_ImportPathes.AllowUserToResizeRows = false;
     dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_ImportPathes.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle14;
     this.dataGridView_ImportPathes.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView_ImportPathes.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
     this.dataGridView_ImportPathes.BackgroundColor = System.Drawing.SystemColors.Window;
     this.dataGridView_ImportPathes.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_ImportPathes.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle15;
     this.dataGridView_ImportPathes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle16.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle16.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle16.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_ImportPathes.DefaultCellStyle = dataGridViewCellStyle16;
     this.dataGridView_ImportPathes.Location = new System.Drawing.Point(0, 0);
     this.dataGridView_ImportPathes.MultiSelect = false;
     this.dataGridView_ImportPathes.Name = "dataGridView_ImportPathes";
     this.dataGridView_ImportPathes.RowHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle17.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle17.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle17.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle17.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_ImportPathes.RowHeadersDefaultCellStyle = dataGridViewCellStyle17;
     this.dataGridView_ImportPathes.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders;
     dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_ImportPathes.RowsDefaultCellStyle = dataGridViewCellStyle18;
     this.dataGridView_ImportPathes.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.dataGridView_ImportPathes.RowTemplate.Height = 18;
     this.dataGridView_ImportPathes.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridView_ImportPathes.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.dataGridView_ImportPathes.Size = new System.Drawing.Size(394, 114);
     this.dataGridView_ImportPathes.StandardTab = true;
     this.dataGridView_ImportPathes.TabIndex = 150;
     this.dataGridView_ImportPathes.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_ImportPathes_CellContentClick);
     this.dataGridView_ImportPathes.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView_ImportPathes_CellValueChanged);
     this.dataGridView_ImportPathes.RowsRemoved += new System.Windows.Forms.DataGridViewRowsRemovedEventHandler(this.dataGridView_ImportPathes_RowsRemoved);
     this.dataGridView_ImportPathes.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridView_ImportPathes_UserDeletedRow);
     //
     // listView_ParsingResults
     //
     this.listView_ParsingResults.AllowColumnReorder = true;
     this.listView_ParsingResults.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.listView_ParsingResults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.FileName,
     this.ParsedSeriesName,
     this.SeasonID,
     this.EpisodeID,
     this.EpisodeTitle});
     this.listView_ParsingResults.FullRowSelect = true;
     this.listView_ParsingResults.GridLines = true;
     this.listView_ParsingResults.HideSelection = false;
     this.listView_ParsingResults.Location = new System.Drawing.Point(0, 159);
     this.listView_ParsingResults.MultiSelect = false;
     this.listView_ParsingResults.Name = "listView_ParsingResults";
     this.listView_ParsingResults.Size = new System.Drawing.Size(394, 217);
     this.listView_ParsingResults.Sorting = System.Windows.Forms.SortOrder.Ascending;
     this.listView_ParsingResults.TabIndex = 0;
     this.listView_ParsingResults.UseCompatibleStateImageBehavior = false;
     this.listView_ParsingResults.View = System.Windows.Forms.View.Details;
     //
     // FileName
     //
     this.FileName.Text = "FileName";
     //
     // ParsedSeriesName
     //
     this.ParsedSeriesName.Text = "Parsed Series Name";
     this.ParsedSeriesName.Width = 113;
     //
     // SeasonID
     //
     this.SeasonID.Text = "Season ID";
     this.SeasonID.Width = 79;
     //
     // EpisodeID
     //
     this.EpisodeID.Text = "Episode ID";
     this.EpisodeID.Width = 74;
     //
     // EpisodeTitle
     //
     this.EpisodeTitle.Text = "Episode Title";
     this.EpisodeTitle.Width = 74;
     //
     // tabOnlineData
     //
     this.tabOnlineData.Controls.Add(this.groupBox12);
     this.tabOnlineData.ImageIndex = 8;
     this.tabOnlineData.Location = new System.Drawing.Point(4, 31);
     this.tabOnlineData.Name = "tabOnlineData";
     this.tabOnlineData.Padding = new System.Windows.Forms.Padding(3);
     this.tabOnlineData.Size = new System.Drawing.Size(873, 643);
     this.tabOnlineData.TabIndex = 12;
     this.tabOnlineData.Text = "Online Data";
     this.tabOnlineData.UseVisualStyleBackColor = true;
     //
     // groupBox12
     //
     this.groupBox12.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox12.Controls.Add(this.panel_OnlineData);
     this.groupBox12.Location = new System.Drawing.Point(3, 3);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(867, 637);
     this.groupBox12.TabIndex = 0;
     this.groupBox12.TabStop = false;
     this.groupBox12.Text = "Online Data Provider";
     //
     // panel_OnlineData
     //
     this.panel_OnlineData.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.panel_OnlineData.AutoScroll = true;
     this.panel_OnlineData.Controls.Add(this.buttonArtworkDownloadLimits);
     this.panel_OnlineData.Controls.Add(this.dbOptionCheckBox1);
     this.panel_OnlineData.Controls.Add(this.label18);
     this.panel_OnlineData.Controls.Add(this.groupBox5);
     this.panel_OnlineData.Controls.Add(this.lblImportDelaySecs);
     this.panel_OnlineData.Controls.Add(this.numericUpDownImportDelay);
     this.panel_OnlineData.Controls.Add(this.lblImportDelayCaption);
     this.panel_OnlineData.Controls.Add(this.checkboxAutoDownloadFanartSeriesName);
     this.panel_OnlineData.Controls.Add(this.checkBox_AutoDownloadMissingArtwork);
     this.panel_OnlineData.Controls.Add(this.checkBox_AutoUpdateAllFanart);
     this.panel_OnlineData.Controls.Add(this.checkBox_AutoUpdateEpisodeRatings);
     this.panel_OnlineData.Controls.Add(this.checkBox_ScanOnStartup);
     this.panel_OnlineData.Controls.Add(this.label73);
     this.panel_OnlineData.Controls.Add(this.spinMaxFanarts);
     this.panel_OnlineData.Controls.Add(this.label72);
     this.panel_OnlineData.Controls.Add(this.label71);
     this.panel_OnlineData.Controls.Add(this.cboFanartResolution);
     this.panel_OnlineData.Controls.Add(this.chkAutoDownloadFanart);
     this.panel_OnlineData.Controls.Add(this.linkAccountID);
     this.panel_OnlineData.Controls.Add(this.label2);
     this.panel_OnlineData.Controls.Add(this.numericUpDown_AutoOnlineDataRefresh);
     this.panel_OnlineData.Controls.Add(this.checkBox_AutoOnlineDataRefresh);
     this.panel_OnlineData.Controls.Add(this.checkBox_AutoChooseOrder);
     this.panel_OnlineData.Controls.Add(this.txtUserID);
     this.panel_OnlineData.Controls.Add(this.label54);
     this.panel_OnlineData.Controls.Add(this.checkDownloadEpisodeSnapshots);
     this.panel_OnlineData.Controls.Add(this.chkBlankBanners);
     this.panel_OnlineData.Controls.Add(this.label29);
     this.panel_OnlineData.Controls.Add(this.txtMainMirror);
     this.panel_OnlineData.Controls.Add(this.linkDelUpdateTime);
     this.panel_OnlineData.Controls.Add(this.label26);
     this.panel_OnlineData.Controls.Add(this.comboOnlineLang);
     this.panel_OnlineData.Controls.Add(this.checkBox_OnlineSearch);
     this.panel_OnlineData.Controls.Add(this.checkBox_AutoChooseSeries);
     this.panel_OnlineData.Controls.Add(this.checkBox_FullSeriesRetrieval);
     this.panel_OnlineData.Location = new System.Drawing.Point(6, 19);
     this.panel_OnlineData.Name = "panel_OnlineData";
     this.panel_OnlineData.Size = new System.Drawing.Size(855, 612);
     this.panel_OnlineData.TabIndex = 0;
     this.panel_OnlineData.Tag = "Online Data";
     //
     // buttonArtworkDownloadLimits
     //
     this.buttonArtworkDownloadLimits.Location = new System.Drawing.Point(35, 402);
     this.buttonArtworkDownloadLimits.Name = "buttonArtworkDownloadLimits";
     this.buttonArtworkDownloadLimits.Size = new System.Drawing.Size(209, 23);
     this.buttonArtworkDownloadLimits.TabIndex = 25;
     this.buttonArtworkDownloadLimits.Text = "Configure Artwork Download Limits...";
     this.buttonArtworkDownloadLimits.UseVisualStyleBackColor = true;
     this.buttonArtworkDownloadLimits.Click += new System.EventHandler(this.buttonArtworkDownloadLimits_Click);
     //
     // dbOptionCheckBox1
     //
     this.dbOptionCheckBox1.AutoSize = true;
     this.dbOptionCheckBox1.Location = new System.Drawing.Point(10, 355);
     this.dbOptionCheckBox1.Name = "dbOptionCheckBox1";
     this.dbOptionCheckBox1.Option = "GetTextBanners";
     this.dbOptionCheckBox1.Size = new System.Drawing.Size(282, 17);
     this.dbOptionCheckBox1.TabIndex = 23;
     this.dbOptionCheckBox1.Text = "Download Series WideBanners containing \'Text\' name";
     this.dbOptionCheckBox1.ToolTip = "Enable to download series widebanners that do not contain a graphical series name" +
     ".";
     this.dbOptionCheckBox1.UseVisualStyleBackColor = true;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(7, 283);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(50, 13);
     this.label18.TabIndex = 19;
     this.label18.Text = "Artwork";
     this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox5
     //
     this.groupBox5.Location = new System.Drawing.Point(65, 289);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(433, 2);
     this.groupBox5.TabIndex = 20;
     this.groupBox5.TabStop = false;
     //
     // lblImportDelaySecs
     //
     this.lblImportDelaySecs.AutoSize = true;
     this.lblImportDelaySecs.Location = new System.Drawing.Point(219, 144);
     this.lblImportDelaySecs.Name = "lblImportDelaySecs";
     this.lblImportDelaySecs.Size = new System.Drawing.Size(29, 13);
     this.lblImportDelaySecs.TabIndex = 11;
     this.lblImportDelaySecs.Text = "secs";
     //
     // lblImportDelayCaption
     //
     this.lblImportDelayCaption.AutoSize = true;
     this.lblImportDelayCaption.Location = new System.Drawing.Point(47, 144);
     this.lblImportDelayCaption.Name = "lblImportDelayCaption";
     this.lblImportDelayCaption.Size = new System.Drawing.Size(110, 13);
     this.lblImportDelayCaption.TabIndex = 9;
     this.lblImportDelayCaption.Text = "Delay Initial Import by:";
     //
     // checkBox_AutoUpdateAllFanart
     //
     this.checkBox_AutoUpdateAllFanart.AutoSize = true;
     this.checkBox_AutoUpdateAllFanart.Location = new System.Drawing.Point(35, 510);
     this.checkBox_AutoUpdateAllFanart.Name = "checkBox_AutoUpdateAllFanart";
     this.checkBox_AutoUpdateAllFanart.Size = new System.Drawing.Size(192, 17);
     this.checkBox_AutoUpdateAllFanart.TabIndex = 32;
     this.checkBox_AutoUpdateAllFanart.Text = "Update all existing Fanart on Import";
     this.checkBox_AutoUpdateAllFanart.UseVisualStyleBackColor = true;
     this.checkBox_AutoUpdateAllFanart.CheckedChanged += new System.EventHandler(this.checkBox_AutoUpdateAllFanart_CheckedChanged);
     //
     // label73
     //
     this.label73.Location = new System.Drawing.Point(167, 483);
     this.label73.Name = "label73";
     this.label73.Size = new System.Drawing.Size(66, 21);
     this.label73.TabIndex = 31;
     this.label73.Text = "fanarts";
     this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // spinMaxFanarts
     //
     this.spinMaxFanarts.Location = new System.Drawing.Point(123, 484);
     this.spinMaxFanarts.Maximum = new decimal(new int[] {
     99,
     0,
     0,
     0});
     this.spinMaxFanarts.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spinMaxFanarts.Name = "spinMaxFanarts";
     this.spinMaxFanarts.Size = new System.Drawing.Size(36, 20);
     this.spinMaxFanarts.TabIndex = 30;
     this.spinMaxFanarts.Value = new decimal(new int[] {
     3,
     0,
     0,
     0});
     this.spinMaxFanarts.ValueChanged += new System.EventHandler(this.spinMaxFanarts_ValueChanged);
     //
     // label72
     //
     this.label72.Location = new System.Drawing.Point(51, 483);
     this.label72.Name = "label72";
     this.label72.Size = new System.Drawing.Size(66, 21);
     this.label72.TabIndex = 29;
     this.label72.Text = "Retrieve:";
     this.label72.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label71
     //
     this.label71.Location = new System.Drawing.Point(51, 458);
     this.label71.Name = "label71";
     this.label71.Size = new System.Drawing.Size(66, 21);
     this.label71.TabIndex = 27;
     this.label71.Text = "Resolution:";
     this.label71.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cboFanartResolution
     //
     this.cboFanartResolution.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboFanartResolution.FormattingEnabled = true;
     this.cboFanartResolution.Items.AddRange(new object[] {
     "Both",
     "1280x720",
     "1920x1080"});
     this.cboFanartResolution.Location = new System.Drawing.Point(123, 458);
     this.cboFanartResolution.Name = "cboFanartResolution";
     this.cboFanartResolution.Size = new System.Drawing.Size(121, 21);
     this.cboFanartResolution.TabIndex = 28;
     this.cboFanartResolution.SelectedIndexChanged += new System.EventHandler(this.cboFanartResolution_SelectedIndexChanged);
     //
     // chkAutoDownloadFanart
     //
     this.chkAutoDownloadFanart.AutoSize = true;
     this.chkAutoDownloadFanart.Location = new System.Drawing.Point(10, 435);
     this.chkAutoDownloadFanart.Name = "chkAutoDownloadFanart";
     this.chkAutoDownloadFanart.Size = new System.Drawing.Size(202, 17);
     this.chkAutoDownloadFanart.TabIndex = 26;
     this.chkAutoDownloadFanart.Text = "Automatically download Series &Fanart";
     this.chkAutoDownloadFanart.UseVisualStyleBackColor = true;
     this.chkAutoDownloadFanart.CheckedChanged += new System.EventHandler(this.chkAutoDownloadFanart_CheckedChanged);
     //
     // linkAccountID
     //
     this.linkAccountID.AutoSize = true;
     this.linkAccountID.Location = new System.Drawing.Point(323, 58);
     this.linkAccountID.Name = "linkAccountID";
     this.linkAccountID.Size = new System.Drawing.Size(90, 13);
     this.linkAccountID.TabIndex = 5;
     this.linkAccountID.TabStop = true;
     this.linkAccountID.Text = "Account Identifier";
     this.linkAccountID.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkAccountID_LinkClicked);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(394, 170);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(39, 13);
     this.label2.TabIndex = 14;
     this.label2.Text = "&hour(s)";
     //
     // numericUpDown_AutoOnlineDataRefresh
     //
     this.numericUpDown_AutoOnlineDataRefresh.Location = new System.Drawing.Point(340, 167);
     this.numericUpDown_AutoOnlineDataRefresh.Maximum = new decimal(new int[] {
     168,
     0,
     0,
     0});
     this.numericUpDown_AutoOnlineDataRefresh.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDown_AutoOnlineDataRefresh.Name = "numericUpDown_AutoOnlineDataRefresh";
     this.numericUpDown_AutoOnlineDataRefresh.Size = new System.Drawing.Size(50, 20);
     this.numericUpDown_AutoOnlineDataRefresh.TabIndex = 13;
     this.numericUpDown_AutoOnlineDataRefresh.Value = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.numericUpDown_AutoOnlineDataRefresh.ValueChanged += new System.EventHandler(this.numericUpDown_AutoOnlineDataRefresh_ValueChanged);
     //
     // label54
     //
     this.label54.Location = new System.Drawing.Point(39, 58);
     this.label54.Name = "label54";
     this.label54.Size = new System.Drawing.Size(76, 13);
     this.label54.TabIndex = 3;
     this.label54.Text = "&Account ID:";
     this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(39, 31);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(76, 13);
     this.label29.TabIndex = 1;
     this.label29.Text = "&Main Mirror:";
     this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label26
     //
     this.label26.Location = new System.Drawing.Point(39, 85);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(76, 13);
     this.label26.TabIndex = 6;
     this.label26.Text = "&Language:";
     this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tabFollwit
     //
     this.tabFollwit.Controls.Add(this.follwitSettingsPanel1);
     this.tabFollwit.Location = new System.Drawing.Point(4, 31);
     this.tabFollwit.Name = "tabFollwit";
     this.tabFollwit.Padding = new System.Windows.Forms.Padding(3);
     this.tabFollwit.Size = new System.Drawing.Size(873, 643);
     this.tabFollwit.TabIndex = 14;
     this.tabFollwit.Text = "follw.it";
     this.tabFollwit.UseVisualStyleBackColor = true;
     //
     // follwitSettingsPanel1
     //
     this.follwitSettingsPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.follwitSettingsPanel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.follwitSettingsPanel1.Location = new System.Drawing.Point(8, 6);
     this.follwitSettingsPanel1.Name = "follwitSettingsPanel1";
     this.follwitSettingsPanel1.Size = new System.Drawing.Size(857, 631);
     this.follwitSettingsPanel1.TabIndex = 0;
     //
     // tabPage_MP_DisplayControl
     //
     this.tabPage_MP_DisplayControl.AutoScroll = true;
     this.tabPage_MP_DisplayControl.AutoScrollMinSize = new System.Drawing.Size(0, 478);
     this.tabPage_MP_DisplayControl.Controls.Add(this.groupBox1);
     this.tabPage_MP_DisplayControl.ImageIndex = 9;
     this.tabPage_MP_DisplayControl.Location = new System.Drawing.Point(4, 31);
     this.tabPage_MP_DisplayControl.Name = "tabPage_MP_DisplayControl";
     this.tabPage_MP_DisplayControl.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage_MP_DisplayControl.Size = new System.Drawing.Size(873, 643);
     this.tabPage_MP_DisplayControl.TabIndex = 5;
     this.tabPage_MP_DisplayControl.Text = "General";
     this.tabPage_MP_DisplayControl.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.dbOptChkBoxPlayOutOfOrderCheck);
     this.groupBox1.Controls.Add(this.dbOptionSQLLogging);
     this.groupBox1.Controls.Add(this.dbOptChkBox_SubCentral_DownloadSubtitlesOnPlay);
     this.groupBox1.Controls.Add(this.dbOptionCheckBox3);
     this.groupBox1.Controls.Add(this.lblRecentAddedDays);
     this.groupBox1.Controls.Add(this.nudRecentlyAddedDays);
     this.groupBox1.Controls.Add(this.cbNewEpisodeThumbIndicator);
     this.groupBox1.Controls.Add(this.label17);
     this.groupBox1.Controls.Add(this.laOnPlaySeriesOrSeasonAction);
     this.groupBox1.Controls.Add(this.cbOnPlaySeriesOrSeasonAction);
     this.groupBox1.Controls.Add(this.dbOptChkBoxCountEmptyFutureEps);
     this.groupBox1.Controls.Add(this.dbOptChkBoxScanFullscreenVideo);
     this.groupBox1.Controls.Add(this.dbOptionCheckBox2);
     this.groupBox1.Controls.Add(this.dbOptionCheckBoxSubstituteMissingArtwork);
     this.groupBox1.Controls.Add(this.nudScanRemoteShareFrequency);
     this.groupBox1.Controls.Add(this.checkBox_scanRemoteShares);
     this.groupBox1.Controls.Add(this.dbOptionCheckBoxMarkRatedEpsAsWatched);
     this.groupBox1.Controls.Add(this.checkboxRatingDisplayStars);
     this.groupBox1.Controls.Add(this.label77);
     this.groupBox1.Controls.Add(this.label76);
     this.groupBox1.Controls.Add(this.label75);
     this.groupBox1.Controls.Add(this.numericUpDownArtworkDelay);
     this.groupBox1.Controls.Add(this.label74);
     this.groupBox1.Controls.Add(this.label27);
     this.groupBox1.Controls.Add(this.numericUpDownBackdropDelay);
     this.groupBox1.Controls.Add(this.checkbox_SortSpecials);
     this.groupBox1.Controls.Add(this.linkExWatched);
     this.groupBox1.Controls.Add(this.linkImpWatched);
     this.groupBox1.Controls.Add(this.chkAllowDeletes);
     this.groupBox1.Controls.Add(this.checkBox_doFolderWatch);
     this.groupBox1.Controls.Add(this.checkBox_Episode_HideUnwatchedSummary);
     this.groupBox1.Controls.Add(this.checkBox_Episode_HideUnwatchedThumbnail);
     this.groupBox1.Controls.Add(this.checkBox_Episode_OnlyShowLocalFiles);
     this.groupBox1.Controls.Add(this.checkBox_Series_UseSortName);
     this.groupBox1.Controls.Add(this.optionAsk2Rate);
     this.groupBox1.Controls.Add(this.chkUseRegionalDateFormatString);
     this.groupBox1.Controls.Add(this.label39);
     this.groupBox1.Controls.Add(this.label38);
     this.groupBox1.Controls.Add(this.nudWatchedAfter);
     this.groupBox1.Controls.Add(this.checkBox_RandBanner);
     this.groupBox1.Controls.Add(this.textBox_PluginHomeName);
     this.groupBox1.Controls.Add(this.label16);
     this.groupBox1.Location = new System.Drawing.Point(6, 6);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(861, 635);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "General Settings";
     //
     // dbOptionCheckBox3
     //
     this.dbOptionCheckBox3.AutoSize = true;
     this.dbOptionCheckBox3.Checked = true;
     this.dbOptionCheckBox3.CheckState = System.Windows.Forms.CheckState.Checked;
     this.dbOptionCheckBox3.Location = new System.Drawing.Point(404, 146);
     this.dbOptionCheckBox3.Name = "dbOptionCheckBox3";
     this.dbOptionCheckBox3.Option = "SortSpecialSeasonLast";
     this.dbOptionCheckBox3.Size = new System.Drawing.Size(188, 17);
     this.dbOptionCheckBox3.TabIndex = 32;
     this.dbOptionCheckBox3.Text = "Sort Specials at end of season list.";
     this.dbOptionCheckBox3.ToolTip = "Enable this option to sort specials at end of season list rather than first item." +
     "";
     this.dbOptionCheckBox3.UseVisualStyleBackColor = true;
     //
     // lblRecentAddedDays
     //
     this.lblRecentAddedDays.AutoSize = true;
     this.lblRecentAddedDays.Location = new System.Drawing.Point(308, 398);
     this.lblRecentAddedDays.Name = "lblRecentAddedDays";
     this.lblRecentAddedDays.Size = new System.Drawing.Size(31, 13);
     this.lblRecentAddedDays.TabIndex = 27;
     this.lblRecentAddedDays.Text = "Days";
     //
     // cbNewEpisodeThumbIndicator
     //
     this.cbNewEpisodeThumbIndicator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbNewEpisodeThumbIndicator.FormattingEnabled = true;
     this.cbNewEpisodeThumbIndicator.Items.AddRange(new object[] {
     "None",
     "Unwatched Episodes",
     "Recently Added Episodes",
     "Recently Added Unwatched Episodes"});
     this.cbNewEpisodeThumbIndicator.Location = new System.Drawing.Point(12, 395);
     this.cbNewEpisodeThumbIndicator.Name = "cbNewEpisodeThumbIndicator";
     this.cbNewEpisodeThumbIndicator.Size = new System.Drawing.Size(233, 21);
     this.cbNewEpisodeThumbIndicator.TabIndex = 25;
     this.cbNewEpisodeThumbIndicator.SelectedIndexChanged += new System.EventHandler(this.cbNewEpisodeThumbIndicator_SelectedIndexChanged);
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(11, 378);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(117, 13);
     this.label17.TabIndex = 24;
     this.label17.Text = "New Episode Indicator:";
     //
     // laOnPlaySeriesOrSeasonAction
     //
     this.laOnPlaySeriesOrSeasonAction.AutoSize = true;
     this.laOnPlaySeriesOrSeasonAction.Location = new System.Drawing.Point(9, 332);
     this.laOnPlaySeriesOrSeasonAction.Name = "laOnPlaySeriesOrSeasonAction";
     this.laOnPlaySeriesOrSeasonAction.Size = new System.Drawing.Size(197, 13);
     this.laOnPlaySeriesOrSeasonAction.TabIndex = 22;
     this.laOnPlaySeriesOrSeasonAction.Text = "On play action on series or season view:";
     this.laOnPlaySeriesOrSeasonAction.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // cbOnPlaySeriesOrSeasonAction
     //
     this.cbOnPlaySeriesOrSeasonAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbOnPlaySeriesOrSeasonAction.FormattingEnabled = true;
     this.cbOnPlaySeriesOrSeasonAction.Items.AddRange(new object[] {
     "Do nothing",
     "Play random episode",
     "Play first unwatched episode",
     "Play random unwatched episode",
     "Play latest episode",
     "Always ask"});
     this.cbOnPlaySeriesOrSeasonAction.Location = new System.Drawing.Point(12, 350);
     this.cbOnPlaySeriesOrSeasonAction.Name = "cbOnPlaySeriesOrSeasonAction";
     this.cbOnPlaySeriesOrSeasonAction.Size = new System.Drawing.Size(233, 21);
     this.cbOnPlaySeriesOrSeasonAction.TabIndex = 23;
     this.cbOnPlaySeriesOrSeasonAction.SelectedIndexChanged += new System.EventHandler(this.cbOnPlaySeriesOrSeasonAction_SelectedIndexChanged);
     //
     // dbOptChkBoxScanFullscreenVideo
     //
     this.dbOptChkBoxScanFullscreenVideo.AutoSize = true;
     this.dbOptChkBoxScanFullscreenVideo.Location = new System.Drawing.Point(32, 309);
     this.dbOptChkBoxScanFullscreenVideo.Name = "dbOptChkBoxScanFullscreenVideo";
     this.dbOptChkBoxScanFullscreenVideo.Option = "AutoScanLocalFilesFSV";
     this.dbOptChkBoxScanFullscreenVideo.Size = new System.Drawing.Size(266, 17);
     this.dbOptChkBoxScanFullscreenVideo.TabIndex = 21;
     this.dbOptChkBoxScanFullscreenVideo.Text = "Scan remote shares while fullscreen video is active";
     this.dbOptChkBoxScanFullscreenVideo.ToolTip = "";
     this.dbOptChkBoxScanFullscreenVideo.UseVisualStyleBackColor = true;
     //
     // dbOptionCheckBox2
     //
     this.dbOptionCheckBox2.AutoSize = true;
     this.dbOptionCheckBox2.Checked = true;
     this.dbOptionCheckBox2.CheckState = System.Windows.Forms.CheckState.Checked;
     this.dbOptionCheckBox2.Location = new System.Drawing.Point(404, 238);
     this.dbOptionCheckBox2.Name = "dbOptionCheckBox2";
     this.dbOptionCheckBox2.Option = "SkipSeasonViewOnSingleSeason";
     this.dbOptionCheckBox2.Size = new System.Drawing.Size(234, 17);
     this.dbOptionCheckBox2.TabIndex = 36;
     this.dbOptionCheckBox2.Text = "Skip season view if there is only one season";
     this.dbOptionCheckBox2.ToolTip = "";
     this.dbOptionCheckBox2.UseVisualStyleBackColor = true;
     //
     // dbOptionCheckBoxSubstituteMissingArtwork
     //
     this.dbOptionCheckBoxSubstituteMissingArtwork.AutoSize = true;
     this.dbOptionCheckBoxSubstituteMissingArtwork.Location = new System.Drawing.Point(404, 284);
     this.dbOptionCheckBoxSubstituteMissingArtwork.Name = "dbOptionCheckBoxSubstituteMissingArtwork";
     this.dbOptionCheckBoxSubstituteMissingArtwork.Option = "SubstituteMissingArtwork";
     this.dbOptionCheckBoxSubstituteMissingArtwork.Size = new System.Drawing.Size(280, 17);
     this.dbOptionCheckBoxSubstituteMissingArtwork.TabIndex = 38;
     this.dbOptionCheckBoxSubstituteMissingArtwork.Text = "Substitute Missing Season Posters with Series Posters";
     this.dbOptionCheckBoxSubstituteMissingArtwork.ToolTip = "";
     this.dbOptionCheckBoxSubstituteMissingArtwork.UseVisualStyleBackColor = true;
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.Location = new System.Drawing.Point(235, 286);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(43, 13);
     this.label77.TabIndex = 20;
     this.label77.Text = "minutes";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.Location = new System.Drawing.Point(209, 99);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(20, 13);
     this.label76.TabIndex = 10;
     this.label76.Text = "ms";
     //
     // label75
     //
     this.label75.AutoSize = true;
     this.label75.Location = new System.Drawing.Point(209, 74);
     this.label75.Name = "label75";
     this.label75.Size = new System.Drawing.Size(20, 13);
     this.label75.TabIndex = 7;
     this.label75.Text = "ms";
     //
     // numericUpDownArtworkDelay
     //
     this.numericUpDownArtworkDelay.Location = new System.Drawing.Point(159, 96);
     this.numericUpDownArtworkDelay.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.numericUpDownArtworkDelay.Name = "numericUpDownArtworkDelay";
     this.numericUpDownArtworkDelay.Size = new System.Drawing.Size(44, 20);
     this.numericUpDownArtworkDelay.TabIndex = 9;
     this.numericUpDownArtworkDelay.Value = new decimal(new int[] {
     250,
     0,
     0,
     0});
     this.numericUpDownArtworkDelay.ValueChanged += new System.EventHandler(this.numericUpDownArtworkDelay_ValueChanged);
     //
     // label74
     //
     this.label74.AutoSize = true;
     this.label74.Location = new System.Drawing.Point(9, 99);
     this.label74.Name = "label74";
     this.label74.Size = new System.Drawing.Size(117, 13);
     this.label74.TabIndex = 8;
     this.label74.Text = "Artwork Loading Delay:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(9, 74);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(127, 13);
     this.label27.TabIndex = 5;
     this.label27.Text = "Backdrop Loading Delay:";
     //
     // numericUpDownBackdropDelay
     //
     this.numericUpDownBackdropDelay.Location = new System.Drawing.Point(159, 71);
     this.numericUpDownBackdropDelay.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.numericUpDownBackdropDelay.Name = "numericUpDownBackdropDelay";
     this.numericUpDownBackdropDelay.Size = new System.Drawing.Size(44, 20);
     this.numericUpDownBackdropDelay.TabIndex = 6;
     this.numericUpDownBackdropDelay.Value = new decimal(new int[] {
     250,
     0,
     0,
     0});
     this.numericUpDownBackdropDelay.ValueChanged += new System.EventHandler(this.numericUpDownBackdropDelay_ValueChanged);
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Location = new System.Drawing.Point(209, 50);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(15, 13);
     this.label39.TabIndex = 4;
     this.label39.Text = "%";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Location = new System.Drawing.Point(9, 50);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(141, 13);
     this.label38.TabIndex = 2;
     this.label38.Text = "An episode is &watched after:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(9, 23);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(141, 13);
     this.label16.TabIndex = 0;
     this.label16.Text = "&Name of the plugin in Home:";
     //
     // tab_view
     //
     this.tab_view.AutoScroll = true;
     this.tab_view.Controls.Add(this.playlistSettings);
     this.tab_view.Controls.Add(this.groupBox8);
     this.tab_view.ImageIndex = 2;
     this.tab_view.Location = new System.Drawing.Point(4, 31);
     this.tab_view.Name = "tab_view";
     this.tab_view.Padding = new System.Windows.Forms.Padding(3);
     this.tab_view.Size = new System.Drawing.Size(873, 643);
     this.tab_view.TabIndex = 7;
     this.tab_view.Text = "Views/Filters";
     this.tab_view.UseVisualStyleBackColor = true;
     //
     // playlistSettings
     //
     this.playlistSettings.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.playlistSettings.AutoScroll = true;
     this.playlistSettings.Location = new System.Drawing.Point(-1, 353);
     this.playlistSettings.Name = "playlistSettings";
     this.playlistSettings.Size = new System.Drawing.Size(866, 196);
     this.playlistSettings.TabIndex = 1;
     //
     // groupBox8
     //
     this.groupBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox8.Controls.Add(this.nudParentalControlTimeout);
     this.groupBox8.Controls.Add(this.label19);
     this.groupBox8.Controls.Add(this.buttonViewTemplates);
     this.groupBox8.Controls.Add(this.buttonPinCode);
     this.groupBox8.Controls.Add(this.buttonEditView);
     this.groupBox8.Controls.Add(this.checkBoxParentalControl);
     this.groupBox8.Controls.Add(this.label25);
     this.groupBox8.Controls.Add(this.checkCurViewEnabled);
     this.groupBox8.Controls.Add(this.lnkResetView);
     this.groupBox8.Controls.Add(this.btnRemoveView);
     this.groupBox8.Controls.Add(this.view_selStepsList);
     this.groupBox8.Controls.Add(this.btnAddView);
     this.groupBox8.Controls.Add(this._availViews);
     this.groupBox8.Controls.Add(this.label1);
     this.groupBox8.Controls.Add(this.view_selectedName);
     this.groupBox8.Location = new System.Drawing.Point(3, 6);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(862, 341);
     this.groupBox8.TabIndex = 0;
     this.groupBox8.TabStop = false;
     this.groupBox8.Text = "Customize Views";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(257, 259);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(175, 13);
     this.label19.TabIndex = 10;
     this.label19.Text = "Parental Control Auto-Lock Interval:";
     //
     // buttonPinCode
     //
     this.buttonPinCode.Location = new System.Drawing.Point(260, 227);
     this.buttonPinCode.Name = "buttonPinCode";
     this.buttonPinCode.Size = new System.Drawing.Size(75, 23);
     this.buttonPinCode.TabIndex = 8;
     this.buttonPinCode.Text = "Pin &Code...";
     this.buttonPinCode.UseVisualStyleBackColor = true;
     this.buttonPinCode.Click += new System.EventHandler(this.buttonPinCode_Click);
     //
     // buttonEditView
     //
     this.buttonEditView.Enabled = false;
     this.buttonEditView.Location = new System.Drawing.Point(429, 113);
     this.buttonEditView.Name = "buttonEditView";
     this.buttonEditView.Size = new System.Drawing.Size(75, 23);
     this.buttonEditView.TabIndex = 7;
     this.buttonEditView.Text = "&Edit";
     this.buttonEditView.UseVisualStyleBackColor = true;
     this.buttonEditView.Click += new System.EventHandler(this.buttonEditView_Click);
     //
     // checkBoxParentalControl
     //
     this.checkBoxParentalControl.AutoSize = true;
     this.checkBoxParentalControl.Location = new System.Drawing.Point(240, 204);
     this.checkBoxParentalControl.Name = "checkBoxParentalControl";
     this.checkBoxParentalControl.Size = new System.Drawing.Size(215, 17);
     this.checkBoxParentalControl.TabIndex = 6;
     this.checkBoxParentalControl.Text = "&Prompt for Pin Code when entering view";
     this.checkBoxParentalControl.UseVisualStyleBackColor = true;
     this.checkBoxParentalControl.CheckedChanged += new System.EventHandler(this.checkBoxParentalControl_CheckedChanged);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(237, 65);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(52, 13);
     this.label25.TabIndex = 3;
     this.label25.Text = "Hierarchy";
     //
     // checkCurViewEnabled
     //
     this.checkCurViewEnabled.AutoSize = true;
     this.checkCurViewEnabled.Location = new System.Drawing.Point(240, 180);
     this.checkCurViewEnabled.Name = "checkCurViewEnabled";
     this.checkCurViewEnabled.Size = new System.Drawing.Size(164, 17);
     this.checkCurViewEnabled.TabIndex = 2;
     this.checkCurViewEnabled.Text = "&View is available for selection";
     this.checkCurViewEnabled.UseVisualStyleBackColor = true;
     this.checkCurViewEnabled.CheckedChanged += new System.EventHandler(this.checkCurViewEnabled_CheckedChanged);
     //
     // lnkResetView
     //
     this.lnkResetView.AutoSize = true;
     this.lnkResetView.Location = new System.Drawing.Point(126, 297);
     this.lnkResetView.Name = "lnkResetView";
     this.lnkResetView.Size = new System.Drawing.Size(89, 13);
     this.lnkResetView.TabIndex = 3;
     this.lnkResetView.TabStop = true;
     this.lnkResetView.Text = "Reset to Defaults";
     this.lnkResetView.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkResetView_LinkClicked);
     //
     // btnRemoveView
     //
     this.btnRemoveView.Location = new System.Drawing.Point(429, 142);
     this.btnRemoveView.Name = "btnRemoveView";
     this.btnRemoveView.Size = new System.Drawing.Size(75, 23);
     this.btnRemoveView.TabIndex = 4;
     this.btnRemoveView.Text = "&Remove";
     this.btnRemoveView.UseVisualStyleBackColor = true;
     this.btnRemoveView.Click += new System.EventHandler(this.btnRemoveView_Click);
     //
     // view_selStepsList
     //
     this.view_selStepsList.Enabled = false;
     this.view_selStepsList.FormattingEnabled = true;
     this.view_selStepsList.Location = new System.Drawing.Point(240, 83);
     this.view_selStepsList.Name = "view_selStepsList";
     this.view_selStepsList.Size = new System.Drawing.Size(173, 82);
     this.view_selStepsList.TabIndex = 4;
     //
     // btnAddView
     //
     this.btnAddView.Location = new System.Drawing.Point(429, 83);
     this.btnAddView.Name = "btnAddView";
     this.btnAddView.Size = new System.Drawing.Size(75, 23);
     this.btnAddView.TabIndex = 5;
     this.btnAddView.Text = "&Add";
     this.btnAddView.UseVisualStyleBackColor = true;
     this.btnAddView.Click += new System.EventHandler(this.btnAddView_Click);
     //
     // _availViews
     //
     this._availViews.FormattingEnabled = true;
     this._availViews.Location = new System.Drawing.Point(26, 35);
     this._availViews.Name = "_availViews";
     this._availViews.Size = new System.Drawing.Size(189, 251);
     this._availViews.TabIndex = 0;
     this._availViews.SelectedIndexChanged += new System.EventHandler(this._availViews_SelectedIndexChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(237, 35);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(38, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Name:";
     //
     // view_selectedName
     //
     this.view_selectedName.Location = new System.Drawing.Point(289, 32);
     this.view_selectedName.Name = "view_selectedName";
     this.view_selectedName.Size = new System.Drawing.Size(124, 20);
     this.view_selectedName.TabIndex = 1;
     this.view_selectedName.TextChanged += new System.EventHandler(this.view_selectedName_TextChanged);
     //
     // tabLogoRules
     //
     this.tabLogoRules.Controls.Add(this.label65);
     this.tabLogoRules.Controls.Add(this.groupBox7);
     this.tabLogoRules.ImageIndex = 5;
     this.tabLogoRules.Location = new System.Drawing.Point(4, 31);
     this.tabLogoRules.Name = "tabLogoRules";
     this.tabLogoRules.Padding = new System.Windows.Forms.Padding(3);
     this.tabLogoRules.Size = new System.Drawing.Size(873, 643);
     this.tabLogoRules.TabIndex = 9;
     this.tabLogoRules.Text = "Logos";
     this.tabLogoRules.UseVisualStyleBackColor = true;
     //
     // label65
     //
     this.label65.AutoSize = true;
     this.label65.Location = new System.Drawing.Point(11, 7);
     this.label65.Name = "label65";
     this.label65.Size = new System.Drawing.Size(592, 26);
     this.label65.TabIndex = 11;
     this.label65.Text = "Logo Rules will be overridden by skin if defined, to override set the Import attr" +
     "ibute to false in your TVSeries.SkinSettings.xml \r\nlocated in your skin director" +
     "y.\r\n";
     //
     // groupBox7
     //
     this.groupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox7.Controls.Add(this.btnLogoDeleteAll);
     this.groupBox7.Controls.Add(this.btnLogoDown);
     this.groupBox7.Controls.Add(this.btnlogoUp);
     this.groupBox7.Controls.Add(this.lnkLogoImp);
     this.groupBox7.Controls.Add(this.lstLogos);
     this.groupBox7.Controls.Add(this.btnLogoTemplate);
     this.groupBox7.Controls.Add(this.btnrmvLogo);
     this.groupBox7.Controls.Add(this.lnkLogoExport);
     this.groupBox7.Controls.Add(this.btnLogoEdit);
     this.groupBox7.Controls.Add(this.addLogo);
     this.groupBox7.Location = new System.Drawing.Point(8, 43);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(859, 594);
     this.groupBox7.TabIndex = 5;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "Logo Configuration";
     //
     // btnLogoDeleteAll
     //
     this.btnLogoDeleteAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnLogoDeleteAll.Location = new System.Drawing.Point(565, 564);
     this.btnLogoDeleteAll.Name = "btnLogoDeleteAll";
     this.btnLogoDeleteAll.Size = new System.Drawing.Size(75, 23);
     this.btnLogoDeleteAll.TabIndex = 6;
     this.btnLogoDeleteAll.Text = "Delete All";
     this.btnLogoDeleteAll.UseVisualStyleBackColor = true;
     this.btnLogoDeleteAll.Click += new System.EventHandler(this.btnLogoDeleteAll_Click);
     //
     // tabFormattingRules
     //
     this.tabFormattingRules.Controls.Add(this.label64);
     this.tabFormattingRules.Controls.Add(this.formattingConfiguration1);
     this.tabFormattingRules.ImageIndex = 6;
     this.tabFormattingRules.Location = new System.Drawing.Point(4, 31);
     this.tabFormattingRules.Name = "tabFormattingRules";
     this.tabFormattingRules.Padding = new System.Windows.Forms.Padding(3);
     this.tabFormattingRules.Size = new System.Drawing.Size(873, 643);
     this.tabFormattingRules.TabIndex = 10;
     this.tabFormattingRules.Text = "Formatting";
     this.tabFormattingRules.UseVisualStyleBackColor = true;
     //
     // label64
     //
     this.label64.AutoSize = true;
     this.label64.Location = new System.Drawing.Point(11, 7);
     this.label64.Name = "label64";
     this.label64.Size = new System.Drawing.Size(617, 26);
     this.label64.TabIndex = 11;
     this.label64.Text = "Formatting Rules will be overridden by skin if defined, to override set the Impor" +
     "t attribute to false in your TVSeries.SkinSettings.xml \r\nlocated in your skin di" +
     "rectory.\r\n";
     //
     // formattingConfiguration1
     //
     this.formattingConfiguration1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.formattingConfiguration1.Location = new System.Drawing.Point(8, 44);
     this.formattingConfiguration1.Name = "formattingConfiguration1";
     this.formattingConfiguration1.Size = new System.Drawing.Size(780, 593);
     this.formattingConfiguration1.TabIndex = 6;
     //
     // tabLayoutSettings
     //
     this.tabLayoutSettings.AutoScroll = true;
     this.tabLayoutSettings.Controls.Add(this.label37);
     this.tabLayoutSettings.Controls.Add(this.groupBox3);
     this.tabLayoutSettings.Controls.Add(this.groupBox4);
     this.tabLayoutSettings.Controls.Add(this.groupBox2);
     this.tabLayoutSettings.ImageIndex = 3;
     this.tabLayoutSettings.Location = new System.Drawing.Point(4, 31);
     this.tabLayoutSettings.Name = "tabLayoutSettings";
     this.tabLayoutSettings.Padding = new System.Windows.Forms.Padding(3);
     this.tabLayoutSettings.Size = new System.Drawing.Size(873, 643);
     this.tabLayoutSettings.TabIndex = 11;
     this.tabLayoutSettings.Text = "Layout";
     this.tabLayoutSettings.UseVisualStyleBackColor = true;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Location = new System.Drawing.Point(11, 7);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(644, 26);
     this.label37.TabIndex = 10;
     this.label37.Text = "Listing Format Settings will be overridden by skin if defined, to override set th" +
     "e Import attribute to false in your TVSeries.SkinSettings.xml \r\nlocated in your " +
     "skin directory.\r\n";
     //
     // groupBox3
     //
     this.groupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox3.Controls.Add(this.richTextBox_seasonFormat_Col3);
     this.groupBox3.Controls.Add(this.label12);
     this.groupBox3.Controls.Add(this.richTextBox_seasonFormat_Main);
     this.groupBox3.Controls.Add(this.label13);
     this.groupBox3.Controls.Add(this.richTextBox_seasonFormat_Col1);
     this.groupBox3.Controls.Add(this.richTextBox_seasonFormat_Subtitle);
     this.groupBox3.Controls.Add(this.label14);
     this.groupBox3.Controls.Add(this.richTextBox_seasonFormat_Col2);
     this.groupBox3.Controls.Add(this.label15);
     this.groupBox3.Controls.Add(this.richTextBox_seasonFormat_Title);
     this.groupBox3.Location = new System.Drawing.Point(10, 166);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(852, 121);
     this.groupBox3.TabIndex = 5;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Season View";
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(6, 47);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(85, 13);
     this.label12.TabIndex = 5;
     this.label12.Text = "Title Format:";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(6, 25);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(85, 13);
     this.label13.TabIndex = 0;
     this.label13.Text = "Listing Format:";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label14
     //
     this.label14.Location = new System.Drawing.Point(6, 68);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(85, 13);
     this.label14.TabIndex = 7;
     this.label14.Text = "Subtitle Format:";
     this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(6, 89);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(85, 13);
     this.label15.TabIndex = 9;
     this.label15.Text = "Main Format:";
     this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox4
     //
     this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox4.Controls.Add(this.richTextBox_episodeFormat_Col3);
     this.groupBox4.Controls.Add(this.richTextBox_episodeFormat_Col2);
     this.groupBox4.Controls.Add(this.richTextBox_episodeFormat_Main);
     this.groupBox4.Controls.Add(this.label7);
     this.groupBox4.Controls.Add(this.richTextBox_episodeFormat_Subtitle);
     this.groupBox4.Controls.Add(this.label8);
     this.groupBox4.Controls.Add(this.richTextBox_episodeFormat_Title);
     this.groupBox4.Controls.Add(this.label9);
     this.groupBox4.Controls.Add(this.richTextBox_episodeFormat_Col1);
     this.groupBox4.Controls.Add(this.label10);
     this.groupBox4.Location = new System.Drawing.Point(10, 293);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(852, 121);
     this.groupBox4.TabIndex = 6;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Episode View";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(6, 25);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(85, 13);
     this.label7.TabIndex = 0;
     this.label7.Text = "Listing Format:";
     this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(6, 46);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(85, 13);
     this.label8.TabIndex = 4;
     this.label8.Text = "Title Format:";
     this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(6, 67);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(85, 13);
     this.label9.TabIndex = 6;
     this.label9.Text = "Subtitle Format:";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(6, 90);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(85, 13);
     this.label10.TabIndex = 8;
     this.label10.Text = "Main Format:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.richTextBox_seriesFormat_Col3);
     this.groupBox2.Controls.Add(this.richTextBox_seriesFormat_Main);
     this.groupBox2.Controls.Add(this.richTextBox_seriesFormat_Subtitle);
     this.groupBox2.Controls.Add(this.richTextBox_seriesFormat_Col2);
     this.groupBox2.Controls.Add(this.richTextBox_seriesFormat_Title);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Controls.Add(this.richTextBox_seriesFormat_Col1);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Location = new System.Drawing.Point(10, 39);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(852, 121);
     this.groupBox2.TabIndex = 4;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Series View";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(6, 29);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(85, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Listing Format:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(6, 92);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(85, 13);
     this.label6.TabIndex = 9;
     this.label6.Text = "Main Format:";
     this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 71);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 13);
     this.label5.TabIndex = 7;
     this.label5.Text = "Subtitle Format:";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(6, 50);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(85, 13);
     this.label4.TabIndex = 5;
     this.label4.Text = "Title Format:";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // tabAbout
     //
     this.tabAbout.AutoScroll = true;
     this.tabAbout.Controls.Add(this.aboutScreen);
     this.tabAbout.ImageIndex = 4;
     this.tabAbout.Location = new System.Drawing.Point(4, 31);
     this.tabAbout.Name = "tabAbout";
     this.tabAbout.Padding = new System.Windows.Forms.Padding(3);
     this.tabAbout.Size = new System.Drawing.Size(873, 643);
     this.tabAbout.TabIndex = 8;
     this.tabAbout.Text = "About";
     this.tabAbout.UseVisualStyleBackColor = true;
     //
     // aboutScreen
     //
     this.aboutScreen.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.aboutScreen.AutoScroll = true;
     this.aboutScreen.BackColor = System.Drawing.Color.White;
     this.aboutScreen.Location = new System.Drawing.Point(2, 3);
     this.aboutScreen.Name = "aboutScreen";
     this.aboutScreen.Size = new System.Drawing.Size(871, 640);
     this.aboutScreen.TabIndex = 0;
     //
     // listBox_Log
     //
     this.listBox_Log.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBox_Log.FormattingEnabled = true;
     this.listBox_Log.HorizontalScrollbar = true;
     this.listBox_Log.Location = new System.Drawing.Point(10, 10);
     this.listBox_Log.Name = "listBox_Log";
     this.listBox_Log.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
     this.listBox_Log.Size = new System.Drawing.Size(130, 26);
     this.listBox_Log.TabIndex = 5;
     //
     // ConfigurationForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(881, 692);
     this.Controls.Add(this.splitMain_Log);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MinimumSize = new System.Drawing.Size(820, 730);
     this.Name = "ConfigurationForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "MP-TV Series Configuration";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConfigurationForm_FormClosing);
     this.contextMenuStrip_DetailsTree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.nudWatchedAfter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudScanRemoteShareFrequency)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudRecentlyAddedDays)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Replace)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudParentalControlTimeout)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownImportDelay)).EndInit();
     this.splitMain_Log.Panel1.ResumeLayout(false);
     this.splitMain_Log.Panel2.ResumeLayout(false);
     this.splitMain_Log.ResumeLayout(false);
     this.tabControl_Details.ResumeLayout(false);
     this.tabPage_Details.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_SeriesPoster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.detailsPropertyBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox_Series)).EndInit();
     this.panDBLocation.ResumeLayout(false);
     this.panDBLocation.PerformLayout();
     this.tabPage_Import.ResumeLayout(false);
     this.splitContainer_SettingsOutput.Panel1.ResumeLayout(false);
     this.splitContainer_SettingsOutput.Panel2.ResumeLayout(false);
     this.splitContainer_SettingsOutput.ResumeLayout(false);
     this.splitContainerImportSettings.Panel1.ResumeLayout(false);
     this.splitContainerImportSettings.Panel2.ResumeLayout(false);
     this.splitContainerImportSettings.ResumeLayout(false);
     this.panel_Expressions.ResumeLayout(false);
     this.panel_Expressions.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView_Expressions)).EndInit();
     this.panel_StringReplacements.ResumeLayout(false);
     this.panel_StringReplacements.PerformLayout();
     this.panel_ImportPathes.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView_ImportPathes)).EndInit();
     this.tabOnlineData.ResumeLayout(false);
     this.groupBox12.ResumeLayout(false);
     this.panel_OnlineData.ResumeLayout(false);
     this.panel_OnlineData.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinMaxFanarts)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_AutoOnlineDataRefresh)).EndInit();
     this.tabFollwit.ResumeLayout(false);
     this.tabPage_MP_DisplayControl.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownArtworkDelay)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownBackdropDelay)).EndInit();
     this.tab_view.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     this.groupBox8.PerformLayout();
     this.tabLogoRules.ResumeLayout(false);
     this.tabLogoRules.PerformLayout();
     this.groupBox7.ResumeLayout(false);
     this.tabFormattingRules.ResumeLayout(false);
     this.tabFormattingRules.PerformLayout();
     this.tabLayoutSettings.ResumeLayout(false);
     this.tabLayoutSettings.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.tabAbout.ResumeLayout(false);
     this.ResumeLayout(false);
 }
		private static void Handle_About (
					MeshServerShell Dispatch, string[] args, int index) {
			About		Options = new About ();

			var Registry = new Goedel.Registry.Registry ();



#pragma warning disable 162
			for (int i = index; i< args.Length; i++) {
				if 	(!IsFlag (args [i][0] )) {
					throw new System.Exception ("Unexpected parameter: " + args[i]);}			
				string Rest = args [i].Substring (1);

				TagType_About TagType = (TagType_About) Registry.Find (Rest);

				// here have the cases for what to do with it.

				switch (TagType) {
					default : throw new System.Exception ("Internal error");
					}
				}

#pragma warning restore 162
			Dispatch.About (Options);

			}
        private void buttonAbout_Click(object sender, RoutedEventArgs e)
        {
            About dialog = new About();

            dialog.AboutData = _aboutData;

            dialog.SetCreditsInformation(CultureHelper.GetString(Properties.CreditsResource.ResourceManager, "CREDITS"));

            DialogPanel.ShowDialog(Properties.Resources.ResourceManager, "ABOUT", dialog, "buttonOK", DialogButtons.Close, null);
        }
		public virtual void About ( About Options
				) {

			char UsageFlag = '-';
				{
#pragma warning disable 219
					About		Dummy = new About ();
#pragma warning restore 219

					Console.Write ("{0}about ", UsageFlag);
					Console.WriteLine ();

					Console.WriteLine ("    Report version and build date");

				}

			Console.WriteLine ("Not Yet Implemented");
			}
 public IResult Update(About content)
 {
     _aboutDal.Update(content);
     return(new SuccessResult());
 }
Beispiel #36
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     About a = new About();
     a.ShowDialog();
 }
Beispiel #37
0
                //
		// Called on the Window delete icon clicked
		//
		void OnDelete (object sender, DeleteEventArgs a)
		{
                        AboutBox = null;
		}
Beispiel #38
0
        //关于
        private void About_Click(object sender, RoutedEventArgs e)
        {
            About about = new About();

            about.ShowDialog();
        }
Beispiel #39
0
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     About newAbout = new About();
     newAbout.Show();
 }
Beispiel #40
0
 // ====================================================================
 // ====================================================================
 // Description:	Invoke about dialog box
 // Return:		void
 void About(object sender, EventArgs e)
 {
     About dlg = new About();
     dlg.Show();
 }
		private static void Usage () {

				Console.WriteLine ("MatheMatical Mesh Server");
				Console.WriteLine ("");

				{
#pragma warning disable 219
					Start		Dummy = new Start ();
#pragma warning restore 219

					Console.Write ("{0}start ", UsageFlag);
					Console.Write ("[{0}] ", Dummy.Address.Usage (null, "address", UsageFlag));
					Console.Write ("[{0}] ", Dummy.MeshStore.Usage ("mesh", "value", UsageFlag));
					Console.Write ("[{0}] ", Dummy.PortalStore.Usage ("mesh", "value", UsageFlag));
					Console.Write ("[{0}] ", Dummy.Verify.Usage ("verify", "value", UsageFlag));
					Console.WriteLine ();

				}

				{
#pragma warning disable 219
					About		Dummy = new About ();
#pragma warning restore 219

					Console.Write ("{0}about ", UsageFlag);
					Console.WriteLine ();

					Console.WriteLine ("    Report version and build date");

				}

			} // Usage 
Beispiel #42
0
	private void AboutCallback (object o, EventArgs args)
	{
		Pixbuf logo = new Pixbuf (".." + System.IO.Path.DirectorySeparatorChar + "art" + System.IO.Path.DirectorySeparatorChar + "about.png");
		String[] authors = new string[] {
			"Petr Danecek ([email protected])",
			"Radek Doulik ([email protected])"
		};
		string[] documentors = new string[] {};

		About about = new About ("Object Browser", version,
					 "Copyright (C) 2002, 2003 Monotalk team",
					 "Monotalk Object Browser",
					 authors, documentors, "", logo);
		about.Show ();
	}
 private void About_Click(object sender, RoutedEventArgs e)
 {
     var about = new About();
     //
     about.Title = "xBIM Xplorer";
     about.Hyperlink = new Uri("http://xbim.codeplex.com", UriKind.Absolute);
     about.HyperlinkText = "http://xbim.codeplex.com";
     about.Publisher = "xBIM Team - Steve Lockley";
     about.Description = "This application is designed to demonstrate potential usages of the xBIM toolkit";
     about.ApplicationLogo = new BitmapImage(new Uri(@"pack://application:,,/xBIM.ico", UriKind.RelativeOrAbsolute));
     about.Copyright = "Prof. Steve Lockley";
     // about.PublisherLogo = about.ApplicationLogo;
     about.AdditionalNotes = "The xBIM toolkit is an Open Source software initiative to help software developers and researchers to support the next generation of BIM tools; unlike other open source application xBIM license is compatible with commercial environments (http://xbim.codeplex.com/license)";
     about.Show();
 }
Beispiel #44
0
 private void aboutButton_Click(object sender, EventArgs e)
 {
     About a = new About();
     a.ShowDialog();
 }
        public StudioView(Action<IHTMLElement, Action<ISaveAction>> AddSaveButton = null)
        {
            Content.style.position = IStyle.PositionEnum.absolute;
            Content.style.left = "0px";
            Content.style.right = "0px";
            Content.style.top = "0px";
            Content.style.bottom = "0px";

            new TwentyTenWorkspace().ToBackground(Content.style, true);

            var WorkspaceHeaderTab0 = new IHTMLDiv().With(
                div =>
                {
                    div.style.position = IStyle.PositionEnum.absolute;
                    div.style.top = "0px";
                    div.style.left = "0px";
                    div.style.width = "14em";
                    div.style.height = "6em";

                    div.style.padding = "0.5em";

                    new Glow1().ToBackground(div.style, false);
                }
            ).AttachTo(Content);

            var WorkspaceHeaderTab1 = new IHTMLDiv().With(
                div =>
                {
                    div.style.position = IStyle.PositionEnum.absolute;
                    div.style.top = "0px";
                    div.style.left = "14em";
                    div.style.width = "20em";
                    div.style.height = "6em";

                    div.style.padding = "0.5em";

                    new Glow1().ToBackground(div.style, false);
                }
            ).AttachTo(Content);

            var WorkspaceHeaderTab2 = new IHTMLDiv().With(
                div =>
                {
                    div.style.position = IStyle.PositionEnum.absolute;
                    div.style.top = "0px";
                    div.style.left = "34em";
                    div.style.right = "6em";
                    div.style.height = "6em";

                    div.style.padding = "0.5em";

                    new Glow1().ToBackground(div.style, false);
                }
            ).AttachTo(Content);

            var WorkspaceHeaderTab7 = new IHTMLDiv().With(
                 div =>
                 {
                     div.style.position = IStyle.PositionEnum.absolute;
                     div.style.top = "0px";
                     div.style.width = "6em";
                     div.style.right = "0px";
                     div.style.height = "6em";

                     //div.style.padding = "0.5em";

                     new Glow1().ToBackground(div.style, false);
                 }
             ).AttachTo(Content);

            var WorkspaceHeaderTab0Text = default(IHTMLSpan);



            new DownloadSDK
            {

            }.AttachTo(
                 new IHTMLAnchor
                 {
                     title = "Download JSC SDK!",
                     href = "http://download.jsc-solutions.net"
                 }.AttachTo(WorkspaceHeaderTab7)
            );

            @"studio.jsc-solutions.net".ToDocumentTitle().With(
                title =>
                {
                    WorkspaceHeaderTab0Text = new IHTMLSpan { innerText = title };

                    WorkspaceHeaderTab0Text.AttachTo(WorkspaceHeaderTab0);
                    //WorkspaceHeaderTab0Text.style.SetLocation(16, 8);
                    WorkspaceHeaderTab0Text.style.fontFamily = IStyle.FontFamilyEnum.Tahoma;
                    WorkspaceHeaderTab0Text.style.color = Color.White;
                    WorkspaceHeaderTab0Text.style.display = IStyle.DisplayEnum.block;

                    // http://www.quirksmode.org/css/textshadow.html
                    WorkspaceHeaderTab0Text.style.textShadow = "#808080 4px 2px 2px";

                }
            );


            if (AddSaveButton != null)
                AddSaveButton(WorkspaceHeaderTab0Text, i => Save = i);

            // em + px :)
            var Workspace0 = new IHTMLDiv().With(
                div =>
                {
                    div.style.position = IStyle.PositionEnum.absolute;
                    div.style.left = "0px";
                    div.style.right = "0px";
                    div.style.bottom = "0px";
                    div.style.top = "6em";
                }
            ).AttachTo(Content);

            // workspace contains the split views
            var Workspace = new IHTMLDiv().With(
                div =>
                {
                    div.style.position = IStyle.PositionEnum.absolute;
                    div.style.left = "6px";
                    div.style.right = "6px";
                    div.style.bottom = "6px";
                    div.style.top = "6px";
                }
            ).AttachTo(Workspace0);

            // in this project we wont be having toolbox or toolbar yet

            Action<HorizontalSplit> ApplyStyle =
                t =>
                {
                    t.Split.Splitter.style.backgroundColor = Color.None;
                    t.SplitImageContainer.Orphanize();
                    t.SplitArea.Target.style.borderLeft = "0";
                    t.SplitArea.Target.style.borderRight = "0";
                    t.SplitArea.Target.style.width = "6px";
                    t.SplitArea.Target.style.Opacity = 0.7;

                    // should we obselete JSColor already?
                    t.SelectionColor = JSColor.Black;
                };

            var EditorTreeSplit = new HorizontalSplit
            {
                Minimum = 0,
                Maximum = 1,
                Value = 0.7,
            };

            EditorTreeSplit.With(ApplyStyle);

            EditorTreeSplit.Split.Splitter.style.backgroundColor = Color.None;


            EditorTreeSplit.Container.AttachTo(Workspace);



            var Split = new HorizontalSplit
            {
                Minimum = 0,
                Maximum = 1,
                Value = 0.3,
            };

            Split.With(ApplyStyle);

            Split.Split.Splitter.style.backgroundColor = Color.None;

            EditorTreeSplit.LeftContainer = Split.Container;



            var SolutionToolbox = new SolutionDockWindowPage();

            SolutionToolbox.HeaderText.innerText = "Toolbox";
            SolutionToolbox.Content.style.backgroundColor = Color.White;
            SolutionToolbox.Content.style.padding = "2px";
            SolutionToolbox.Content.style.overflow = IStyle.OverflowEnum.auto;
            SolutionToolbox.Content.Clear();


            var vv = new SolutionToolboxListView();

            vv.Container.style.color = Color.Black;
            //vv.Container.AttachTo(SolutionToolbox.Content);

            var items = new StockToolboxTabsForHTMLDocument();

            // jsc market components

            vv.Add(
             new SolutionToolboxListViewTab
             {
                 DataType = "DataTable",

                 Name = "DataTable",
                 Title = "DataTable",
                 Text = "DataTable",
                 Icon = new DataTableImage()
             }
          );

            vv.Add(
                new SolutionToolboxListViewTab
                {
                    DataType = "SpiralDataType",

                    Name = "Spiral1",
                    Title = "Spiral",
                    Text = "Spiral",
                    Icon = new Spiral()
                }
             );

            // can we drag this into 
            // code ?
            // msvs gets the image link
            //http://192.168.43.252:11924/assets/ScriptCoreLib.Ultra.Components/StockToolboxImageTransparent64.png?data-jsc-type=DAETruck
            vv.Add(
                  new SolutionToolboxListViewTab
                  {
                      DataType = "DAETruck",

                      Name = "DAETruck",
                      Title = "DAETruck",
                      Text = "DAETruck",
                      Icon = new DAETruck()
                  }
               );

            vv.Add(
                new SolutionToolboxListViewTab
                {
                    DataType = "WebGLEarthByBjorn",

                    Name = "WebGLEarthByBjorn",
                    Title = "WebGLEarthByBjorn",
                    Text = "WebGLEarthByBjorn",
                    Icon = new WebGLEarthByBjorn()
                }
                );


            items.WithEach(vv.Add);




            var Viewer = new SolutionDocumentViewer();
            SolutionDocumentViewerTab File7Tab = "Design/App.htm";
            Viewer.Add(File7Tab);

            #region OutputFile
            var OutputFile = new SolutionFile();
            var OutputFileViewer = new SolutionFileView();

            // fullscreen! :)
            OutputFileViewer.Container.style.height = "100%";

            OutputFile.IndentStack.Push(
                delegate
                {
                    OutputFile.Write(SolutionFileTextFragment.Comment, "" + DateTime.Now);
                    OutputFile.WriteSpace();
                }
            );

            Action<string> OutputWriteLine =
                n =>
                {
                    // Would we want to rewire System.Out? Console.WriteLine?
                    OutputFile.WriteIndent();
                    OutputFile.WriteLine(n);

                    // we could have a resume feature? now we just go and clear...
                    OutputFileViewer.File = OutputFile;
                };


            OutputWriteLine("studio.jsc-solutions.net ready!");
            #endregion

            SolutionDocumentViewerTab OutputTab = "Output";
            Viewer.Add(OutputTab);
            OutputTab.TabElement.style.Float = IStyle.FloatEnum.right;


            SolutionDocumentViewerTab AboutTab = "Project";
            Viewer.Add(AboutTab);
            AboutTab.TabElement.style.Float = IStyle.FloatEnum.right;


            var CurrentDesigner = new SolutionFileDesigner();




            var HTMLDesigner = new SolutionFileDesignerHTMLElementTabs();

            CurrentDesigner.Add(HTMLDesigner);


            // undoable?
            var sln = new SolutionBuilder();




            #region CodeSourceA
            var CodeSourceATab =
                new SolutionFileDesignerTab
                {
                    Image = new RTA_mode_html(),
                    Text = "Generated Code"
                };

            var CodeSourceAView = new SolutionFileView();

            CodeSourceAView.Container.style.position = IStyle.PositionEnum.absolute;
            CodeSourceAView.Container.style.left = "0px";
            CodeSourceAView.Container.style.right = "0px";
            CodeSourceAView.Container.style.top = "0px";
            CodeSourceAView.Container.style.bottom = "0px";

            CodeSourceAView.Container.style.display = IStyle.DisplayEnum.none;
            CodeSourceAView.Container.AttachTo(CurrentDesigner.Content);

            CodeSourceATab.Deactivated +=
                delegate
                {
                    CodeSourceAView.Container.style.display = IStyle.DisplayEnum.none;
                };

            CodeSourceATab.Activated +=
                delegate
                {
                    HTMLDesigner.HTMLDesignerContent.WhenContentReady(
                        body =>
                        {
                            var CodeSourceFile = new SolutionFile
                            {

                                Name = "Default.htm"
                            };

                            var Type = new SolutionProjectLanguageType
                            {
                                Comments = new SolutionFileComment[] { "This type was generated from the HTML file." },
                                Namespace = sln.Name + ".HTML.Pages",
                                Name = "IDefaultPage",
                                IsInterface = true,
                            };

                            (from n in body.AsXElement().DescendantsAndSelf()
                             let id = n.Attribute("id")
                             where id != null
                             select new { n, id }
                            ).WithEach(
                                k =>
                                {
                                    Type.Properties.Add(
                                        new KnownStockTypes.ScriptCoreLib.JavaScript.DOM.HTML.IHTMLElement().ToAutoProperty(k.id.Value)
                                    );
                                }
                            );

                            sln.Language.WriteType(CodeSourceFile, Type, null);

                            CodeSourceAView.File = CodeSourceFile;

                            CodeSourceAView.Container.style.display = IStyle.DisplayEnum.empty;
                        }
                    );
                };


            #endregion


            #region CodeSourceB
            var CodeSourceBTab =
                new SolutionFileDesignerTab
                {
                    Image = new RTA_mode_html(),
                    // all source code, not just html?
                    Text = "Source"
                };

            var CodeSourceBView = new SolutionFileView();

            CodeSourceBView.Container.style.position = IStyle.PositionEnum.absolute;
            CodeSourceBView.Container.style.left = "0px";
            CodeSourceBView.Container.style.right = "0px";
            CodeSourceBView.Container.style.top = "0px";
            CodeSourceBView.Container.style.bottom = "0px";

            CodeSourceBView.Container.style.display = IStyle.DisplayEnum.none;
            CodeSourceBView.Container.AttachTo(CurrentDesigner.Content);

            CodeSourceBTab.Deactivated +=
                delegate
                {
                    CodeSourceBView.Container.style.display = IStyle.DisplayEnum.none;
                };

            CodeSourceBTab.Activated +=
                delegate
                {

                    CodeSourceBView.Container.style.display = IStyle.DisplayEnum.empty;
                };


            #endregion

            #region CodeSourceFormsDesignerTab
            var CodeSourceFormsDesignerTab =
                new SolutionFileDesignerTab
                {
                    Image = new RTA_mode_design(),
                    // all source code, not just html?
                    Text = "Designer"
                };


            var CodeSourceFormsDesignerTabView = new SolutionFileView();

            CodeSourceFormsDesignerTabView.Container.style.With(
                style =>
                {
                    style.position = IStyle.PositionEnum.absolute;
                    style.left = "0px";
                    style.right = "0px";
                    style.top = "0px";
                    style.bottom = "0px";

                    style.display = IStyle.DisplayEnum.none;
                }
            );

            new IHTMLDiv().With(
                div =>
                {
                    div.style.position = IStyle.PositionEnum.absolute;
                    div.style.left = "16px";
                    div.style.top = "16px";
                    div.style.width = "400px";
                    div.style.height = "300px";
                    div.style.backgroundColor = Color.FromGray(0xe0);
                    div.style.border = "1px solid gray";
                    div.AttachTo(CodeSourceFormsDesignerTabView.Container);
                }
            );


            CodeSourceFormsDesignerTabView.Container.AttachTo(CurrentDesigner.Content);

            CodeSourceFormsDesignerTab.Deactivated +=
                delegate
                {
                    CodeSourceFormsDesignerTabView.Container.style.display = IStyle.DisplayEnum.none;
                };

            CodeSourceFormsDesignerTab.Activated +=
                delegate
                {

                    CodeSourceFormsDesignerTabView.Container.style.display = IStyle.DisplayEnum.empty;
                };


            #endregion

            CurrentDesigner.Add(CodeSourceFormsDesignerTab);
            CurrentDesigner.Add(CodeSourceBTab);
            CurrentDesigner.Add(CodeSourceATab);




            var wLeftScrollable = new System.Windows.Forms.Form
            {
                BackColor = global::System.Drawing.Color.White,
                Text = "Toolbox",
                ControlBox = false,
                ShowIcon = false,
                AutoScroll = true
            };

            vv.Container.AttachTo(
                wLeftScrollable.GetHTMLTargetContainer()
            );

            //wLeftScrollable.Show();

            Split.Split.LeftScrollable.style.zIndex = 0;
            wLeftScrollable.AttachFormTo(Split.Split.LeftScrollable);


            //wLeftScrollable.PopupInsteadOfClosing();

            //Split.Split.LeftScrollable = (IHTMLDiv)(object)SolutionToolbox.body;
            Split.Split.RightScrollable = Viewer.Container;

            // ...





            #region dynamic content
            Func<IEnumerable<XElement>> GetPages = delegate
            {
                return from n in sln.ApplicationPage.DescendantsAndSelf()
                       let type = n.Attribute(SolutionBuilderInteractive.DataTypeAttribute)
                       where type != null
                       let id = n.Attribute("id")
                       where id != null
                       select n;
            };

            sln.Interactive.GenerateApplicationExpressions +=
                Add =>
                {


                    // page.PageContainer.ReplaceWith(
                    GetPages().WithEach(
                        k =>
                        {
                            var id = k.Attribute("id").Value;

                            if (id == "Page1")
                            {
                                Add(
                                    new StockReplaceWithNewPageExpression(id)
                                );
                            }

                            if (id == "UserControl1")
                            {
                                Add(
                                    new StockReplaceWithNewUserControlExpression(sln.Name + ".Components", id)
                                );
                            }

                            if (id == "Applet1")
                            {
                                Add(
                                    new StockReplaceWithNewAppletExpression(sln.Name + ".Components", id)
                                );
                            }

                            if (id == "Sprite1")
                            {
                                Add(
                                    new StockReplaceWithNewSpriteExpression(sln.Name + ".Components", id)
                                );
                            }

                            if (id == "AppletUserControl1")
                            {
                                Add(
                                    new StockReplaceWithNewAppletExpression(sln.Name + ".Components", id)
                                );
                            }
                        }
                    );
                };

            sln.Interactive.GenerateHTMLFiles +=
                Add =>
                {

                    GetPages().WithEach(
                        k =>
                        {
                            var id = k.Attribute("id").Value;

                            if (id == "Page1")
                            {
                                var __Content = new XElement(StockPageDefault.Page);


                                __Content.Element("head").Element("title").Value = id;

                                Add(
                                    new SolutionProjectHTMLFile
                                    {
                                        Name = "Design/" + id + ".htm",
                                        Content = __Content
                                    }
                                );
                            }
                        }
                     );
                };

            sln.Interactive.GenerateTypes +=
                Add =>
                {
                    GetPages().WithEach(
                        k =>
                        {
                            var id = k.Attribute("id").Value;

                            if (id == "UserControl1")
                            {
                                Add(
                                    new StockUserControlType(sln.Name + ".Components", id)
                                );
                            }

                            if (id == "Applet1")
                            {
                                Add(
                                    new StockAppletType(sln.Name + ".Components", id)
                                );
                            }

                            if (id == "Sprite1")
                            {
                                Add(
                                    new StockSpriteType(sln.Name + ".Components", id)
                                );
                            }

                            if (id == "AppletUserControl1")
                            {
                                var UserControl2 = new StockUserControlType(sln.Name + ".Components", "UserControl2");

                                Add(
                                    UserControl2
                                );

                                Add(
                                    new StockUserControlAppletType(sln.Name + ".Components", id, UserControl2)
                                );
                            }
                        }
                     );
                };
            #endregion


            var _Solution = new TreeNode(VistaTreeNodePage.Create);


            var _Project = _Solution.Add();

            var About = new About();

            #region UpdateFile1Text
            Action UpdateFile1Text =
                delegate
                {

                    if (CodeSourceBView.File != null)
                    {
                        File7Tab.Text = CodeSourceBView.File.Name.SkipUntilLastIfAny("/");
                    }
                    else
                    {
                        File7Tab.Text = sln.Name;
                    }


                };
            #endregion



            #region Update
            Action Update =
                delegate
                {
                    sln.Name = About.ProjectName.value;

                    UpdateFile1Text();

                    _Project.Clear();
                    UpdateTree(sln, CodeSourceBView, _Solution, _Project);
                };
            #endregion


            var PreviousVersion = default(string);

            #region HTMLDesigner.HTMLDesignerContent
            HTMLDesigner.HTMLDesignerContent.WhenContentReady(
                body =>
                {
                    if (PreviousVersion == null)
                    {
                        var x = new XElement(body.AsXElement());
                        var y = x.ToString();
                        PreviousVersion = y;
                    }

                    Action<bool> HTMLDesignerContentCheck =
                        DoUpdate =>
                        {
                            var x = new XElement(body.AsXElement());
                            var y = x.ToString();

                            if (PreviousVersion != y)
                            {
                                PreviousVersion = y;


                                sln.ApplicationPage = x;

                                // allow any blur causing action to complete first
                                // we get reselected for some odd reason, why?
                                new Timer(
                                    delegate
                                    {
                                        if (DoUpdate)
                                        {
                                            OutputWriteLine("Designer has caused an update.");
                                            Update();
                                        }
                                        else
                                        {
                                            OutputWriteLine("Designer will cause an update.");
                                        }

                                    }
                                ).StartTimeout(700);
                            }
                        };

                    var HTMLDesignerContentDirty = new Timer(
                        delegate
                        {
                            HTMLDesignerContentCheck(false);
                        }
                    );

                    HTMLDesigner.HTMLDesignerContent.contentWindow.onfocus +=
                        delegate
                        {
                            OutputWriteLine("Designer activated.");
                            //"focus".ToDocumentTitle();

                            //HTMLDesignerContentDirty.StartInterval(700);
                        };

                    HTMLDesigner.HTMLDesignerContent.contentWindow.onblur +=
                        delegate
                        {
                            //HTMLDesignerContentDirty.Stop();

                            OutputWriteLine("Designer deactivated.");
                            //"blur".ToDocumentTitle();
                            HTMLDesignerContentCheck(true);

                        };
                }
            );
            #endregion

            #region CodeSourceBView.FileChanged
            CodeSourceBView.FileChanged +=
                delegate
                {
                    UpdateFile1Text();


                    OutputWriteLine("Select: " + CodeSourceBView.File.Name);

                    CodeSourceFormsDesignerTab.TabElement.Hide();

                    // hack :)
                    if (CodeSourceBView.File.Name.EndsWith("/App.htm"))
                    {
                        // currently we only have one element :)

                        HTMLDesigner.HTMLDesignerTab.RaiseActivated();

                        HTMLDesigner.HTMLDesignerTab.TabElement.style.display = IStyle.DisplayEnum.inline_block;
                        HTMLDesigner.HTMLSourceTab.TabElement.style.display = IStyle.DisplayEnum.none;
                        CodeSourceATab.TabElement.style.display = IStyle.DisplayEnum.inline_block;
                        CodeSourceBTab.TabElement.style.display = IStyle.DisplayEnum.inline_block;

                        HTMLDesigner.HTMLDesignerContent.WhenContentReady(
                            body =>
                            {
                                HTMLDesigner.HTMLDesignerContent.contentWindow.focus();
                            }
                        );

                        // show the design/source buttons
                    }
                    else if (CodeSourceBView.File.Name.EndsWith(".sln"))
                    {
                        AboutTab.Activate();
                    }
                    else if (CodeSourceBView.File.Name.EndsWith(sln.Language.ProjectFileExtension))
                    {
                        AboutTab.Activate();
                    }
                    else if (CodeSourceBView.File.Name.EndsWith(sln.Language.CodeFileExtension))
                    {
                        // show type outline / member
                        CodeSourceBTab.RaiseActivated();

                        HTMLDesigner.HTMLDesignerTab.TabElement.style.display = IStyle.DisplayEnum.none;
                        HTMLDesigner.HTMLSourceTab.TabElement.style.display = IStyle.DisplayEnum.none;
                        CodeSourceATab.TabElement.style.display = IStyle.DisplayEnum.none;
                        CodeSourceBTab.TabElement.style.display = IStyle.DisplayEnum.inline_block;

                        CodeSourceBView.File.ContextType.BaseType.With(
                            BaseType =>
                            {
                                if (BaseType is KnownStockTypes.System.Windows.Forms.UserControl)
                                {
                                    CodeSourceFormsDesignerTab.TabElement.Show();
                                    CodeSourceFormsDesignerTab.RaiseActivated();

                                }

                                if (BaseType is KnownStockTypes.System.ComponentModel.Component)
                                {
                                    CodeSourceFormsDesignerTab.TabElement.Show();
                                    CodeSourceFormsDesignerTab.RaiseActivated();

                                }
                            }
                        );

                    }


                };
            #endregion


            //AddSaveButton(WorkspaceHeader, i => Save = i);

            About.ProjectName.value = sln.Name;
            About.ProjectName.onchange +=
                delegate
                {
                    OutputWriteLine("Project name has changed.");
                    Update();
                };



            Viewer.Content.Clear();
            Viewer.Content.Add(About.Container);
            Viewer.Content.Add(CurrentDesigner.Container);
            Viewer.Content.Add(OutputFileViewer.Container);

            AboutTab.WhenActivated(About.Container);
            File7Tab.WhenActivated(CurrentDesigner.Container);
            OutputTab.WhenActivated(OutputFileViewer.Container);



            Viewer.First().Activate();

            //var SolutionExplorer = new SolutionDockWindowPage();

            //SolutionExplorer.HeaderText.innerText = "Solution Explorer";
            //SolutionExplorer.Content.style.backgroundColor = Color.White;
            //SolutionExplorer.Content.style.padding = "2px";
            //SolutionExplorer.Content.ReplaceContentWith(_Solution.Container);


            var fSolutionExplorer = new System.Windows.Forms.Form
            {
                BackColor = global::System.Drawing.Color.White,
                Text = "Solution Explorer",
                ControlBox = false,
                ShowIcon = false

            };

            EditorTreeSplit.Split.RightScrollable.style.zIndex = 0;
            EditorTreeSplit.Split.RightScrollable.style.position = IStyle.PositionEnum.relative;

            fSolutionExplorer.AttachFormTo(EditorTreeSplit.Split.RightScrollable);

            _Solution.Container.AttachTo(fSolutionExplorer.GetHTMLTargetContainer());

            _Solution.Container.style.overflow = IStyle.OverflowEnum.auto;
            _Solution.Container.style.height = "100%";
            _Solution.Container.style.backgroundColor = Color.White;

            //EditorTreeSplit.Split.RightContainer = (IHTMLDiv)(object)SolutionExplorer.Container;

            EditorTreeSplit.Container.AttachTo(Workspace);

            //CurrentDesigner.First().RaiseActivated();

            Update();

            #region CreateLanguageButton
            Action<IHTMLImage, string, SolutionProjectLanguage, string> CreateLanguageButton =
                (Icon, Text, Language, Name) =>
                {
                    var span = new IHTMLSpan(Text);

                    span.style.marginLeft = "0.7em";
                    span.style.marginRight = "0.7em";

                    new IHTMLButton { Icon /*, span */ }.AttachTo(WorkspaceHeaderTab1).With(
                        btn =>
                        {
                            btn.onclick +=
                                delegate
                                {
                                    sln.Language = Language;
                                    sln.Name = Language.LanguageSpelledName.Replace(" ", "") + "Project1";
                                    Update();
                                };

                            //btn.style.display = IStyle.DisplayEnum.block;
                        }
                    );
                };
            #endregion


            CreateLanguageButton(new VisualCSharpProject(), "C#", KnownLanguages.VisualCSharp, "VisualCSharpProject1");
            CreateLanguageButton(new VisualFSharpProject(), "F#", KnownLanguages.VisualFSharp, "VisualFSharpProject1");
            CreateLanguageButton(new VisualBasicProject(), "Visual Basic", KnownLanguages.VisualBasic, "VisualBasicProject1");

            var ListOfCreateProjectTypeButton = new List<IHTMLButton>();

            #region CreateProjectTypeButton
            Action<string, Action> CreateProjectTypeButton =
              (Text, Handler) =>
              {
                  var span = new IHTMLSpan(Text);

                  span.style.marginLeft = "0.7em";
                  span.style.marginRight = "0.7em";

                  new IHTMLButton { span }.AttachTo(WorkspaceHeaderTab2).With(
                      btn =>
                      {
                          ListOfCreateProjectTypeButton.Add(btn);

                          btn.onclick +=
                              delegate
                              {
                                  ListOfCreateProjectTypeButton.WithEach(n => n.disabled = true);

                                  Handler();
                              };

                          //btn.style.display = IStyle.DisplayEnum.block;
                      }
                  );
              };
            #endregion

            #region ToSpecificProjectType
            Action<string, Action> ToSpecificProjectType =
                (Text, Handler) =>
                {
                    CreateProjectTypeButton(Text,
                        delegate
                        {
                            Handler();


                            HTMLDesigner.HTMLDesignerContent.WhenDocumentReady(
                                document =>
                                {
                                    document.WithContent(sln.ApplicationPage);
                                    // we should now also lock the designer!
                                    document.DesignMode = false;
                                }
                            );

                            Update();
                        }
                    );
                };
            #endregion

            #region Avalon, Forms
            ToSpecificProjectType("Avalon App",
                delegate
                {
                    sln.WithCanvas();
                }
            );


            ToSpecificProjectType("Avalon Flash App",
               delegate
               {
                   sln.WithCanvasAdobeFlash();

               }
            );

            ToSpecificProjectType("Forms App",
                delegate
                {
                    sln.WithForms();
                }
            );


            ToSpecificProjectType("Forms Applet App",
               delegate
               {
                   sln.WithFormsApplet();

               }
            );
            #endregion

            ToSpecificProjectType("Flash App",
              delegate
              {
                  sln.WithAdobeFlash();
              }
            );

            ToSpecificProjectType("Flash Camera App",
                delegate
                {
                    sln.WithAdobeFlashCamera();
                }
              );

            ToSpecificProjectType("Flash Flare3D App",
               delegate
               {
                   sln.WithAdobeFlashWithFlare3D();
               }
             );

            ToSpecificProjectType("Applet App",
              delegate
              {
                  sln.WithJavaApplet();
              }
            );
        }
Beispiel #46
0
        private void OnAbout(object sender, RoutedEventArgs e)
        {
            About win = new About();

            win.ShowDialog();
        }