Exemplo n.º 1
0
 public CopyMoveProgress(ActionEngine doc, ActionQueue[] todo)
 {
     this.mDoc  = doc;
     this.mToDo = todo;
     this.InitializeComponent();
     this.copyTimer.Start();
     this.diskSpaceTimer.Start();
 }
Exemplo n.º 2
0
 public CopyMoveProgress(ActionEngine doc, ActionQueue[] todo)
 {
     mDoc  = doc;
     mToDo = todo;
     InitializeComponent();
     copyTimer.Start();
     diskSpaceTimer.Start();
 }
Exemplo n.º 3
0
        public TVDoc([CanBeNull] FileInfo settingsFile, CommandLineArgs args)
        {
            Args = args;

            Library         = new ShowLibrary();
            CurrentStats    = new TVRenameStats();
            actionManager   = new ActionEngine(CurrentStats);
            cacheManager    = new CacheUpdater();
            localFinders    = new FindMissingEpisodesLocally(this);
            downloadFinders = new FindMissingEpisodesDownloading(this);
            searchFinders   = new FindMissingEpisodesSearch(this);

            mDirty        = false;
            TheActionList = new ItemList();

            scanProgDlg = null;

            downloadIdentifiers = new DownloadIdentifiersController();

            LoadOk = (settingsFile is null || LoadXMLSettings(settingsFile)) && TheTVDB.Instance.LoadOk;
        }