Changeset 16044
- Timestamp:
- 08/03/18 14:38:17 (6 years ago)
- Location:
- branches/2839_HiveProjectManagement
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/RefreshableRoleListView.Designer.cs
r14185 r16044 66 66 // 67 67 this.storeButton.Enabled = false; 68 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;68 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 69 69 this.storeButton.Location = new System.Drawing.Point(33, 3); 70 70 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/RefreshableRoleSelectionListView.Designer.cs
r14185 r16044 53 53 // 54 54 this.storeButton.Enabled = false; 55 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;55 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 56 56 this.storeButton.Location = new System.Drawing.Point(33, 3); 57 57 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/RefreshableUserGroupListView.Designer.cs
r14185 r16044 66 66 // 67 67 this.storeButton.Enabled = false; 68 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;68 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 69 69 this.storeButton.Location = new System.Drawing.Point(33, 3); 70 70 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/RefreshableUserListView.Designer.cs
r14185 r16044 66 66 this.storeButton.Enabled = false; 67 67 this.storeButton.Location = new System.Drawing.Point(33, 3); 68 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;68 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 69 69 this.storeButton.Name = "storeButton"; 70 70 this.storeButton.Size = new System.Drawing.Size(24, 24); -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Access.Administration/3.3/Views/UserGroupView.Designer.cs
r15953 r16044 108 108 // 109 109 this.storeButton.Enabled = false; 110 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;110 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 111 111 this.storeButton.Location = new System.Drawing.Point(31, 58); 112 112 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Access.Views/3.3/UserViews/RefreshableLightweightAccessClientInformationView.Designer.cs
r15953 r16044 72 72 // 73 73 this.storeButton.Enabled = false; 74 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;74 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 75 75 this.storeButton.Location = new System.Drawing.Point(34, 3); 76 76 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.Administrator/3.3/Views/ScheduleView.Designer.cs
r15956 r16044 198 198 // 199 199 this.btnSaveCal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); 200 this.btnSaveCal.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;200 this.btnSaveCal.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 201 201 this.btnSaveCal.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 202 202 this.btnSaveCal.Location = new System.Drawing.Point(640, 41); -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.JobManager/3.3/Views/RefreshableHiveJobView.cs
r15992 r16044 139 139 } 140 140 141 if (Content.Job != null && Content.Job.ProjectId == Guid.Empty) { 142 if (HiveClient.Instance != null && HiveClient.Instance.Projects != null && HiveClient.Instance.Projects.Count == 1) { 143 var p = HiveClient.Instance.Projects.FirstOrDefault(); 144 if (p != null && p.Id != Guid.Empty) { 145 hiveResourceSelectorDialog = new HiveResourceSelectorDialog(Content.Job.Id, Content.Job.ProjectId); 146 Content.Job.ProjectId = p.Id; 147 Content.Job.ResourceIds = HiveClient.Instance.GetAvailableResourcesForProject(p.Id).Select(x => x.Id).ToList(); 148 hiveResourceSelectorDialog.SelectedProjectId = Content.Job.ProjectId; 149 hiveResourceSelectorDialog.SelectedResourceIds = Content.Job.ResourceIds; 150 } 151 } 152 } 153 154 141 155 nameTextBox.Text = Content.Job.Name; 142 156 descriptionTextBox.Text = Content.Job.Description; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive.Views/3.3/HiveItemView.Designer.cs
r14185 r16044 52 52 // storeButton 53 53 // 54 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;54 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 55 55 this.storeButton.Location = new System.Drawing.Point(0, 0); 56 56 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.Hive/3.3/HiveClient.cs
r15995 r16044 319 319 else return Enumerable.Empty<Resource>(); 320 320 } 321 322 public IEnumerable<Resource> GetAvailableResourcesForProject(Guid id) { 323 var assignedProjectResources = HiveServiceLocator.Instance.CallHiveService(s => s.GetAssignedResourcesForProject(id)); 324 return resources.Where(x => assignedProjectResources.Select(y => y.ResourceId).Contains(x.Id)); 325 } 321 326 #endregion 322 327 -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/AlgorithmView.Designer.cs
r15953 r16044 147 147 // storeUsersButton 148 148 // 149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 150 150 this.storeUsersButton.Location = new System.Drawing.Point(37, 9); 151 151 this.storeUsersButton.Name = "storeUsersButton"; … … 250 250 // storeDataButton 251 251 // 252 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;252 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 253 253 this.storeDataButton.Location = new System.Drawing.Point(36, 6); 254 254 this.storeDataButton.Name = "storeDataButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/OKBItemView.Designer.cs
r14185 r16044 52 52 // storeButton 53 53 // 54 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;54 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 55 55 this.storeButton.Location = new System.Drawing.Point(0, 0); 56 56 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views/3.3/Administration/Views/ProblemView.Designer.cs
r15953 r16044 147 147 // storeUsersButton 148 148 // 149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;149 this.storeUsersButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 150 150 this.storeUsersButton.Location = new System.Drawing.Point(38, 9); 151 151 this.storeUsersButton.Name = "storeUsersButton"; … … 249 249 // storeDataButton 250 250 // 251 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;251 this.storeDataButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 252 252 this.storeDataButton.Location = new System.Drawing.Point(36, 6); 253 253 this.storeDataButton.Name = "storeDataButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBProblemView.cs
r14185 r16044 72 72 downloadCharacteristicsButton.Image = VSImageLibrary.Refresh; 73 73 uploadCharacteristicsButton.Text = string.Empty; 74 uploadCharacteristicsButton.Image = VSImageLibrary. PublishToWeb;74 uploadCharacteristicsButton.Image = VSImageLibrary.Save; 75 75 refreshSolutionsButton.Text = string.Empty; 76 76 refreshSolutionsButton.Image = VSImageLibrary.Refresh; 77 77 uploadSolutionsButton.Text = string.Empty; 78 uploadSolutionsButton.Image = VSImageLibrary. PublishToWeb;78 uploadSolutionsButton.Image = VSImageLibrary.Save; 79 79 } 80 80 -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/OKBRunView.Designer.cs
r14185 r16044 51 51 // storeButton 52 52 // 53 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary. PublishToWeb;53 this.storeButton.Image = HeuristicLab.Common.Resources.VSImageLibrary.Save; 54 54 this.storeButton.Location = new System.Drawing.Point(0, 0); 55 55 this.storeButton.Name = "storeButton"; -
branches/2839_HiveProjectManagement/HeuristicLab.Clients.OKB.Views/3.3/RunCreation/Views/SingleObjectiveOKBSolutionView.cs
r13693 r16044 41 41 refreshButton.Image = VSImageLibrary.Refresh; 42 42 uploadButton.Text = string.Empty; 43 uploadButton.Image = VSImageLibrary. PublishToWeb;43 uploadButton.Image = VSImageLibrary.Save; 44 44 } 45 45
Note: See TracChangeset
for help on using the changeset viewer.