internal MainWindowViewModel(
            ModelMetadata modelMetadata,
            ILatestVersionService latestVersionService,
            IMainWindowService mainWindowService,
            ModelViewModel modelViewModel,
            OpenModelViewModel openModelViewModel,
            IOpenModelService openModelService,
            IRecentModelsService recentModelsService,
            IModelMetadataService modelMetadataService,
            IStartInstanceService startInstanceService,
            IModelViewService modelViewService,
            IProgressService progress)
        {
            this.modelMetadata = modelMetadata;

            this.mainWindowService    = mainWindowService;
            this.openModelService     = openModelService;
            this.recentModelsService  = recentModelsService;
            this.modelMetadataService = modelMetadataService;
            this.startInstanceService = startInstanceService;
            this.modelViewService     = modelViewService;
            this.progress             = progress;

            ModelViewModel     = modelViewModel;
            OpenModelViewModel = openModelViewModel;

            modelMetadata.OnChange += (s, e) => Notify(nameof(MainTitle));
            latestVersionService.OnNewVersionAvailable += (s, e) => IsNewVersionVisible = true;
            latestVersionService.StartCheckForLatestVersion();
            SearchItems = new ObservableCollection <SearchEntry>();
            ClearSelectionItems();
        }
Exemplo n.º 2
0
        internal MainWindowViewModel(
            WorkingFolder workingFolder,
            WindowOwner owner,
            IRepositoryCommands repositoryCommands,
            IRemoteService remoteService,
            ICommitsService commitsService,
            ILatestVersionService latestVersionService,
            IStartInstanceService startInstanceService,
            IRecentReposService recentReposService,
            IGitInfoService gitInfoService,
            IMessage message,
            IMainWindowService mainWindowService,
            MainWindowIpcService mainWindowIpcService,
            RepositoryViewModel repositoryViewModel)
        {
            this.workingFolder        = workingFolder;
            this.owner                = owner;
            this.repositoryCommands   = repositoryCommands;
            this.remoteService        = remoteService;
            this.commitsService       = commitsService;
            this.startInstanceService = startInstanceService;
            this.recentReposService   = recentReposService;
            this.gitInfoService       = gitInfoService;
            this.message              = message;
            this.mainWindowService    = mainWindowService;
            this.mainWindowIpcService = mainWindowIpcService;

            RepositoryViewModel = repositoryViewModel;

            workingFolder.OnChange += (s, e) => Notify(nameof(WorkingFolder));
            latestVersionService.OnNewVersionAvailable += (s, e) => IsNewVersionVisible = true;
            latestVersionService.StartCheckForLatestVersion();
            IsRepoView = true;
        }
Exemplo n.º 3
0
 public LatestVersionService(
     ICmd cmd,
     IStartInstanceService startInstanceService,
     WorkingFolder workingFolder)
 {
     this.cmd = cmd;
     this.startInstanceService = startInstanceService;
     this.workingFolder        = workingFolder;
 }
Exemplo n.º 4
0
 public LatestVersionService(
     IStartInstanceService startInstanceService,
     ISettingsService settingsService,
     ModelMetadata modelMetadata)
 {
     this.startInstanceService = startInstanceService;
     this.settingsService      = settingsService;
     this.modelMetadata        = modelMetadata;
 }
Exemplo n.º 5
0
 public OpenModelService(
     Lazy <ILoadModelService> loadModelService,
     IModelMetadataService modelMetadataService,
     IOpenFileDialogService openFileDialogService,
     IExistingInstanceService existingInstanceService,
     IStartInstanceService startInstanceService,
     IApiManagerService apiManagerService)
 {
     this.loadModelService        = loadModelService;
     this.modelMetadataService    = modelMetadataService;
     this.openFileDialogService   = openFileDialogService;
     this.existingInstanceService = existingInstanceService;
     this.startInstanceService    = startInstanceService;
     this.apiManagerService       = apiManagerService;
 }
Exemplo n.º 6
0
 public OpenRepoService(
     IRecentReposService recentReposService,
     IGitInfoService gitInfoService,
     IGitRepoService gitRepoService,
     IStartInstanceService startInstanceService,
     IMessage message,
     IProgressService progressService,
     WindowOwner owner)
 {
     this.owner = owner;
     this.recentReposService   = recentReposService;
     this.gitInfoService       = gitInfoService;
     this.gitRepoService       = gitRepoService;
     this.startInstanceService = startInstanceService;
     this.message         = message;
     this.progressService = progressService;
 }